diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 3fb463b455..104b39e331 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -32,7 +32,7 @@ jobs:
needs: start_gate
uses: ./.github/workflows/perform_regular_version_tests.yml
with:
- maps: '{"paths":["USE_MAP_SOUTHERN_CROSS","USE_MAP_SOLUNA_NEXUS"]}'
+ maps: '{"paths":["USE_MAP_SOUTHERN_CROSS","USE_MAP_SOLUNA_NEXUS","USE_MAP_CETUS"]}'
max_required_byond_client: 516
run_extra_map_tests:
@@ -42,19 +42,14 @@ jobs:
strategy:
fail-fast: false
matrix:
- map: ${{ fromJSON('{"paths":["USE_MAP_SOUTHERN_CROSS","USE_MAP_SOLUNA_NEXUS"]}').paths }}
+ map: ${{ fromJSON('{"paths":["USE_MAP_SOUTHERN_CROSS","USE_MAP_SOLUNA_NEXUS","USE_MAP_CETUS"]}').paths }}
with:
map: ${{ matrix.map }}
completion_gate: # Serves as a non-moving target for branch rulesets
if: always() && !cancelled()
name: Completion Gate
- needs:
- [
- run_all_tests,
- run_extra_map_tests,
- run_linters,
- ]
+ needs: [run_all_tests, run_extra_map_tests, run_linters]
runs-on: ubuntu-24.04
steps:
- name: Decide whether the needed jobs succeeded or failed
diff --git a/code/modules/events/infestation.dm b/code/modules/events/infestation.dm
index adc8179e5d..ca1b76f2c4 100644
--- a/code/modules/events/infestation.dm
+++ b/code/modules/events/infestation.dm
@@ -28,39 +28,7 @@
//CHOMPEdit changed for Southern Cross areas
location = rand(0,9)
var/list/turf/simulated/floor/turfs = list()
- var/spawn_area_type
- switch(location)
- if(LOC_KITCHEN)
- spawn_area_type = /area/crew_quarters/kitchen
- locstring = "the kitchen"
- if(LOC_ATMOS)
- spawn_area_type = /area/engineering/atmos
- locstring = "atmospherics"
- if(LOC_CHAPEL)
- spawn_area_type = /area/chapel/main
- locstring = "the chapel"
- if(LOC_LIBRARY)
- spawn_area_type = /area/library
- locstring = "the library"
- if(LOC_HYDRO)
- spawn_area_type = /area/hydroponics
- locstring = "hydroponics"
- if(LOC_TECH)
- spawn_area_type = /area/storage/tech
- locstring = "technical storage"
- if(LOC_HANGAR1)
- spawn_area_type = /area/hangar/one
- locstring = "the hangar deck"
- if(LOC_HANGAR2)
- spawn_area_type = /area/hangar/two
- locstring = "the hangar deck"
- if(LOC_HANGAR3)
- spawn_area_type = /area/hangar/three
- locstring = "the hangar deck"
- if(LOC_VAULT)
- spawn_area_type = /area/security/nuke_storage
- locstring = "the vault"
-
+ var/spawn_area_type = get_spawn_area()
for(var/areapath in typesof(spawn_area_type))
var/area/A = locate(areapath)
for(var/turf/simulated/floor/F in A.contents)
@@ -121,6 +89,41 @@
else
var/spawn_type = pick(spawn_types)
new spawn_type(T)
+
+/datum/event/infestation/proc/get_spawn_area() //adding this so maps can override areas if needed
+ var/spawn_area_type
+ switch(location)
+ if(LOC_KITCHEN)
+ spawn_area_type = /area/crew_quarters/kitchen
+ locstring = "the kitchen"
+ if(LOC_ATMOS)
+ spawn_area_type = /area/engineering/atmos
+ locstring = "atmospherics"
+ if(LOC_CHAPEL)
+ spawn_area_type = /area/chapel/main
+ locstring = "the chapel"
+ if(LOC_LIBRARY)
+ spawn_area_type = /area/library
+ locstring = "the library"
+ if(LOC_HYDRO)
+ spawn_area_type = /area/hydroponics
+ locstring = "hydroponics"
+ if(LOC_TECH)
+ spawn_area_type = /area/storage/tech
+ locstring = "technical storage"
+ if(LOC_HANGAR1)
+ spawn_area_type = /area/hangar/two //hangar one is no longer in use on the sc
+ locstring = "the hangar deck"
+ if(LOC_HANGAR2)
+ spawn_area_type = /area/hangar/two
+ locstring = "the hangar deck"
+ if(LOC_HANGAR3)
+ spawn_area_type = /area/hangar/three
+ locstring = "the hangar deck"
+ if(LOC_VAULT)
+ spawn_area_type = /area/security/nuke_storage
+ locstring = "the vault"
+ return spawn_area_type
// ChompEDIT End
/* CHOMPedit - Upstream Code, not implmeneted here
/datum/event/infestation/tick()
diff --git a/config/custom_sprites.txt b/config/custom_sprites.txt
index dc5302cb7f..db3930a4ae 100644
--- a/config/custom_sprites.txt
+++ b/config/custom_sprites.txt
@@ -1,3 +1 @@
-ckey|state
-lunarfleet|Clea-Nor
-jademanique|B.A.U-Kingside
+ckey-state
\ No newline at end of file
diff --git a/modular_chomp/code/game/objects/effects/step_triggers.dm b/modular_chomp/code/game/objects/effects/step_triggers.dm
index 15fb2e261a..7f99eb6ad6 100644
--- a/modular_chomp/code/game/objects/effects/step_triggers.dm
+++ b/modular_chomp/code/game/objects/effects/step_triggers.dm
@@ -36,3 +36,17 @@
/obj/effect/step_trigger/teleporter/poi/Initialize(mapload) //This is for placing teleporters in gateways/POIS, where Z levels can be different and I cant be assed to make fake teleporter stairs
. = ..()
teleport_z = src.z
+
+/obj/effect/step_trigger/teleporter/randomspawn //teleporter/random was taken. This version only teleports when stepped on *sometimes*, and you can give it a chance not to spawn
+ var/destroyprob = 99
+ var/teleprob = 1
+
+/obj/effect/step_trigger/teleporter/randomspawn/Initialize(mapload)
+ . = ..()
+ if(destroyprob && prob(destroyprob))
+ qdel(src)
+
+/obj/effect/step_trigger/teleporter/randomspawn/Trigger()
+ if(teleprob && !prob(teleprob))
+ return FALSE
+ return ..()
diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/station/traits/neutral.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/station/traits/neutral.dm
index 4ed46ac712..b03d3b1e2e 100644
--- a/modular_chomp/code/modules/mob/living/carbon/human/species/station/traits/neutral.dm
+++ b/modular_chomp/code/modules/mob/living/carbon/human/species/station/traits/neutral.dm
@@ -34,6 +34,10 @@
/datum/trait/neutral/xenochimera_YR3/handle_environment_special(mob/living/carbon/human/H)
var/list/nanitereagents = list(REAGENT_HEALINGNANITES, REAGENT_SHREDDINGNANITES, REAGENT_IRRADIATEDNANITES, REAGENT_NEUROPHAGENANITES, REAGENT_NIFREPAIRNANITES)
+ if(istype(H.loc, /turf/simulated/floor/water/digestive_enzymes/nanites))
+ var/turf/simulated/floor/water/digestive_enzymes/nanites/N = H.loc
+ if(N.active)
+ N.toggle_all(FALSE)
for(var/reagent in nanitereagents)
if(H.reagents.has_reagent(reagent))
H.adjust_nutrition(H.reagents.get_reagent_amount(reagent))
diff --git a/modular_chomp/icons/obj/overmap.dmi b/modular_chomp/icons/obj/overmap.dmi
index f95557917d..7bc3bc2887 100644
Binary files a/modular_chomp/icons/obj/overmap.dmi and b/modular_chomp/icons/obj/overmap.dmi differ
diff --git a/modular_chomp/icons/turf/flooring/carpet.dmi b/modular_chomp/icons/turf/flooring/carpet.dmi
new file mode 100644
index 0000000000..92efdf340b
Binary files /dev/null and b/modular_chomp/icons/turf/flooring/carpet.dmi differ
diff --git a/modular_chomp/maps/cetus/cetus-1.dmm b/modular_chomp/maps/cetus/cetus-1.dmm
new file mode 100644
index 0000000000..3259d8a61c
--- /dev/null
+++ b/modular_chomp/maps/cetus/cetus-1.dmm
@@ -0,0 +1,113229 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aag" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"aaj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"aaC" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/tiled/freezer,
+/area/maintenance/ab_Kitchen)
+"aaG" = (
+/obj/machinery/optable,
+/obj/item/nif/glitch,
+/obj/effect/decal/cleanable/blood/old,
+/obj/machinery/light/small/fluorescent,
+/obj/random/organ,
+/obj/random/organ,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"abi" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"abr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"abG" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"abH" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"abP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/rack/shelf,
+/obj/item/storage/toolbox/electrical{
+ pixel_y = -4
+ },
+/obj/item/storage/toolbox/syndicate{
+ pixel_y = 5
+ },
+/obj/item/storage/bag/circuits/basic{
+ pixel_y = 16
+ },
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"acf" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/boxing/gym,
+/area/security/cetus/meteor/brig)
+"acg" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"acC" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ dir = 8;
+ pixel_x = 29;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"acE" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel/random{
+ pixel_y = 13
+ },
+/obj/item/towel/random{
+ pixel_y = 17
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"acT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"adq" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"adz" = (
+/obj/structure/table/standard,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"adF" = (
+/obj/structure/cable/blue{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/shieldgen)
+"adS" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"adU" = (
+/obj/structure/ladder/up,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"aeF" = (
+/turf/simulated/wall,
+/area/engineering/cetus/portsubstation)
+"aeY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"afh" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/hallway1)
+"afp" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ color = "White";
+ dir = 4
+ },
+/turf/simulated/floor/water/deep/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"afH" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxins)
+"afQ" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/kit/paint/durand/phazon{
+ pixel_y = -4
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 5
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 16
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"afX" = (
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/foremed)
+"agI" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"agQ" = (
+/obj/machinery/mass_driver{
+ dir = 8;
+ id = "toxinsdriver"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/toxtest)
+"agX" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"ahn" = (
+/obj/machinery/seed_storage/garden{
+ dir = 4;
+ pixel_x = -5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/atrium)
+"ahD" = (
+/obj/structure/table/reinforced,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"ahM" = (
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"ahU" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"aij" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Showers"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/cetus/meteor/showers)
+"aiM" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/meteor/pool)
+"aiP" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"aiQ" = (
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"ajK" = (
+/obj/structure/bed,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/item/bedsheet/rainbow,
+/obj/random/plushie,
+/turf/simulated/floor/carpet/gaycarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"akc" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"akk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/rust,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Botany"
+ },
+/obj/item/tape/engineering,
+/obj/structure/cable/green{
+ icon_state = "5-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/ab_Hydroponics)
+"akw" = (
+/obj/machinery/media/jukebox,
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"akN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"akW" = (
+/obj/structure/closet{
+ name = "Prisoner's Locker"
+ },
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/item/clothing/head/soft/orange,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"alf" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/water/deep/indoors/station,
+/area/maintenance/cetus/meteor/central)
+"alg" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black,
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"alF" = (
+/obj/machinery/oxygen_pump/mobile/stabilizer,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"alN" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"amw" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"amz" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/gravgen)
+"amF" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"amW" = (
+/obj/machinery/light,
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"ani" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"anu" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/clothing/gloves/arm_guard/laserproof,
+/obj/item/clothing/shoes/leg_guard/laserproof,
+/obj/item/clothing/suit/armor/laserproof,
+/obj/item/clothing/head/helmet/laserproof,
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Laser Armor"
+ },
+/obj/item/clothing/shoes/leg_guard/laserproof,
+/obj/item/clothing/gloves/arm_guard/laserproof,
+/obj/item/clothing/head/helmet/laserproof,
+/obj/item/clothing/suit/armor/laserproof,
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"anA" = (
+/obj/machinery/access_button{
+ name = "interior access button";
+ pixel_y = 26
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"aom" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/shield_gen/external,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/shieldgen)
+"aou" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/ab_StripBar)
+"aow" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"aoL" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"aoQ" = (
+/obj/structure/cable{
+ icon_state = "5-6"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/random/trash,
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"apd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"apz" = (
+/obj/effect/floor_decal/corner{
+ dir = 5
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"aql" = (
+/obj/structure/table/standard,
+/obj/item/lipstick{
+ pixel_x = -8
+ },
+/obj/item/lipstick/black{
+ pixel_x = -3
+ },
+/obj/item/lipstick/jade{
+ pixel_x = 2
+ },
+/obj/item/lipstick/purple{
+ pixel_x = 6
+ },
+/obj/effect/floor_decal/corner/lightorange/diagonal,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/obj/machinery/button/windowtint{
+ id = "barber";
+ pixel_x = -11;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/stylist)
+"aqy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"aqB" = (
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"aqK" = (
+/obj/structure/table/steel,
+/obj/random/drinkbottle,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"asc" = (
+/obj/structure/salvageable/console{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"asH" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"asQ" = (
+/turf/simulated/wall,
+/area/maintenance/ab_Kitchen)
+"atf" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"auo" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/hallway)
+"auO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"auQ" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"avc" = (
+/obj/machinery/atmospherics/binary/circulator{
+ anchored = 1;
+ dir = 8
+ },
+/turf/simulated/floor/redgrid,
+/area/engineering/cetus/meteor/engineroom)
+"avg" = (
+/obj/effect/floor_decal/corner/pink/diagonal,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"avt" = (
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"awx" = (
+/obj/structure/sink/kitchen{
+ dir = 8;
+ pixel_x = -13
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"awI" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway1)
+"awK" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jrfore)
+"awX" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"axe" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/clothing/gloves/arm_guard/bulletproof,
+/obj/item/clothing/shoes/leg_guard/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof/alt,
+/obj/item/clothing/head/helmet/bulletproof,
+/obj/machinery/door/window/brigdoor/eastleft{
+ name = "Ballistic Armor"
+ },
+/obj/item/clothing/head/helmet/bulletproof,
+/obj/item/clothing/suit/armor/bulletproof/alt,
+/obj/item/clothing/gloves/arm_guard/bulletproof,
+/obj/item/clothing/shoes/leg_guard/bulletproof,
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"axn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "barber"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/stylist)
+"axO" = (
+/obj/structure/sign/warning/fire,
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/toxins)
+"axT" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/item/radio/intercom/department/medbay{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"axU" = (
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/aftstar)
+"ayi" = (
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"azB" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/effect/floor_decal/industrial/hatch,
+/obj/effect/floor_decal/industrial/arrows/blue,
+/obj/effect/floor_decal/industrial/arrows/blue{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ id_tag = "spacebus_south"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/effect/map_helper/airlock/door/simple,
+/obj/machinery/atmospheric_field_generator/perma/underdoors,
+/turf/simulated/shuttle/plating,
+/area/shuttle/spacebus)
+"aAa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_y = -30;
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"aAu" = (
+/obj/machinery/atmospherics/valve/digital{
+ name = "secondary TEG valve";
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"aAA" = (
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"aAJ" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"aBf" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "d1_near_se";
+ name = "Near Cetus - Deck 1 South East"
+ },
+/turf/space,
+/area/space)
+"aBA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"aBT" = (
+/obj/structure/sign/directions/evac{
+ dir = 9
+ },
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/atrium)
+"aCm" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"aDn" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/button/remote/airlock{
+ id = "dentist";
+ name = "Bolt Control";
+ specialfunctions = 4;
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/dentist)
+"aDs" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"aDy" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1443;
+ icon_state = "on";
+ id = "air_in";
+ use_power = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"aDC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"aDG" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hangar/cetus/two)
+"aDJ" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/water/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"aDM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Thaler General"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/ab_GeneralStore)
+"aDQ" = (
+/obj/structure/closet/emcloset,
+/obj/item/pickaxe,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"aEp" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"aEr" = (
+/obj/structure/cable{
+ icon_state = "0-6"
+ },
+/obj/structure/cable{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"aEt" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"aEz" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"aEG" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/obj/structure/sign/securearea{
+ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
+ icon_state = "monkey_painting";
+ name = "Mr. Deempisi portrait";
+ pixel_x = -28;
+ pixel_y = 4
+ },
+/obj/structure/sink/kitchen{
+ dir = 8;
+ pixel_x = -13
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/bar)
+"aFc" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -27
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"aFl" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Bar Maintenance";
+ req_access = list(25)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/meteor/bar)
+"aFB" = (
+/obj/machinery/computer/arcade/clawmachine,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/cozyobservatory)
+"aFD" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/abmedical)
+"aGk" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/mimedouble,
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"aGZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"aHH" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"aHO" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Stairwell"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"aHU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/meteor/jraft)
+"aIa" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/medical/morgue/cetus)
+"aId" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"aIe" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"aIl" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"aIm" = (
+/obj/machinery/iv_drip,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color/corner{
+ color = "#00B8B2";
+ dir = 1
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"aJh" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"aJt" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"aJD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"aJI" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"aKf" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/tree/jungle,
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"aKp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "expsurgery"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/carbonresearch)
+"aKK" = (
+/obj/random/obstruction,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"aKT" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"aKV" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/meteor/jraft)
+"aKW" = (
+/obj/structure/table/bench/padded,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = -25;
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/meteor/hallway2)
+"aLa" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"aLf" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"aLk" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"aLl" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/smes)
+"aLU" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/meteor/pool)
+"aLV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"aMd" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"aMr" = (
+/obj/structure/disposalpipe/segment,
+/obj/random/trash,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"aMw" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/meteor/atrium)
+"aML" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"aNc" = (
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters{
+ color = "white"
+ },
+/obj/effect/mist,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/water/pool,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"aNh" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/maintenance/cetus/meteor/pond)
+"aNt" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/maintenance/cetus/meteor/pond)
+"aNB" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_2)
+"aOJ" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"aOM" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "eng_port_airlock";
+ dir = 4;
+ req_one_access = list(11, 24, 47, 5);
+ pixel_x = -20
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"aPc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/morgue/cetus)
+"aPd" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"aPv" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ name = "Security Access";
+ id = "secmaint";
+ pixel_y = -25;
+ req_access = list(63)
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - D1 Brig 1";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"aPE" = (
+/obj/effect/floor_decal/spline/fancy,
+/turf/simulated/floor/water/deep/pool,
+/area/crew_quarters/cetus/meteor/pool)
+"aPG" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"aPS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"aQd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"aQt" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/abmedical)
+"aQE" = (
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"aRh" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"aRi" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"aRz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"aRH" = (
+/obj/item/inflatable/door/torn,
+/obj/item/material/shard,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"aRI" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/ab_StripBar)
+"aRL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"aRR" = (
+/obj/structure/bed,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/item/bedsheet/red,
+/turf/simulated/floor/carpet/blucarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"aSC" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/standard,
+/obj/item/flashlight/lamp{
+ pixel_y = 6;
+ pixel_x = -9
+ },
+/obj/item/newspaper{
+ pixel_y = 3;
+ pixel_x = 3
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"aSK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_research{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "tox_airlock_exterior";
+ locked = 1;
+ name = "Mixing Room Exterior Airlock";
+ req_access = list(7)
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/cetus/meteor/toxins)
+"aSR" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/cozyobservatory)
+"aST" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"aTo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Starboard Substation";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"aTr" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"aTu" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"aTx" = (
+/obj/machinery/organ_printer/flesh/full,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/obj/item/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"aTz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Pool"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/cetus/meteor/pool)
+"aTB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"aUk" = (
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/engine{
+ external_pressure_bound = 100;
+ external_pressure_bound_default = 0;
+ frequency = 1433;
+ icon_state = "map_vent_in";
+ id_tag = "cooling_out";
+ initialize_directions = 1;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/cetus/meteor/engineroom)
+"aUm" = (
+/obj/structure/salvageable/implant_container,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"aUK" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Detective"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/forensic)
+"aUV" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/cetus/atriumd1)
+"aVJ" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 1;
+ start_pressure = 4559.63
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"aVT" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/hallway1)
+"aVU" = (
+/obj/machinery/door/window/survival_pod,
+/obj/structure/fuel_port{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/spacebus)
+"aWu" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"aWB" = (
+/obj/machinery/mech_recharger,
+/obj/random/mech_toy,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/redgrid,
+/area/engineering/cetus/meteor/atriumdeck1)
+"aXt" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"aXO" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"aYk" = (
+/obj/machinery/field_generator,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"aYn" = (
+/obj/machinery/appliance/cooker/grill,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/pool)
+"aYq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "Dorms2";
+ name = "Room 2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"aYz" = (
+/obj/machinery/mech_recharger,
+/obj/structure/loot_pile/mecha/odysseus/murdysseus,
+/turf/simulated/floor/redgrid,
+/area/maintenance/cetus/mechbay)
+"aYC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"aYV" = (
+/obj/item/stool/padded{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"aZb" = (
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ locked = 0
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 26;
+ dir = 4;
+ pixel_y = -12
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"aZL" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "bar";
+ layer = 3.1;
+ name = "Bar Shutters"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"bas" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"bax" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/dormfirstaid)
+"bbd" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"bbp" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/cable{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/atriumdeck1)
+"bbD" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"bbN" = (
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/grass2,
+/area/maintenance/cetus/meteor/pond)
+"bcc" = (
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/structure/table/rack,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"bcn" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_y = -30;
+ pixel_x = -6
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"bcr" = (
+/turf/simulated/floor/reinforced,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"bct" = (
+/obj/machinery/vending/medical{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"bcO" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"bdk" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"bdC" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"bdR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"beu" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"bez" = (
+/obj/machinery/vending/coffee{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"beQ" = (
+/obj/machinery/libraryscanner,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/lounge)
+"beZ" = (
+/obj/machinery/smart_centrifuge,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"bfj" = (
+/obj/structure/cable{
+ icon_state = "5-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"bfo" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"bfI" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"bgb" = (
+/obj/machinery/lapvend,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"bgL" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"bhg" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/cetus/meteor/toxstorage)
+"bhV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"bit" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"biI" = (
+/obj/machinery/light/broken,
+/obj/structure/table/woodentable,
+/turf/simulated/floor/plating,
+/area/maintenance/ab_StripBar)
+"biQ" = (
+/obj/structure/window/reinforced,
+/turf/simulated/mineral/cetus,
+/area/security/cetus/meteor/forensic)
+"bje" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ icon_state = "5-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"bjw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/random/junk,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"bjB" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/ab_StripBar)
+"bkS" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Treatment Center 3";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"bkW" = (
+/obj/structure/table/bench/standard,
+/obj/item/tabloid,
+/obj/item/tabloid,
+/obj/item/newspaper{
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"blu" = (
+/obj/machinery/door/airlock{
+ name = "Shower"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/security/cetus/meteor/brig)
+"blL" = (
+/obj/structure/table/rack,
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/shield/riot,
+/obj/item/melee/baton/loaded,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/brigdoor/eastright{
+ name = "Riot Armor"
+ },
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/shield/riot,
+/obj/item/melee/baton/loaded,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"blO" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/hallway)
+"blU" = (
+/obj/machinery/atmospherics/unary/heat_exchanger,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"bmN" = (
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"bnX" = (
+/obj/machinery/vending/hydronutrients{
+ dir = 4;
+ pixel_x = -5
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/atrium)
+"bof" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"bon" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"bpm" = (
+/obj/item/clothing/mask/smokable/cigarette/joint,
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/foremed)
+"bpK" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"bpX" = (
+/turf/simulated/floor/plating,
+/area/chapel/chapel_morgue/cetus/crypt)
+"bqa" = (
+/obj/structure/cable{
+ icon_state = "5-6"
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"bqb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/medical,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"bqE" = (
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/binary/pump,
+/obj/effect/floor_decal/industrial/warning/color/full/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"bqU" = (
+/obj/machinery/door/blast/regular{
+ id = "EngineEmitterPortWest";
+ layer = 3.3;
+ name = "Engine Waste Handling Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/engineroom)
+"bqX" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"bre" = (
+/obj/machinery/vending/wardrobe/genedrobe,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"brM" = (
+/obj/item/radio/beacon,
+/turf/simulated/floor/reinforced,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"brV" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/showers)
+"bsx" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/airlock_sensor/airlock_interior{
+ id_tag = "eng_al_int_snsr";
+ master_tag = "engine_room_airlock";
+ req_access = list(10);
+ pixel_y = -25
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"bsy" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"bsG" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/meteor/starsec)
+"bsM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"bsU" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"btz" = (
+/obj/structure/table/rack/shelf,
+/obj/item/bodybag/cryobag/robobag{
+ pixel_y = -5;
+ pixel_x = -5
+ },
+/obj/item/bodybag/cryobag/robobag{
+ pixel_y = -2;
+ pixel_x = -5
+ },
+/obj/item/bodybag/cryobag/robobag{
+ pixel_y = 1;
+ pixel_x = -5
+ },
+/obj/item/bodybag/cryobag{
+ pixel_y = -5;
+ pixel_x = 4
+ },
+/obj/item/bodybag/cryobag{
+ pixel_y = -2;
+ pixel_x = 4
+ },
+/obj/item/bodybag/cryobag{
+ pixel_y = 1;
+ pixel_x = 4
+ },
+/obj/item/healthanalyzer{
+ pixel_y = 9;
+ pixel_x = 4
+ },
+/obj/item/healthanalyzer{
+ pixel_y = 9;
+ pixel_x = -3
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/shuttle/spacebus)
+"bui" = (
+/obj/effect/landmark/start/ghost_roles,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"buk" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/starsubstation)
+"buO" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"bvI" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"bwg" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"bww" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -36;
+ on = 0
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"bwH" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"bwS" = (
+/obj/machinery/light/floortube{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"bxd" = (
+/obj/random/pottedplant,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/retro,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"bxe" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/stylist)
+"bxt" = (
+/turf/simulated/wall/r_wall,
+/area/security/cetus/meteor/forensic)
+"bxv" = (
+/obj/structure/bed/roller,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/dormfirstaid)
+"bxz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard,
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/stand_clear/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/meteor/hallway2)
+"bxX" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"bxY" = (
+/obj/machinery/door/airlock/glass{
+ id_tag = "cryostorage_shuttle_berth";
+ name = "Cryogenic Storage"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway1)
+"byG" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"byH" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters{
+ color = "white"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/pool)
+"bzB" = (
+/obj/machinery/appliance/cooker/grill,
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/fishery)
+"bzG" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"bzM" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"bzO" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"bAe" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"bAz" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"bAC" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"bAW" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/refinery)
+"bBb" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/machinery/vending/medical,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"bBc" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/fire{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/fire,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"bBA" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"bBI" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"bCl" = (
+/obj/machinery/vending/exploration_pilot,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"bCp" = (
+/turf/simulated/wall,
+/area/engineering/cetus/foresubstation)
+"bCK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Engine Access";
+ req_one_access = list(11)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/airlock)
+"bCZ" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 34
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"bDJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"bDW" = (
+/obj/structure/table/standard,
+/obj/machinery/cash_register/civilian{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"bEy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"bED" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Hallway 2";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/atriumdeck1)
+"bEI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Central Substation";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"bES" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/meteor/hallway2)
+"bEW" = (
+/obj/machinery/power/terminal,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable/yellow,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/smes)
+"bFf" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"bFQ" = (
+/obj/machinery/cryopod{
+ dir = 2
+ },
+/obj/effect/floor_decal/industrial/warning/cee,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/brig)
+"bFX" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"bGc" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"bGh" = (
+/obj/structure/closet/wardrobe/black,
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"bGw" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/storage/briefcase/inflatable,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"bGJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Hallway"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"bHs" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/dummystairs/greyledge{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"bHw" = (
+/obj/structure/disposalpipe/segment,
+/obj/random/trash,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"bHy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"bHT" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"bHY" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/structure/table/bench/glass,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"bId" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"bIj" = (
+/turf/simulated/mineral/cetus,
+/area/engineering/cetus/meteor/refinery)
+"bIp" = (
+/obj/structure/cable/cyan{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable/engine_default{
+ RCon_tag = "Gravity Generator"
+ },
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"bIv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"bID" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/blast/regular{
+ id = "solitary";
+ name = "Solitary Door"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/security/cetus/meteor/brig)
+"bIJ" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"bJk" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/medbay_primary_storage)
+"bJm" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"bJo" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24;
+ pixel_y = -2
+ },
+/obj/machinery/light_switch{
+ pixel_y = -13;
+ pixel_x = -22;
+ dir = 8
+ },
+/obj/machinery/button/remote/airlock{
+ id = "Dorms9";
+ name = "Bolt Control";
+ pixel_x = -24;
+ specialfunctions = 4;
+ dir = 4;
+ pixel_y = 11
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"bJu" = (
+/obj/structure/sign/deck/first,
+/turf/simulated/wall,
+/area/maintenance/cetus/meteor/central)
+"bJD" = (
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 34
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/meteor/pool)
+"bJT" = (
+/obj/item/stool{
+ color = "grey";
+ dir = 4
+ },
+/obj/item/material/fishing_rod/modern/cheap,
+/obj/item/clothing/head/fishing,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"bKa" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/lounge)
+"bKv" = (
+/obj/structure/bed/chair/wood,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"bKA" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/hallway2)
+"bKQ" = (
+/obj/effect/overmap/visitable/ship/landable/spacebus,
+/turf/simulated/floor/tiled/dark,
+/area/shuttle/spacebus)
+"bLw" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/forensic)
+"bMu" = (
+/obj/structure/ladder/up,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"bMI" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"bNb" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_y = -30;
+ pixel_x = -6
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"bNs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"bNw" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/meteor/pond)
+"bNC" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jraft)
+"bND" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/table/rack,
+/obj/item/material/fishing_rod/modern/cheap{
+ pixel_y = 10
+ },
+/obj/item/material/fishing_rod/modern/cheap{
+ pixel_y = 5
+ },
+/obj/item/material/fishing_rod/modern/cheap,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "Maintfish";
+ name = "Bait and Tackle Gate";
+ pixel_x = -25;
+ dir = 4;
+ pixel_y = -14
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/fishery)
+"bNI" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/dentist)
+"bNO" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"bOb" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/gravsubstation)
+"bOg" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/gun/projectile/shotgun/pump/combat,
+/obj/item/gun/projectile/shotgun/pump/combat,
+/obj/item/gun/projectile/shotgun/pump/combat,
+/obj/machinery/door/window/brigdoor/southleft{
+ name = "Ballistics"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"bOr" = (
+/obj/item/storage/box/swabs{
+ layer = 5;
+ pixel_y = 14;
+ pixel_x = -3
+ },
+/obj/structure/table/reinforced,
+/obj/item/storage/box/bodybags{
+ pixel_y = 7;
+ pixel_x = -9
+ },
+/obj/item/storage/box/gloves{
+ pixel_y = 7;
+ pixel_x = 6
+ },
+/obj/item/storage/box/syringes,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Forensic Office";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/cetus/meteor/forensic)
+"bOU" = (
+/obj/machinery/vending/exploration_armor,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"bOZ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"bPE" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"bQc" = (
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"bQd" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/pond)
+"bQA" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"bRs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_one_access = list(7,29)
+ },
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/toxins)
+"bSj" = (
+/obj/machinery/floodlight{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"bSr" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - D1 Xenobiology Airlock";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"bSx" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_1)
+"bSB" = (
+/turf/simulated/mineral/cetus/edge,
+/area/maintenance/cetus/meteor/aftstar)
+"bSP" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/item/flashlight/lamp/green{
+ pixel_y = 14
+ },
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"bSU" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"bSX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"bTi" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/bar)
+"bTo" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/ab_Hydroponics)
+"bTC" = (
+/obj/random/obstruction,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"bTZ" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/substation/central)
+"bUi" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/gravgen)
+"bUv" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/grass2,
+/area/maintenance/cetus/meteor/pond)
+"bUA" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"bUG" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/glass/bucket,
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/atrium)
+"bUN" = (
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = -9
+ },
+/obj/structure/curtain/open/shower,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"bVe" = (
+/obj/random/obstruction,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating{
+ icon_state = "dmg1"
+ },
+/area/maintenance/cetus/meteor/jraft)
+"bVf" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"bVk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"bVl" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/item/paper_bin{
+ pixel_y = 5
+ },
+/obj/item/pen{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"bVx" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"bVy" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/brig)
+"bWc" = (
+/obj/structure/ladder/up,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"bWh" = (
+/mob/living/simple_mob/vore/pitcher_plant,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/maintenance/cetus/meteor/pond)
+"bWs" = (
+/obj/effect/floor_decal/industrial/stand_clear/yellow,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/dronefab)
+"bWM" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"bWR" = (
+/obj/structure/flora/underwater/grass1,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/pond)
+"bXj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ brightness_color = "#DA0205";
+ brightness_power = 1;
+ brightness_range = 5;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"bXO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"bXV" = (
+/obj/vehicle/train/engine{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"bZv" = (
+/obj/machinery/sparker{
+ dir = 4;
+ id = "Xenobio";
+ pixel_x = -25
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"bZx" = (
+/obj/structure/lattice,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/pond)
+"bZI" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"bZL" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"bZZ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/old_tile/green,
+/area/maintenance/cetus/janitorial)
+"cas" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_1)
+"caD" = (
+/obj/structure/sign/directions/engineering/gravgen{
+ pixel_y = 10;
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/gravsubstation)
+"caQ" = (
+/obj/machinery/vending/loadout/clothing,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"caR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"cbm" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"cby" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"cbC" = (
+/obj/structure/flora/ausbushes/stalkybush,
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"cbV" = (
+/obj/structure/table/woodentable,
+/obj/item/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3;
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3;
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/food/condiment/small/sugar{
+ pixel_y = 13
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"ccc" = (
+/obj/structure/table/rack,
+/obj/item/circuitboard/autolathe{
+ pixel_y = 10
+ },
+/obj/item/circuitboard/mechfab{
+ pixel_y = 6
+ },
+/obj/item/circuitboard/mecha/ripley/main{
+ pixel_y = 5
+ },
+/obj/item/circuitboard/mecha/ripley/peripherals,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"ccn" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"ccR" = (
+/obj/random/maintenance/clean,
+/obj/structure/table/standard,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"cdm" = (
+/obj/item/stool/padded{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/ab_StripBar)
+"cdr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/turf/simulated/wall/rthull,
+/area/shuttle/spacebus)
+"cds" = (
+/obj/machinery/computer/power_monitor,
+/obj/item/geiger/wall/east,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"cdD" = (
+/obj/effect/floor_decal/corner/lightorange/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/random/mob/mouse,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/stylist)
+"cdQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/retro,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"cdS" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"cec" = (
+/obj/structure/table/steel,
+/obj/item/storage/box/lights/mixed,
+/obj/random/maintenance/misc,
+/obj/item/champagne,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"cez" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"ceG" = (
+/obj/machinery/computer{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"ceL" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"cfh" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"cfT" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/meteor/atrium)
+"cfV" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"cgs" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"cgZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"chT" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/mechbay)
+"cid" = (
+/obj/structure/table/bench/padded,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/meteor/hallway2)
+"cif" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"cij" = (
+/obj/structure/dummystairs{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"cin" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"civ" = (
+/obj/item/clothing/head/hardhat/old,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"ciQ" = (
+/obj/machinery/door/blast/regular{
+ id = "EngineVent";
+ name = "Reactor Vent";
+ dir = 8
+ },
+/obj/structure/sign/warning/vent_port{
+ pixel_x = 32
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/cetus/meteor/engineroom)
+"ciT" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/structure/cable/yellow{
+ icon_state = "5-9"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"cjm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"cjo" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"cjp" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"cjX" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"ckd" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"ckl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"cks" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"ckz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"ckD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"ckY" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ color = "White";
+ dir = 8
+ },
+/turf/simulated/floor/water/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"clf" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"clH" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"clJ" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"clN" = (
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"cmg" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/empslite{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/box/teargas,
+/obj/item/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Armory";
+ dir = 9
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"cms" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"cmy" = (
+/obj/machinery/washing_machine,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"cmJ" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"cmM" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"cnq" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"cny" = (
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"cnX" = (
+/turf/unsimulated/wall,
+/area/rnd/test_area)
+"coA" = (
+/obj/machinery/power/breakerbox,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"coI" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"coK" = (
+/obj/structure/bed,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/item/bedsheet/cosmos,
+/turf/simulated/floor/carpet/retro,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"cpl" = (
+/obj/structure/table/standard,
+/obj/structure/sink/countertop{
+ pixel_y = 14
+ },
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"cpp" = (
+/turf/simulated/shuttle/floor/black,
+/area/maintenance/cetus/meteor/pond)
+"cpM" = (
+/turf/simulated/shuttle/wall/hard_corner,
+/area/shuttle/cryo/station)
+"cqb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"cqh" = (
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jrfore)
+"cqu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/meteor/hallway2)
+"crb" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"crs" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"crw" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"crA" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"crH" = (
+/obj/machinery/iv_drip,
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"crL" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/shuttle/wall/hard_corner,
+/area/shuttle/cryo/station)
+"crN" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Lower Atrium 2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/atriumdeck1)
+"crY" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"csu" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/retro,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"csG" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"csJ" = (
+/obj/structure/stairs/spawner/west,
+/obj/structure/railing/grey,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"ctd" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"cte" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/aftstar)
+"ctf" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"ctC" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"ctD" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"ctX" = (
+/obj/machinery/door/airlock/multi_tile/metal{
+ req_access = list(45);
+ name = "Operating Theatre Storage"
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/obj/structure/cable/green{
+ icon_state = "9-10"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/surgery_hallway)
+"cuh" = (
+/obj/machinery/partslathe,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/refinery)
+"cui" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"cun" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/spacebus)
+"cuq" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"cuN" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "TEST - Central Primary Hallway 1";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"cuU" = (
+/obj/structure/table/gamblingtable,
+/obj/item/deck/cards{
+ pixel_y = 6
+ },
+/obj/item/deck/cards{
+ pixel_y = 2;
+ pixel_x = 5
+ },
+/turf/simulated/floor/carpet/green,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"cvc" = (
+/obj/structure/table/steel,
+/obj/random/toolbox,
+/obj/random/toolbox,
+/obj/random/tech_supply,
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"cvn" = (
+/obj/machinery/flasher{
+ id = "observation";
+ pixel_y = 26
+ },
+/obj/structure/table/standard,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - JR Observation";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"cvo" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"cvq" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"cvs" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"cvA" = (
+/obj/structure/ladder/up,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"cvF" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ dir = 8;
+ pixel_x = 29;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"cwI" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/hallway)
+"cxc" = (
+/obj/structure/table/glass,
+/obj/item/storage/laundry_basket,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"cxj" = (
+/obj/structure/prop/machine/nt_biocan{
+ name = "Hot Tub Pump";
+ pixel_y = -6
+ },
+/obj/structure/tubes,
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"cxM" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 8;
+ id = "baby_mammoth_blast";
+ name = "window blast shield"
+ },
+/turf/simulated/floor,
+/area/shuttle/spacebus)
+"cyp" = (
+/obj/structure/lattice,
+/obj/effect/floor_decal/rust,
+/obj/structure/salvageable/shuttle_console,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"cys" = (
+/obj/machinery/light/broken{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"cyH" = (
+/obj/item/geiger/wall/north,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"cyR" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/table/rack/steel,
+/obj/item/pickaxe/silver,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"czU" = (
+/obj/structure/disposalpipe/junction,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"czZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/random/trash,
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"cAb" = (
+/obj/structure/table/steel,
+/obj/item/clothing/head/hardhat/old,
+/obj/item/clothing/glasses/welding,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"cAg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/ab_StripBar)
+"cAo" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/test_area)
+"cAu" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"cAN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"cBb" = (
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"cBR" = (
+/obj/structure/table/standard,
+/obj/item/newspaper,
+/obj/item/newspaper,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"cBX" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"cCe" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/security/cetus/meteor/hallway)
+"cCA" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/meteor/starsec)
+"cDg" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"cDP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"cEy" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"cEI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"cEX" = (
+/obj/machinery/vending/exploration_weapons,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"cFg" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"cFw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating{
+ icon_state = "dmg1"
+ },
+/area/maintenance/cetus/meteor/pond)
+"cFZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"cGi" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"cGJ" = (
+/obj/structure/table/standard,
+/obj/item/material/knife,
+/obj/item/material/kitchen/rollingpin,
+/obj/machinery/light/small{
+ brightness_color = "#DA0205";
+ brightness_power = 1;
+ brightness_range = 5;
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/pool)
+"cGK" = (
+/turf/simulated/floor/plating/turfpack/airless,
+/area/rnd/test_area)
+"cHl" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"cHq" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"cHy" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/hallway)
+"cHz" = (
+/obj/item/storage/box/cdeathalarm_kit,
+/obj/item/bodybag/cryobag{
+ pixel_x = -3
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = -3
+ },
+/obj/item/storage/box/bodybags,
+/obj/structure/table/steel,
+/obj/item/sleevemate,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"cHD" = (
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jrfore)
+"cHM" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"cIc" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "9-10"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"cIk" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced,
+/obj/item/ammo_magazine/ammo_box/b12g/pellet,
+/obj/item/ammo_magazine/ammo_box/b12g/pellet,
+/obj/item/ammo_magazine/ammo_box/b12g,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Ammo"
+ },
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"cJL" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/random/tool/powermaint,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/monotile,
+/area/engineering/cetus/meteor/atriumdeck1)
+"cJV" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineRadiatorViewport2";
+ name = "Engine Radiator Viewport Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"cJZ" = (
+/obj/structure/table/bench/steel,
+/obj/item/reagent_containers/food/drinks/bottle/small/beer/meteor{
+ pixel_y = 9;
+ pixel_x = -2
+ },
+/obj/item/material/ashtray/plastic{
+ pixel_y = -4;
+ pixel_x = 3
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"cKn" = (
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"cKu" = (
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"cKy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"cKK" = (
+/obj/effect/floor_decal/industrial/loading/blue{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_1)
+"cLp" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"cLy" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"cLD" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/structure/sign/warning/compressed_gas{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"cLT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/toxins)
+"cMs" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ color = "White"
+ },
+/turf/simulated/floor/water/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"cMA" = (
+/obj/machinery/floodlight{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"cMQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"cMW" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"cNd" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"cNj" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"cNP" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"cNZ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance{
+ name = "Engine Waste Handling";
+ req_one_access = list(10,24)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/enginewaste)
+"cOe" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxstorage)
+"cOg" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/supermatter_engine,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"cOl" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"cOW" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"cPd" = (
+/obj/structure/cable/cyan,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"cPK" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "Maintshop";
+ name = "Workshop Gate";
+ pixel_x = 27;
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"cPV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - JR D1 Stairwell";
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/stairwelljr1)
+"cPW" = (
+/obj/structure/panic_button{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"cQl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/computer/timeclock/premade/south,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"cRm" = (
+/obj/structure/closet/l3closet/virology,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"cRM" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"cRO" = (
+/obj/structure/ladder/up,
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"cSs" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/railing/overhang/hazard,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"cST" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/atrium)
+"cTB" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/morgue/cetus)
+"cTG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"cTW" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"cUr" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/ab_StripBar)
+"cUt" = (
+/obj/machinery/shield_gen/external,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"cUM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"cUR" = (
+/obj/machinery/shieldwallgen{
+ anchored = 1;
+ req_access = list(47);
+ state = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"cUW" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/ab_GeneralStore)
+"cVg" = (
+/obj/structure/table/rack,
+/obj/item/storage/box/cdeathalarm_kit{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/storage/box/seccarts{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ color = "#989898"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"cVt" = (
+/obj/structure/table/woodentable,
+/obj/item/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/pen/blue{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/item/pen/red{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/item/pen,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/lounge)
+"cVI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ color = "#989898";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"cVN" = (
+/obj/effect/floor_decal/spline/fancy,
+/turf/simulated/floor/water/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"cVT" = (
+/obj/item/storage/toolbox/mechanical,
+/obj/structure/table/standard,
+/obj/item/destTagger,
+/obj/item/packageWrap,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"cWE" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"cXg" = (
+/obj/effect/landmark/start{
+ name = "Bartender"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"cXl" = (
+/obj/structure/table/bench/wooden,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/machinery/light_switch{
+ pixel_y = -13;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/machinery/button/remote/airlock{
+ id = "Dorms1";
+ name = "Bolt Control";
+ pixel_x = 24;
+ specialfunctions = 4;
+ dir = 8;
+ pixel_y = 12
+ },
+/obj/item/flashlight/lamp/green{
+ pixel_y = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/purple,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"cXA" = (
+/obj/machinery/atmospherics/valve/digital/open{
+ name = "Hot Loop Waste Gas Management Switch";
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"cXE" = (
+/obj/structure/curtain/open/shower/security,
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/cetus/meteor/brig)
+"cYh" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/vr)
+"cYE" = (
+/obj/structure/closet,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/random/maintenance/engineering,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"cYT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"cYW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"cZe" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"cZy" = (
+/obj/structure/ladder/up,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"cZE" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"cZF" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"cZO" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/ab_StripBar)
+"cZT" = (
+/obj/structure/flora/underwater/grass1,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/pond)
+"daj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"daD" = (
+/obj/effect/floor_decal/industrial/loading/blue,
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_2)
+"dba" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/meteor/star)
+"dbC" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine control room blast doors.";
+ id = "EngineWasteViewport1";
+ name = "Engine Waste Blast Doors";
+ req_one_access = list(11,24);
+ pixel_x = 28
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"dbX" = (
+/obj/random/soap,
+/obj/random/soap,
+/obj/structure/table/glass,
+/obj/random/soap,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = -25;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"ddn" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/foremed)
+"ddy" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "prisonentry";
+ name = "Brig Entry";
+ req_access = list(2);
+ req_one_access = null
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/brig)
+"ddC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"ddJ" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating{
+ icon_state = "dmg1"
+ },
+/area/maintenance/cetus/meteor/pond)
+"ddK" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"ddS" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"der" = (
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#00ff00";
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"det" = (
+/obj/machinery/door/airlock/glass{
+ name = "Observatory"
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0;
+ anchored = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/cozyobservatory)
+"deA" = (
+/obj/structure/closet/bombcloset,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"deH" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/meteor/star)
+"deU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "8-10"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"deV" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/toxtest)
+"dfc" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/meteor/foremed)
+"dff" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"dfp" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"dfs" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"dfE" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"dgd" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"dgo" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"dgq" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/hallway)
+"dgG" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"dhn" = (
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/ab_StripBar)
+"dhT" = (
+/obj/machinery/door/window/southleft{
+ name = "Bar";
+ req_access = list(25)
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"dhU" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/item/inflatable/door/torn,
+/turf/simulated/floor/plating{
+ icon_state = "dmg1"
+ },
+/area/maintenance/cetus/meteor/jraft)
+"dif" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/meteor/portsec)
+"djb" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"djd" = (
+/obj/structure/salvageable/console{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/maintenance/cetus/meteor/pond)
+"dkl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"dkx" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/aftstar)
+"dlt" = (
+/obj/structure/cable/orange{
+ icon_state = "0-6"
+ },
+/obj/structure/sign/department/shield{
+ pixel_y = 30
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/shieldgen)
+"dmb" = (
+/obj/structure/cable/cyan{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/smes/buildable/engine_default{
+ RCon_tag = "Engine - Core"
+ },
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/effect/engine_setup/smes,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/smes)
+"dmn" = (
+/turf/simulated/wall/r_wall,
+/area/space)
+"dmC" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"dmP" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/blast/regular{
+ id = "SupermatterPort";
+ layer = 3.3;
+ name = "Reactor Blast Door"
+ },
+/turf/simulated/floor,
+/area/engineering/cetus/meteor/engineroom)
+"dmS" = (
+/obj/random/trash,
+/obj/structure/ladder/up,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"dnc" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/bar)
+"dne" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"dns" = (
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Monitoring Room";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"dnv" = (
+/obj/structure/table/darkglass,
+/obj/random/mainttoyloot,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_StripBar)
+"dny" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"doi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"doZ" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"dpC" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/broken{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"dqN" = (
+/obj/item/flashlight{
+ pixel_x = 7;
+ pixel_y = 9
+ },
+/obj/structure/table/steel,
+/obj/item/flashlight{
+ pixel_x = 7;
+ pixel_y = 9
+ },
+/obj/item/flashlight{
+ pixel_x = 7;
+ pixel_y = 9
+ },
+/obj/item/flash{
+ pixel_x = 11;
+ pixel_y = -4
+ },
+/obj/item/flash{
+ pixel_x = 11;
+ pixel_y = -4
+ },
+/obj/item/stock_parts/gear{
+ pixel_x = -8;
+ pixel_y = 10
+ },
+/obj/item/stock_parts/gear{
+ pixel_x = -8;
+ pixel_y = 10
+ },
+/obj/item/stock_parts/gear{
+ pixel_x = -8;
+ pixel_y = 10
+ },
+/obj/item/stock_parts/motor{
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/obj/item/stock_parts/motor{
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/obj/item/stock_parts/motor{
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/obj/item/stock_parts/spring{
+ pixel_y = -4
+ },
+/obj/item/stock_parts/spring{
+ pixel_y = -4
+ },
+/obj/item/stock_parts/spring{
+ pixel_y = -4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"dqU" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/flora/underwater/grass1,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"dqW" = (
+/obj/structure/railing/overhang/hazard,
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood/old,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/cetus/atriumd1)
+"drg" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"dsn" = (
+/obj/machinery/reagent_refinery/hub{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"dso" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"dsr" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"dsJ" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"dsV" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"dtj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"dtn" = (
+/obj/machinery/vending/assist{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"dts" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"dtI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ brightness_color = "#DA0205";
+ brightness_power = 1;
+ brightness_range = 5;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"dug" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/mineral/cetus,
+/area/security/cetus/meteor/forensic)
+"duy" = (
+/obj/machinery/floodlight{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"duC" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/color/corner{
+ color = "#00B8B2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/button/windowtint{
+ id = "st1_tint";
+ pixel_x = -11;
+ pixel_y = 22
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -35;
+ pixel_y = 6
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"duF" = (
+/obj/structure/waterfall,
+/obj/structure/waterfall/mist,
+/obj/effect/mist,
+/turf/simulated/floor/water/deep/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"dvr" = (
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine control room blast doors.";
+ id = "EngineEmitterPortWest";
+ name = "Engine Room Blast Doors";
+ pixel_x = 28;
+ pixel_y = 25;
+ req_one_access = list(11,24);
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 6
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"dvK" = (
+/obj/random/trash,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"dwg" = (
+/obj/machinery/computer/rcon,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"dwj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"dwv" = (
+/obj/structure/table/hardwoodtable,
+/obj/random/coin,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/meteor/starsec)
+"dwA" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/chapel/chapel_morgue/cetus/crypt)
+"dwC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"dwP" = (
+/obj/effect/floor_decal/corner_techfloor_gray{
+ dir = 10
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/meteor/vr)
+"dwS" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/retro,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"dxd" = (
+/obj/machinery/cryopod,
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"dxk" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/engineering/cetus/meteor/refinery)
+"dxt" = (
+/obj/machinery/computer/cryopod{
+ pixel_y = -32
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"dxL" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/carbonresearch)
+"dyd" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"dym" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"dyp" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/stairwelljr1)
+"dyr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"dyT" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/r_wall,
+/area/hangar/cetus/two)
+"dzh" = (
+/obj/machinery/button/remote/driver{
+ id = "toxinsdriver";
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "toxconveyor"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"dzr" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"dzw" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"dzQ" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/railing/overhang/grey,
+/obj/item/stool/padded{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/ab_StripBar)
+"dAH" = (
+/turf/simulated/wall,
+/area/medical/cetus/atriumd1)
+"dAS" = (
+/obj/structure/table/standard,
+/obj/item/assembly/igniter,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/flasher{
+ id = "miscresearch";
+ pixel_y = 26
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"dBl" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"dBt" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ dir = 8;
+ pixel_x = 29;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"dBB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/ab_StripBar)
+"dBF" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"dBP" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"dCP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Under Construction"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"dCQ" = (
+/turf/simulated/floor/water/deep/indoors/station,
+/area/engineering/cetus/meteor/refinery)
+"dCR" = (
+/obj/structure/disposalpipe/tagger{
+ name = "Security";
+ sort_tag = "Security"
+ },
+/obj/machinery/door/window/northleft{
+ name = "Security Delivery"
+ },
+/obj/machinery/conveyor{
+ id = "explomail"
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"dCZ" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"dEc" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"dEz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"dEC" = (
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1/jr)
+"dEF" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"dFL" = (
+/obj/machinery/button/remote/driver{
+ id = "chapelgun";
+ name = "Chapel Mass Driver";
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"dFX" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "exterior access button";
+ pixel_x = 10;
+ pixel_y = 32
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"dGG" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"dHm" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"dHB" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"dHE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"dHN" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"dIu" = (
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/plastitanium/full,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"dIC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"dIQ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"dJa" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"dJm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"dLh" = (
+/obj/machinery/vending/nifsoft_shop,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"dLE" = (
+/obj/machinery/vending/cigarette{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/lounge)
+"dLP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"dNf" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/kit/paint/gygax/recitence{
+ pixel_y = -6
+ },
+/obj/item/kit/paint/gygax/darkgygax{
+ pixel_y = 5
+ },
+/obj/item/kit/paint/durand/seraph{
+ pixel_y = 16
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"dNl" = (
+/obj/vehicle/train/trolley{
+ dir = 2
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"dNw" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/water/deep/indoors/station,
+/area/maintenance/cetus/meteor/central)
+"dNH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"dOg" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"dOh" = (
+/obj/structure/closet/radiation,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"dOt" = (
+/obj/structure/table/reinforced,
+/obj/item/paper/guide/gravity{
+ pixel_y = -4;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"dOu" = (
+/obj/structure/sign/deck/first,
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/hallway2)
+"dOz" = (
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"dOE" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters{
+ color = "white"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/pool)
+"dOH" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/ab_StripBar)
+"dPd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Pool"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-9"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/cetus/meteor/pool)
+"dPw" = (
+/obj/structure/table/standard,
+/obj/structure/disposalpipe/segment,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/pen{
+ pixel_y = 5
+ },
+/obj/item/clipboard,
+/obj/item/clipboard,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"dPX" = (
+/obj/structure/table/darkglass,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/shuttle/spacebus)
+"dQg" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxins)
+"dQs" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"dRw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"dRJ" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/stairwelljr1)
+"dRY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"dSj" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/button/remote/blast_door{
+ id = "tacarmory";
+ name = "Armory Tactical Equipment";
+ req_access = list(3);
+ pixel_y = -26;
+ pixel_x = 26;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/armory)
+"dSE" = (
+/obj/structure/ladder/up{
+ pixel_y = 13
+ },
+/obj/random/trash,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"dSJ" = (
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/water/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"dTc" = (
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"dTl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"dTH" = (
+/obj/random/trash,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"dUd" = (
+/obj/machinery/atmospherics/valve,
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/security/cetus/meteor/hallway)
+"dUt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"dUA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"dUG" = (
+/obj/machinery/light/small,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"dUL" = (
+/obj/structure/bed,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/item/bedsheet/purple,
+/turf/simulated/floor/carpet/blue2,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"dVI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"dVQ" = (
+/obj/structure/table/rack,
+/obj/item/pickaxe,
+/obj/item/clothing/glasses/meson,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"dVS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway1)
+"dWn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/green,
+/area/maintenance/cetus/janitorial)
+"dWI" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"dWR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/medical,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"dXc" = (
+/obj/machinery/button/remote/airlock{
+ id = "engine_electrical_maintenance";
+ name = "Door Bolt Control";
+ specialfunctions = 4;
+ pixel_y = -29
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"dXs" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"dXt" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/meteor/hallway2)
+"dXQ" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"dYc" = (
+/obj/machinery/portable_atmospherics/canister,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"dYs" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"dYF" = (
+/obj/item/storage/dicecup/loaded{
+ pixel_x = -4;
+ pixel_y = 10
+ },
+/obj/structure/table/woodentable,
+/obj/item/deck/cah{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/deck/cah/black{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"dYP" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"dZD" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 1;
+ icon_state = "emitter2";
+ id = "EngineEmitter";
+ state = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable/cyan{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/redgrid,
+/area/engineering/cetus/meteor/engineroom)
+"dZJ" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"eaf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"eai" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/pond)
+"eaj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/bar)
+"eam" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/morgue/cetus)
+"eap" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"eau" = (
+/obj/structure/table/standard,
+/obj/item/entrepreneur/dentist_mirror{
+ pixel_y = 7
+ },
+/obj/item/entrepreneur/dentist_probe{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/entrepreneur/dentist_sickle{
+ pixel_y = -3;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/dentist)
+"eaZ" = (
+/obj/structure/girder,
+/obj/item/tape/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"ebo" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"ebq" = (
+/obj/machinery/optable,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_1)
+"ebr" = (
+/obj/machinery/flasher/portable,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"ebu" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"ebz" = (
+/obj/machinery/door/blast/regular{
+ id = "chapelgun";
+ name = "Chapel Launcher Door";
+ dir = 8
+ },
+/obj/structure/fans/tiny,
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"ebM" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"ecI" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/pool)
+"edb" = (
+/obj/structure/table/glass,
+/obj/random/cigarettes,
+/obj/item/deck/cards,
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"edc" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"edk" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/dentist)
+"edl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"edn" = (
+/obj/machinery/power/tesla_coil/pre_mapped,
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Incomplete Engine 1";
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"edq" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"edD" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"edQ" = (
+/obj/structure/table/reinforced,
+/obj/item/flash,
+/obj/random/maintenance/research,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"edW" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/stairwelljr1)
+"egf" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"egr" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/cable/yellow{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/smes)
+"egv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"egz" = (
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/obj/effect/shuttle_landmark{
+ base_area = /area/hangar/cetus/two;
+ base_turf = /turf/simulated/floor/reinforced;
+ landmark_tag = "hangar_2";
+ name = "Hangar 2";
+ docking_controller = "hangar_2"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"egK" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Cuffs Locker";
+ req_access = list(2)
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/handcuffs/legcuffs{
+ pixel_y = 2
+ },
+/obj/item/handcuffs/legcuffs{
+ pixel_y = 2
+ },
+/obj/item/handcuffs/legcuffs{
+ pixel_y = 2
+ },
+/obj/item/handcuffs/legcuffs{
+ pixel_y = 2
+ },
+/obj/item/handcuffs/legcuffs{
+ pixel_y = 2
+ },
+/obj/item/handcuffs/legcuffs{
+ pixel_y = 2
+ },
+/obj/item/handcuffs/legcuffs{
+ pixel_y = 2
+ },
+/obj/item/handcuffs/legcuffs{
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"eiV" = (
+/obj/item/bikehorn/rubberducky/blue,
+/turf/simulated/floor/water/indoors,
+/area/maintenance/cetus/meteor/central)
+"ejr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Trade Workshop";
+ req_one_access = null
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/cetus/workshop)
+"ejG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Fore Substation";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"ekn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"ela" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"elq" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"elu" = (
+/turf/simulated/floor/lino,
+/area/maintenance/ab_StripBar)
+"elx" = (
+/obj/machinery/door/blast/regular{
+ id = "toxinsdriver";
+ name = "Toxins Launcher Bay Door"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/toxtest)
+"elM" = (
+/obj/structure/bed/chair/wood,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"emM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"emN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/random/trash,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green,
+/obj/structure/cable{
+ icon_state = "9-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/aftstar)
+"enf" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"enx" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"enB" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/surgery{
+ pixel_y = -1;
+ pixel_x = -2
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 8
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"eoA" = (
+/obj/machinery/deployable/barrier,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"eoS" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"eoX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/tagger{
+ name = "Morgue";
+ sort_tag = "Morgue";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/sec{
+ req_one_access = list(4);
+ name = "Forensics Autopsy Chamber"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/security/cetus/meteor/forensic)
+"epp" = (
+/obj/item/stack/tile/floor/white,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"epA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/ripperdock)
+"epI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"epR" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"epS" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/vending/cigarette{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"eqr" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/effect/floor_decal/spline/plain/cee,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/hallway)
+"eqX" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/airless,
+/area/space)
+"erh" = (
+/obj/machinery/power/emitter/antique,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/star)
+"erj" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/item/geiger/wall/north,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/atriumdeck1)
+"erw" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"erY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"esj" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"esG" = (
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"esX" = (
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Common Brig 1";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"euf" = (
+/obj/structure/cable{
+ icon_state = "2-9"
+ },
+/obj/structure/cable{
+ icon_state = "5-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"euz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"euC" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/morestuff,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"euE" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"euF" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"euU" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/green/bordercorner2,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"evw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre 2";
+ req_access = list(45)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Surgery_Room_2)
+"evY" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/table/rack,
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Weapons locker";
+ req_access = list(2)
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/gun/projectile/colt/detective,
+/obj/item/gun/projectile/colt/detective,
+/obj/item/gun/projectile/colt/detective,
+/obj/item/gun/projectile/colt/detective,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"ewl" = (
+/obj/random/trash,
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"ewq" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"ews" = (
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Port Substation";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"ewu" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/cetus/meteor/armory)
+"ewM" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"ewO" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/tank/oxygen,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/brigdoor/eastright{
+ name = "Eva Suits"
+ },
+/obj/item/tank/jetpack/carbondioxide{
+ pixel_y = 7;
+ pixel_x = -2
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/item/clothing/suit/space/void/security/riot/alt,
+/obj/item/clothing/head/helmet/space/void/security/riot/alt,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"ewZ" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/retro,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"exN" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"exO" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"eyg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"eyo" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_locked";
+ id_tag = "engine_access_hatch";
+ locked = 1;
+ req_access = list(11)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"eze" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -15;
+ pixel_y = -3
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -29;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"ezp" = (
+/obj/machinery/air_sensor{
+ frequency = 1431;
+ id_tag = "toxins_mixing_exterior";
+ output = 63
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/cetus/meteor/toxins)
+"ezx" = (
+/obj/structure/ladder/up,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"ezY" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/meteor/jraft)
+"eAp" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"eAT" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"eBm" = (
+/obj/machinery/vending/exploration_fieldmedic,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"eBr" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"eBA" = (
+/obj/random/junk,
+/turf/simulated/floor/tiled/neutral/turfpack/airless,
+/area/space)
+"eCj" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/starsec)
+"eCn" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"eCQ" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1443;
+ icon_state = "on";
+ id = "air_in";
+ use_power = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/boxing/gym,
+/area/security/cetus/meteor/brig)
+"eDf" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineWasteViewport1";
+ name = "Engine Waste Viewport Shutter";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"eDh" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"eDz" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/random/trash,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/meteor/jraft)
+"eDP" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"eEu" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"eEx" = (
+/obj/structure/closet/crate/engineering,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/glass,
+/obj/item/tank/phoron,
+/obj/item/tank/phoron,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/electrical,
+/obj/item/multitool,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/geiger,
+/obj/item/clothing/glasses/goggles,
+/obj/item/clothing/glasses/goggles,
+/obj/item/t_scanner,
+/obj/item/clothing/glasses/welding,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/power/apc/super{
+ pixel_y = 24;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/spacebus)
+"eFH" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"eGi" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"eHp" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/adv{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/adv,
+/obj/item/radio/intercom/department/medbay{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"eHu" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/circuitboard/rdconsole{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/circuit_imprinter{
+ pixel_x = 1;
+ pixel_y = 8
+ },
+/obj/item/circuitboard/machine/protolathe/department/cargo{
+ pixel_y = 1
+ },
+/obj/item/circuitboard/machine/protolathe/department/engineering{
+ pixel_y = 5
+ },
+/obj/item/circuitboard/machine/protolathe/department/medical{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/item/circuitboard/machine/protolathe/department/science{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/machine/protolathe/department/security{
+ pixel_x = -3;
+ pixel_y = -4
+ },
+/obj/item/circuitboard/machine/protolathe/department/service{
+ pixel_x = -4;
+ pixel_y = -7
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"eHF" = (
+/obj/machinery/vending/cigarette{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"eHJ" = (
+/obj/structure/stairs/spawner/west,
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"eIc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"eIp" = (
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/engineering/cetus/meteor/refinery)
+"eIr" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"eIz" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/closet/toolcloset,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"eII" = (
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -36;
+ name = "Morgue Delivery Chute";
+ color = "green"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"eIR" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/dentist)
+"eIW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"eJa" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravgen)
+"eJo" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"eJq" = (
+/obj/item/stack/rods,
+/turf/simulated/floor/airless,
+/area/space)
+"eJu" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"eJv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "Dorms5";
+ name = "Room 5"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"eJw" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"eJW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/cable{
+ icon_state = "9-10"
+ },
+/obj/machinery/door/airlock/maintenance/engi,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"eKa" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/cups,
+/obj/structure/loot_pile/surface/medicine_cabinet/fresh{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/dentist)
+"eKH" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"eKW" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/item/glass_jar/fish{
+ pixel_y = 9
+ },
+/obj/item/glass_jar/fish{
+ pixel_y = 1
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/fishery)
+"eLq" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"eLE" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"eLN" = (
+/obj/effect/floor_decal/industrial/warning/tile,
+/obj/effect/floor_decal/industrial/warning/color/tile/red,
+/obj/machinery/air_sensor{
+ frequency = 1433;
+ id_tag = "engine_sensor";
+ output = 63
+ },
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/cetus/meteor/engineroom)
+"eLO" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 1;
+ name = "exterior access button";
+ pixel_x = -31;
+ pixel_y = 10
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"eLU" = (
+/obj/structure/closet/crate,
+/obj/item/circuitboard/autolathe,
+/obj/item/pipe_dispenser,
+/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp,
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"eLV" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"eMb" = (
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/structure/curtain/open/shower/medical,
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"eMl" = (
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"eMB" = (
+/obj/random/plushielarge,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"eML" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "Dorms4";
+ name = "Room 4"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"eMN" = (
+/obj/machinery/iv_drip,
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"eMO" = (
+/obj/effect/floor_decal/corner/pink/diagonal,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"eNB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"eNT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/shieldgen)
+"eNX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"eOh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"eOM" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{
+ id_tag = "engine_room_airlock";
+ name = "Engine Room Airlock";
+ pixel_y = 24;
+ tag_airpump = "engine_airlock_pump";
+ tag_chamber_sensor = "eng_al_c_snsr";
+ tag_exterior_door = "engine_airlock_exterior";
+ tag_exterior_sensor = "eng_al_ext_snsr";
+ tag_interior_door = "engine_airlock_interior";
+ tag_interior_sensor = "eng_al_int_snsr"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/airlock)
+"eOO" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/meteor/central)
+"eOU" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"eOX" = (
+/obj/structure/flora/underwater/seaweed3,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/pond)
+"ePc" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"ePm" = (
+/obj/machinery/door/blast/regular{
+ id = "EngineEmitterPortWest";
+ layer = 3.3;
+ name = "Engine Waste Handling Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/engineroom)
+"ePw" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"ePD" = (
+/obj/structure/table/rack/steel,
+/obj/item/entrepreneur/dumbbell{
+ pixel_y = 7;
+ pixel_x = -4;
+ color = "#679aeb"
+ },
+/obj/item/entrepreneur/dumbbell{
+ pixel_y = 7;
+ pixel_x = 1;
+ color = "#679aeb"
+ },
+/obj/item/entrepreneur/dumbbell{
+ pixel_y = 7;
+ pixel_x = 6;
+ color = "#679aeb"
+ },
+/obj/item/entrepreneur/dumbbell{
+ pixel_x = -8;
+ color = "#abbd46"
+ },
+/obj/item/entrepreneur/dumbbell{
+ pixel_x = -4;
+ color = "#abbd46"
+ },
+/obj/item/entrepreneur/dumbbell{
+ color = "#8f3e33"
+ },
+/obj/item/entrepreneur/dumbbell{
+ pixel_x = 4;
+ color = "#8f3e33"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/boxing/gym,
+/area/security/cetus/meteor/brig)
+"ePM" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"eQd" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/smes)
+"eQY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"eRW" = (
+/obj/structure/table/steel,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/random/maintenance/security,
+/obj/random/mech_toy,
+/obj/random/fromList/TFGuns,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"eSc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 1
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Operating Theatre 2";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"eSB" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Shield Generator"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/shieldgen)
+"eSC" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"eSJ" = (
+/obj/structure/cable{
+ icon_state = "6-10"
+ },
+/obj/structure/cable{
+ icon_state = "1-6"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"eSR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"eSW" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"eSY" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"eTf" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/enginemonitor)
+"eTh" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
+/obj/structure/cable/yellow{
+ icon_state = "6-9"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"eTt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"eTJ" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/random/vendorfood{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"eUf" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/hallway1)
+"eUv" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/item/autopsy_scanner,
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/forensic)
+"eUG" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Shield Generator"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/shieldgen)
+"eVo" = (
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"eVG" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/storage/hooded/raincoat{
+ name = "chair cloth";
+ desc = "A thin coat of fabric, used by barbers to keep clippings off of your body"
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/stylist)
+"eVS" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 8;
+ id = "baby_mammoth_blast";
+ name = "window blast shield"
+ },
+/turf/simulated/floor,
+/area/shuttle/spacebus)
+"eVW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"eVZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/camera/network/exploration{
+ c_tag = "EXP - D1 Hangar 4";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"eWJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine radiator viewport shutters.";
+ id = "EngineRadiatorViewport2";
+ name = "Engine Radiator Viewport Shutters";
+ req_access = list(10);
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"eXe" = (
+/turf/simulated/wall/r_wall,
+/area/hangar/cetus/two)
+"eXk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"eXx" = (
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"eYg" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"eYt" = (
+/obj/structure/table/bench/standard,
+/obj/item/storage/box/remote_scene_tools{
+ pixel_y = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"eYF" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"eYG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"eYH" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"eZF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"eZL" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"fam" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"far" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"faP" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"fbs" = (
+/turf/simulated/wall/r_wall,
+/area/hangar/cetus/explolocker)
+"fbC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "ward1"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/carbonresearch)
+"fbI" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxstorage)
+"fbQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "chopshop";
+ name = "Mech Bay Gate";
+ pixel_x = -27;
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"fbY" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/methane,
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxstorage)
+"fcq" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"fcC" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"fcO" = (
+/obj/machinery/power/generator{
+ anchored = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/redgrid,
+/area/engineering/cetus/meteor/engineroom)
+"fdw" = (
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Miscellaneous Test Chamber";
+ dir = 8;
+ network = list("Research","Miscellaneous Reseach")
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"fdR" = (
+/obj/machinery/light/small/fluorescent{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"fdT" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 1;
+ target_pressure = 200
+ },
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ req_one_access = list(11, 24, 47, 5);
+ pixel_x = -24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"feb" = (
+/obj/structure/closet/bombclosetsecurity,
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"fec" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"few" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/airlock)
+"feQ" = (
+/obj/machinery/power/grounding_rod,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/star)
+"feX" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Hallway 2";
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"ffn" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"ffr" = (
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"ffY" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"fgb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_locked";
+ id_tag = "engine_access_hatch";
+ locked = 1;
+ req_access = list(11)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"fgl" = (
+/turf/simulated/wall/r_wall,
+/area/medical/surgery_hallway)
+"fgx" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/fishery)
+"fgO" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"fhj" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge{
+ scrub_id = "Brig"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/spline/fancy{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/brig)
+"fhn" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"fhr" = (
+/obj/structure/table/rack/shelf,
+/obj/item/seeds/random,
+/obj/random/soap,
+/obj/random/mech_toy,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/morestuff,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/random/fromList/TFGuns,
+/obj/item/storage/box/remote_scene_tools,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"fhs" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"fhG" = (
+/obj/structure/dummystairs,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/ragecage)
+"fhR" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"fib" = (
+/obj/structure/railing/overhang/hazard,
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/stand_clear/yellow{
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/morgue/cetus)
+"fiu" = (
+/obj/random/pottedplant,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/purple,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"fiz" = (
+/obj/structure/bed/chair/sofa/right/orange{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"fjt" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"fkG" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"fkY" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"flE" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"flI" = (
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"flM" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 9
+ },
+/turf/simulated/floor/water/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"fmj" = (
+/obj/structure/bed/chair,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D1 Central Ring 4";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"fmk" = (
+/obj/machinery/vending/security_armor,
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"fms" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"fmt" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 6
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"fmy" = (
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#00ffff";
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"fmS" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/o2{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/o2,
+/obj/machinery/light/small/fluorescent,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"fnd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical/polarized{
+ req_one_access = list(7, 9, 39, 55);
+ name = "Experimental Surgery";
+ id_tint = "expsurgery"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"fnG" = (
+/obj/item/stack/tile/floor/freezer,
+/obj/random/trash,
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"fnO" = (
+/obj/machinery/iv_drip,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color/corner{
+ color = "#00B8B2";
+ dir = 1
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"fnX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/research{
+ name = "Toxins Storage";
+ req_access = list(8)
+ },
+/obj/structure/sign/warning/nosmoking_2{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxstorage)
+"fop" = (
+/obj/structure/table/steel,
+/obj/item/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/rectape/random,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"foz" = (
+/obj/item/stack/rods,
+/obj/item/stack/tile/floor/freezer,
+/obj/random/trash,
+/obj/item/reagent_containers/food/snacks/badrecipe,
+/obj/item/stack/rods,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"foQ" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"fpg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"fpr" = (
+/obj/structure/dummystairs{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/ragecage)
+"fpC" = (
+/obj/structure/table/glass,
+/obj/item/bodybag/cryobag,
+/obj/item/radio{
+ frequency = 1487;
+ icon_state = "med_walkietalkie";
+ name = "Medbay Emergency Radio Link"
+ },
+/obj/item/radio{
+ frequency = 1487;
+ icon_state = "med_walkietalkie";
+ name = "Medbay Emergency Radio Link"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/dormfirstaid)
+"fqX" = (
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"frb" = (
+/obj/random/vendordrink{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"frt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Toxins Gas Storage";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxstorage)
+"fry" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 1;
+ name = "Research Delivery Chute"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/borderfloor/cee{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercee,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"frH" = (
+/obj/effect/mist,
+/obj/structure/waterfall/top,
+/obj/structure/fans/tiny,
+/turf/simulated/floor/water/deep/indoors/station,
+/area/crew_quarters/cetus/meteor/pool)
+"frS" = (
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"fsa" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"fsi" = (
+/obj/machinery/atmospherics/unary/engine/bigger{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/spacebus)
+"fsq" = (
+/obj/structure/bed,
+/obj/item/bedsheet/rainbow,
+/obj/random/plushie,
+/turf/simulated/floor/carpet/gaycarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"ftb" = (
+/obj/structure/salvageable/server_os,
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/greengrid,
+/area/maintenance/cetus/tech)
+"ftc" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"ftk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"ftI" = (
+/obj/structure/toilet/item{
+ dir = 1
+ },
+/obj/item/bikehorn/rubberducky/pink,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"fua" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/pond)
+"fuf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway1)
+"fuy" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-5"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"fuP" = (
+/obj/structure/stairs/spawner/east,
+/obj/structure/railing,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"fuS" = (
+/obj/random/mob/mouse,
+/obj/effect/landmark/event_spawn/morphspawn,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"fvl" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/camera/network/exploration{
+ c_tag = "EXP - D1 Lockers";
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"fvo" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/mineral/cetus,
+/area/security/cetus/meteor/forensic)
+"fvN" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ color = "#989898"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"fvO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"fwd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/medical/morgue/cetus)
+"fwq" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/meteor/pool)
+"fwC" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/spacebus)
+"fwY" = (
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"fxH" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"fyH" = (
+/obj/machinery/door/firedoor/multi_tile/glass,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/cetus/meteor/atriumdeck1)
+"fzy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "8-10"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"fzO" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"fzZ" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"fAF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"fAP" = (
+/turf/simulated/wall/r_wall{
+ can_open = 1
+ },
+/area/maintenance/cetus/meteor/jraft)
+"fAR" = (
+/obj/structure/table/rack/shelf,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 14
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/armory)
+"fAZ" = (
+/obj/structure/table/hardwoodtable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/cash_register/civilian{
+ dir = 1;
+ pixel_y = -3;
+ pixel_x = 7
+ },
+/obj/item/deskbell{
+ pixel_y = -1;
+ pixel_x = -10
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "bar";
+ layer = 3.1;
+ name = "Bar Shutters"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"fBa" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/syringe_cartridge{
+ pixel_x = 9;
+ pixel_y = 5
+ },
+/obj/item/syringe_cartridge{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/syringe_cartridge{
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/obj/item/syringe_cartridge{
+ pixel_y = 5
+ },
+/obj/item/syringe_cartridge{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/syringe_cartridge{
+ pixel_x = 7;
+ pixel_y = 5
+ },
+/obj/item/syringe_cartridge{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/item/syringe_cartridge{
+ pixel_x = 12;
+ pixel_y = 5
+ },
+/obj/item/syringe_cartridge{
+ pixel_x = 10;
+ pixel_y = 5
+ },
+/obj/item/syringe_cartridge{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/syringe_cartridge{
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/obj/item/syringe_cartridge{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/syringe_cartridge{
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/obj/item/gun/launcher/syringe{
+ pixel_y = -4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"fBk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"fBn" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"fBo" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"fBw" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/airlock)
+"fBJ" = (
+/obj/machinery/oxygen_pump/anesthetic,
+/turf/simulated/wall,
+/area/medical/Surgery_Room_2)
+"fBW" = (
+/mob/living/simple_mob/vore/pitcher{
+ pixel_y = 5;
+ pixel_x = -3
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"fCw" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"fCB" = (
+/obj/structure/table/standard,
+/obj/machinery/cash_register/civilian{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"fCK" = (
+/obj/machinery/alarm{
+ pixel_y = 25;
+ name = "N-alarm"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"fCZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"fDg" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/item/flashlight/lamp/green{
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/food/drinks/bottle/absinthe,
+/obj/item/reagent_containers/food/drinks/bottle/absinthe,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"fDI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"fDO" = (
+/turf/simulated/wall/r_wall,
+/area/medical/Surgery_Room_2)
+"fDQ" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/button/ignition{
+ id = "mixingsparker";
+ pixel_x = -25;
+ pixel_y = -5
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "mixvent";
+ name = "Mixing Room Vent Control";
+ pixel_x = -25;
+ pixel_y = 5;
+ req_access = list(7)
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"fEa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"fEw" = (
+/obj/machinery/atmospherics/binary/pump{
+ name = "Waste to Scrubbers";
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain/cee,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxins)
+"fFj" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"fFm" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/enginemonitor)
+"fFy" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"fFQ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/old_tile/green,
+/area/maintenance/cetus/janitorial)
+"fFR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"fGl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"fGU" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"fHj" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = -26
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"fHp" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/engine_setup/coolant_canister,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"fHv" = (
+/obj/structure/table/rack/holorack,
+/obj/item/extrapolator{
+ pixel_x = -5;
+ pixel_y = 12
+ },
+/obj/item/extrapolator{
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - D1 Virology Lab";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"fHw" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"fIH" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/chapel/chapel_morgue/cetus/crypt)
+"fIZ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"fJb" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"fJp" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/corner/pink/diagonal,
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/button/remote/blast_door{
+ id = "Maintcook";
+ name = "Kitchen Gate";
+ pixel_x = -12;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"fJx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/armory)
+"fJD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Dlux Stylez"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/cetus/stylist)
+"fKd" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"fKf" = (
+/obj/structure/ghost_pod/manual/lost_drone/dogborg,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/maintenance/cetus/mechbay)
+"fKl" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/space,
+/area/space)
+"fKs" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/forensic)
+"fKy" = (
+/obj/machinery/drone_fabricator/unify{
+ pixel_y = -1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/greengrid,
+/area/engineering/cetus/meteor/dronefab)
+"fKV" = (
+/obj/machinery/replicator/clothing,
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/greengrid,
+/area/maintenance/cetus/tech)
+"fMe" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 10
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineRadiatorViewport2";
+ name = "Engine Radiator Viewport Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"fMn" = (
+/obj/machinery/atmospherics/valve/digital{
+ dir = 1;
+ name = "Emergency Cooling Valve 2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"fMv" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/vr)
+"fMY" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"fNe" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/atrium)
+"fNB" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"fOk" = (
+/obj/structure/closet/athletic_swimwear,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"fOy" = (
+/obj/machinery/vending/medical,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"fOD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"fPe" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/boxing/gym,
+/area/security/cetus/meteor/brig)
+"fPk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/ab_StripBar)
+"fPq" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/mechbay)
+"fPQ" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/machinery/disposal{
+ pixel_y = -7
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/cozyobservatory)
+"fPS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"fQl" = (
+/obj/structure/closet/coffin,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"fQu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "Dorms10";
+ name = "Room 10"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"fQv" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"fQx" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"fQL" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"fRh" = (
+/obj/machinery/access_button{
+ dir = 1;
+ name = "interior access button";
+ req_access = list(13);
+ pixel_y = -24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Incomplete Engine 2";
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"fRu" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/random/pottedplant,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"fRB" = (
+/obj/structure/salvageable/bliss{
+ pixel_x = -2
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/greengrid,
+/area/maintenance/cetus/tech)
+"fRG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/radio/intercom/department/medbay{
+ dir = 1;
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"fSx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"fSN" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
+/obj/machinery/atmospherics/pipe/zpipe/up/supply,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/disposalpipe/up,
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"fSR" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/water/deep/indoors/station,
+/area/engineering/cetus/meteor/refinery)
+"fTm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/ab_StripBar)
+"fTC" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"fTQ" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/meter,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxins)
+"fUb" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"fUf" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"fUz" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner/green,
+/area/maintenance/cetus/meteor/pond)
+"fUK" = (
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"fUR" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/structure/sign/nosmoking_2/burnt{
+ pixel_x = 28
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"fVH" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"fVN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/medical{
+ name = "Private Medical Practice";
+ req_one_access = null
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/abmedical)
+"fWd" = (
+/obj/structure/bed/chair/sofa/green{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/green,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"fWK" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"fWU" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"fXd" = (
+/obj/machinery/light/broken{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"fXe" = (
+/obj/structure/table/standard,
+/obj/item/tabloid,
+/obj/item/tabloid,
+/obj/item/tabloid,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"fXm" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/star)
+"fXV" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Core 3";
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"fYJ" = (
+/obj/structure/stairs/spawner/east,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"fZQ" = (
+/obj/effect/floor_decal/rust,
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"gah" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/stylist)
+"gau" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"gaG" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"gaJ" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"gaL" = (
+/obj/machinery/rnd/production/protolathe/department/medical,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"gaT" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"gcG" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/boxing/gym,
+/area/security/cetus/meteor/brig)
+"gcK" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"gec" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/gravgen)
+"gee" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"gej" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"gen" = (
+/obj/structure/closet/bombcloset,
+/obj/item/suit_cooling_unit,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"geT" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"geY" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed,
+/turf/simulated/floor/tiled/old_tile/green,
+/area/maintenance/cetus/janitorial)
+"gfb" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/meteor/pool)
+"gfm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/cetus/meteor/forensic)
+"gfC" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"gfE" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"gfG" = (
+/obj/structure/flora/mushroom,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/pond)
+"ggY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/cetus/dormfirstaid)
+"ghs" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"ghG" = (
+/turf/simulated/wall/r_lead,
+/area/engineering/cetus/meteor/gravgen)
+"gij" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"gil" = (
+/obj/machinery/airlock_sensor{
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/toxtest)
+"giw" = (
+/obj/effect/floor_decal/corner/lightorange/diagonal,
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/stylist)
+"giN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"giO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/catwalk,
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"gjh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"gji" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/cetus/meteor/toxins)
+"gjn" = (
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"gjZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/fiftyspawner/floor,
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"gkc" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/bar)
+"gkC" = (
+/obj/machinery/reagent_refinery/vat{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"gkT" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/dormfirstaid)
+"gkV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"gkW" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"gll" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/hallway1)
+"gly" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"glP" = (
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"glT" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"gma" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/aftstar)
+"gmP" = (
+/obj/item/storage/secure/safe{
+ pixel_x = 5;
+ pixel_y = -26
+ },
+/obj/effect/step_trigger/teleporter/randomspawn{
+ teleport_z = 8;
+ teleport_x = 138;
+ teleport_y = 177
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"gnf" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"gnm" = (
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"gnL" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"gnO" = (
+/obj/structure/cable{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/star)
+"gnS" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxins)
+"goP" = (
+/obj/structure/table/standard,
+/obj/item/radio/intercom/department/medbay{
+ pixel_y = -22
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/multitool,
+/obj/item/defib_kit/loaded,
+/obj/item/defib_kit/jumper_kit/loaded{
+ pixel_y = -3
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"goR" = (
+/obj/machinery/light,
+/turf/simulated/floor/carpet/purple,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"goS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"gpb" = (
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/meteor/atrium)
+"gpo" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"gpv" = (
+/obj/item/radio/intercom{
+ desc = "Talk... listen through this.";
+ name = "Station Intercom (Brig Radio)";
+ pixel_y = -21;
+ wires = 7
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"gpy" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/meteor/pool)
+"gpz" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_y = -30;
+ dir = 1
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"gpA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Showers"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"gpE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"gqe" = (
+/obj/structure/table/steel,
+/obj/random/drinkbottle,
+/obj/item/pickaxe,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"grn" = (
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"gry" = (
+/obj/structure/table/standard,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/binoculars{
+ pixel_y = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/item/radio/intercom/department/security{
+ dir = 4;
+ icon_override = "secintercom";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"grT" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"gsW" = (
+/obj/structure/bed/chair/sofa/right/orange{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"gtm" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"gtq" = (
+/obj/structure/table/bench/standard,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"gtS" = (
+/obj/structure/kitchenspike,
+/obj/item/mecha_parts/chassis/ripley,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/mechbay)
+"gtY" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/maintenance/ab_Kitchen)
+"guc" = (
+/obj/effect/floor_decal/industrial/loading/blue{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_2)
+"guh" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/effect/floor_decal/corner/pink/diagonal,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"guK" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"gvc" = (
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"gvj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"gvk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"gvp" = (
+/obj/effect/landmark/start/ghost_roles,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"gvz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"gvA" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/table/bench/padded,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/meteor/hallway2)
+"gvD" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"gvO" = (
+/obj/structure/closet/emcloset,
+/obj/item/storage/briefcase/inflatable,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"gvZ" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clamp,
+/obj/item/clamp,
+/obj/item/clamp,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"gwd" = (
+/obj/structure/bed/pillowpile/green,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/cozyobservatory)
+"gws" = (
+/obj/random/trash,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"gwQ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/bar)
+"gwW" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"gxf" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"gxv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/plating,
+/area/medical/cetus/dormfirstaid)
+"gxw" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"gxK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"gyd" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"gyn" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/yellow/border,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"gzS" = (
+/obj/structure/dancepole,
+/obj/random/junk,
+/turf/simulated/floor/tiled/eris/dark/violetcorener,
+/area/maintenance/ab_StripBar)
+"gAc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"gAm" = (
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Ejection Port";
+ dir = 10
+ },
+/turf/space,
+/area/space)
+"gAs" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"gBb" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"gBD" = (
+/obj/structure/table/bench/standard,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"gBO" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/fishery)
+"gBV" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/stairwelljr1)
+"gDD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"gDI" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge{
+ scrub_id = "Toxins"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxstorage)
+"gEn" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"gEw" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"gEz" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"gEQ" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/pump_relay,
+/turf/simulated/floor/water/indoors/station,
+/area/engineering/cetus/meteor/refinery)
+"gET" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/briefcase/crimekit{
+ pixel_y = -1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/cetus/meteor/forensic)
+"gFI" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/lounge)
+"gFO" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "6-9"
+ },
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"gFW" = (
+/obj/machinery/atmospherics/valve/digital{
+ dir = 8;
+ name = "Hot Loop Waste Gas Ejection Switch"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"gGd" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"gGu" = (
+/obj/structure/bed,
+/obj/item/bedsheet/pirate,
+/turf/simulated/floor/carpet/purcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"gHh" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"gHk" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"gHH" = (
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/foremed)
+"gHS" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/cetus/atriumd1)
+"gIk" = (
+/obj/structure/disposalpipe/tagger{
+ name = "Space";
+ sort_tag = "Space"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"gIx" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"gIP" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/item/flashlight/lamp/green{
+ pixel_y = 14
+ },
+/obj/random/action_figure,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"gJj" = (
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"gJw" = (
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"gJA" = (
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/star)
+"gKh" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"gKm" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 8;
+ start_pressure = 4559.63
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"gKo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"gKq" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"gLa" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"gLJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"gLL" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"gMh" = (
+/obj/item/storage/box/injectors,
+/obj/item/storage/box/old_syringes{
+ pixel_y = -4;
+ pixel_x = 5
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"gMo" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"gMI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"gML" = (
+/obj/machinery/computer/cryopod{
+ layer = 3.3;
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"gMW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"gNb" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"gNZ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"gON" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ dir = 8;
+ pixel_x = 7;
+ pixel_y = -4
+ },
+/obj/item/reagent_containers/food/drinks/shaker{
+ pixel_y = 7;
+ pixel_x = -7
+ },
+/obj/item/reagent_containers/food/drinks/shaker{
+ pixel_y = -2;
+ pixel_x = -7
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"gPA" = (
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/chapel/chapel_morgue/cetus/crypt)
+"gPW" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ brightness_color = "#DA0205";
+ brightness_power = 1;
+ brightness_range = 5;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"gQm" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D1 Central Ring 7"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"gQu" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"gQD" = (
+/obj/random/trash,
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"gQL" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel/random{
+ pixel_y = 13
+ },
+/obj/item/towel/random{
+ pixel_y = 17
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"gQO" = (
+/obj/structure/reagent_dispensers/foam,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"gRk" = (
+/obj/machinery/button/remote/blast_door{
+ id = "Prison Gate";
+ name = "Prison Lockdown";
+ pixel_x = -37;
+ pixel_y = 6;
+ req_access = list(2);
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"gRw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"gRy" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"gRH" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"gRX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"gSe" = (
+/obj/effect/floor_decal/corner{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"gSy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"gSz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"gTF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"gTK" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"gUL" = (
+/obj/structure/table/rack/steel,
+/obj/item/material/twohanded/baseballbat{
+ pixel_y = 9
+ },
+/obj/item/material/twohanded/baseballbat/metal{
+ pixel_y = 3
+ },
+/obj/item/material/twohanded/baseballbat{
+ pixel_y = -3
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"gVj" = (
+/obj/structure/table/rack/shelf,
+/obj/item/storage/backpack/parachute{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/storage/backpack/parachute{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/backpack/parachute{
+ pixel_x = -6;
+ pixel_y = -6
+ },
+/obj/item/storage/backpack/parachute{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/backpack/parachute{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed1{
+ dir = 8;
+ name = "NanoMed Wall";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"gVF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/medical,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"gVG" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/pool)
+"gVP" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"gWd" = (
+/obj/structure/outcrop/phoron,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"gXd" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"gXD" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"gYa" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"gYu" = (
+/obj/machinery/computer/arcade/clawmachine,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"gYy" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30;
+ pixel_x = -25
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/armory)
+"gYT" = (
+/obj/structure/bed/chair/wood,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"gZc" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Dorms hallway 1";
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"gZl" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"gZm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"gZn" = (
+/turf/simulated/floor/water/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"gZo" = (
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"gZw" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/armory)
+"hau" = (
+/obj/structure/table/hardwoodtable,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/meteor/starsec)
+"haN" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/smartfridge/drying_rack,
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"haQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"haV" = (
+/obj/machinery/vending/wardrobe/chemdrobe,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"haX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"hbe" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/hallway)
+"hbg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/medical/cetus/dormfirstaid)
+"hbp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"hbB" = (
+/obj/structure/table/rack,
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/shield/riot,
+/obj/item/melee/baton/loaded,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/brigdoor/eastright{
+ name = "Riot Armor"
+ },
+/obj/item/clothing/gloves/arm_guard/riot,
+/obj/item/clothing/suit/armor/riot/alt,
+/obj/item/clothing/shoes/leg_guard/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/shield/riot,
+/obj/item/melee/baton/loaded,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"hbQ" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "expsurgery"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/carbonresearch)
+"hbR" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"hcE" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/meteor/starsec)
+"hcQ" = (
+/obj/structure/stairs/spawner/north{
+ color = "#aa5f61"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"hcR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"hcS" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"hcW" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger{
+ pixel_x = -5
+ },
+/obj/machinery/recharger{
+ pixel_x = 5
+ },
+/obj/item/radio/intercom/department/security{
+ dir = 1;
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"hcX" = (
+/obj/machinery/vending/loadout/accessory,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"hdb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = -12;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxstorage)
+"hdL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"heq" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/structure/sign/warning/airlock{
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ req_one_access = list(11, 24, 47, 5);
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"hev" = (
+/obj/structure/table/steel,
+/obj/random/mainttoyloot,
+/obj/random/mainttoyloot,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"heO" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"heW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"heX" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/structure/table/standard,
+/obj/machinery/button/remote/airlock{
+ id = "observation";
+ name = "Observation Cell Bolts";
+ specialfunctions = 4;
+ pixel_x = 4
+ },
+/obj/machinery/button/flasher{
+ name = "Observation Cell Flasher";
+ id = "observation";
+ pixel_y = 8;
+ pixel_x = -5
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/obj/machinery/button/windowtint/multitint{
+ id = "observation";
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"hfB" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/carbonresearch)
+"hfN" = (
+/obj/structure/table/steel,
+/obj/item/storage/bag/circuits/basic,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"hfP" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"hgk" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"hgB" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Central Access"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway1)
+"hgJ" = (
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"hgU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/stairwelljr1)
+"hhe" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red,
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"hhB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"hhG" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"hiH" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"hiV" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/refinery)
+"hiY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/meteor/hallway1)
+"hjQ" = (
+/obj/structure/lattice,
+/obj/item/material/shard,
+/turf/space,
+/area/space)
+"hjR" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"hkh" = (
+/obj/structure/table/bench/wooden,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/machinery/light_switch{
+ pixel_y = -13;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/machinery/button/remote/airlock{
+ id = "Dorms4";
+ name = "Bolt Control";
+ pixel_x = 24;
+ specialfunctions = 4;
+ dir = 8;
+ pixel_y = 12
+ },
+/obj/item/flashlight/lamp/green{
+ pixel_y = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"hkl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"hkn" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"hko" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/obj/structure/closet/secure_closet/bar,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/bar)
+"hkD" = (
+/turf/simulated/wall/r_wall,
+/area/medical/cetus/atriumd1)
+"hkJ" = (
+/obj/random/trash,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/aftstar)
+"hkT" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"hlc" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/structure/closet/walllocker/emerglocker/north,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"hlV" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/light/small,
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"hmv" = (
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/computer/drone_control{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"hmQ" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"hmX" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"hnf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"hnk" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"hny" = (
+/obj/effect/mist,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Pool 3";
+ dir = 9
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/water/deep/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"hod" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -15;
+ pixel_y = -3
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -29;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"hom" = (
+/obj/structure/closet/l3closet/virology,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Xenobiology 6";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"hos" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/corner{
+ color = "#00B8B2";
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/medical2,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"hoE" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"hoG" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"hoI" = (
+/obj/structure/closet,
+/obj/item/storage/backpack/dufflebag/syndie/ammo,
+/obj/item/handcuffs/legcuffs,
+/obj/item/handcuffs,
+/obj/random/maintenance/security,
+/obj/item/pickaxe,
+/obj/item/clothing/glasses/meson,
+/obj/item/tank/emergency/oxygen/double,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"hoR" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"hoY" = (
+/obj/effect/floor_decal/industrial/arrows/blue,
+/obj/effect/floor_decal/industrial/arrows/blue{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(67)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/shuttle/spacebus)
+"hpf" = (
+/obj/machinery/vending/nukie,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"hpD" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"hpV" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"hqA" = (
+/obj/structure/railing/overhang/grey,
+/obj/item/stool/padded{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/ab_StripBar)
+"hqR" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"hra" = (
+/obj/structure/table/standard,
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 28;
+ pixel_x = -4
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 28;
+ pixel_x = 4
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 24;
+ pixel_x = 10
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 24;
+ pixel_x = -10
+ },
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/obj/item/makeover,
+/obj/item/haircomb,
+/obj/effect/floor_decal/corner/lightorange/diagonal,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/stylist)
+"hri" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"hrL" = (
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"hsb" = (
+/obj/random/obstruction,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"hsj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/forensic)
+"hsm" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/corner/red{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"htp" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"htL" = (
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(43,67)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable{
+ icon_state = "5-9"
+ },
+/turf/simulated/floor/plating,
+/area/hangar/cetus/explolocker)
+"htO" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/vr)
+"htS" = (
+/obj/machinery/doorbell_chime{
+ id_tag = "sc-ChimeMed";
+ name = "Medbay doorbell chime"
+ },
+/turf/simulated/wall,
+/area/medical/Surgery_Room_1)
+"htU" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"htW" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"hue" = (
+/mob/living/simple_mob/vore/pitcher,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/pond)
+"huk" = (
+/obj/structure/sign/poster{
+ dir = 1
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/dentist)
+"huo" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/turf/space,
+/area/space)
+"huA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/atriumdeck1)
+"huB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"huI" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D1 Central Ring 1";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"huY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Icemelt Access"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/cetus/meteor/refinery)
+"hvn" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Dormitories"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"hvI" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2,
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "5-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"hwf" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"hwg" = (
+/obj/machinery/shield_diffuser,
+/obj/machinery/power/grounding_rod,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"hwp" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"hwq" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"hwW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"hyl" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 1;
+ name = "exterior access button";
+ pixel_y = 8;
+ pixel_x = 29
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"hyp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"hyr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/table/rack/shelf,
+/obj/random/toolbox,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/item/pickaxe,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"hys" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"hyy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "lounge_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/meteor/lounge)
+"hyN" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"hyT" = (
+/obj/random/junk,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/aftstar)
+"hyW" = (
+/obj/structure/sign/warning/nosmoking_2,
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/toxins)
+"hza" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"hzd" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"hAq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_one_access = list(27, 47, 5, 6)
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/morgue/cetus)
+"hAr" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/jointsubstation)
+"hAx" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/random/contraband,
+/obj/random/contraband,
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"hBi" = (
+/obj/structure/table/glass,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"hBk" = (
+/obj/structure/lattice,
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Cooling";
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"hBs" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"hBD" = (
+/turf/simulated/mineral/cetus,
+/area/security/cetus/meteor/forensic)
+"hBG" = (
+/obj/random/maintenance/clean,
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"hBK" = (
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{
+ frequency = 1381;
+ id_tag = "cryostorage_shuttle";
+ name = "cryostorage controller";
+ req_access = list(19);
+ tag_door = "cryostorage_shuttle_hatch";
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"hBX" = (
+/obj/structure/sign/hangar/one,
+/turf/simulated/wall/r_wall,
+/area/hangar/cetus/two)
+"hDH" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"hDT" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/sign/warning/nosmoking_2{
+ pixel_y = 29
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"hEc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"hEe" = (
+/obj/structure/table/steel,
+/obj/item/pickaxe/drill,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"hEM" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/corner{
+ color = "#00B8B2";
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/medical2,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"hFK" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/spray/cleaner,
+/turf/simulated/floor/tiled/old_tile/green,
+/area/maintenance/cetus/janitorial)
+"hFQ" = (
+/obj/structure/disposalpipe/tagger{
+ name = "Medbay";
+ sort_tag = "Medbay"
+ },
+/obj/machinery/door/window/northleft{
+ name = "Medbay Delivery"
+ },
+/obj/machinery/conveyor{
+ id = "explomail"
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"hFW" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/item/flashlight/lamp/green{
+ pixel_y = 14
+ },
+/obj/random/contraband,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"hGh" = (
+/obj/machinery/vending/cola,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"hGq" = (
+/obj/fiftyspawner/rods,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"hGH" = (
+/obj/machinery/light/broken{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"hGJ" = (
+/obj/machinery/door/airlock/glass_research{
+ req_one_access = list(43,67);
+ name = "Exploration Hangar"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"hHm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"hHn" = (
+/obj/structure/closet/crate/medical{
+ name = "surgery crate"
+ },
+/obj/item/storage/firstaid/surgery,
+/obj/item/storage/firstaid/surgery,
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"hHs" = (
+/obj/machinery/door/blast/multi_tile/three_tile_hor{
+ name = "Engine Room";
+ id = "engineroomaccess"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"hHv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/research{
+ req_one_access = list(7, 9, 39, 55);
+ name = "Xenobiology"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"hHz" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"hHK" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/star)
+"hHR" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"hIg" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"hIk" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"hIn" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/armory)
+"hIo" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/old_tile/green,
+/area/maintenance/cetus/janitorial)
+"hIH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"hIO" = (
+/obj/effect/floor_decal/corner/lightorange/diagonal,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/stylist)
+"hIQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/lounge)
+"hIY" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "5-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"hJd" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"hJp" = (
+/obj/machinery/computer/secure_data/detective_computer{
+ dir = 4;
+ pixel_y = -3;
+ pixel_x = 5
+ },
+/turf/simulated/wall/r_wall,
+/area/security/cetus/meteor/forensic)
+"hJz" = (
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"hJC" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"hKX" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/brig)
+"hLl" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"hLy" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/deskbell{
+ pixel_y = 1;
+ pixel_x = -7
+ },
+/obj/machinery/cash_register/civilian{
+ dir = 4;
+ pixel_y = 6;
+ pixel_x = -3
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "barpool";
+ layer = 3.1;
+ name = "Bar Shutters"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"hLC" = (
+/obj/machinery/deployable/barrier,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ color = "#989898";
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"hLY" = (
+/obj/random/trash,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"hMb" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"hMj" = (
+/obj/structure/table/steel,
+/obj/item/paper_bin{
+ pixel_y = -6
+ },
+/obj/item/pen/red{
+ pixel_x = -1;
+ pixel_y = -9
+ },
+/obj/item/pen/blue{
+ pixel_x = 3;
+ pixel_y = -5
+ },
+/obj/item/camera{
+ name = "Autopsy Camera";
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/morgue/cetus)
+"hMX" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"hNu" = (
+/obj/structure/bed/chair/sofa/green{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/carpet/green,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"hNy" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/restrooms)
+"hNE" = (
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"hOs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"hOE" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"hOF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"hOH" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ dir = 8;
+ pixel_x = 29;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"hPN" = (
+/obj/structure/table/reinforced,
+/obj/random/maintenance/research,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"hPT" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/random/forgotten_tram,
+/obj/structure/dogbed,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/tech)
+"hPY" = (
+/obj/structure/table/hardwoodtable,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"hQa" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"hQi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ color = "White";
+ dir = 4
+ },
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -15;
+ pixel_y = -3
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/medical/morgue/cetus)
+"hQm" = (
+/obj/structure/closet/wardrobe/mixed,
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"hQJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"hRk" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/meteor/pond)
+"hRr" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"hRu" = (
+/obj/structure/closet,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/random/maintenance/engineering,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22;
+ pixel_x = -30
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"hRQ" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"hSg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/toxins)
+"hSh" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"hSi" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"hSz" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/space,
+/area/space)
+"hST" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"hTa" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"hTf" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"hTN" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/simulated/floor/carpet/retro,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"hUe" = (
+/obj/item/stool/padded{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/ab_StripBar)
+"hUl" = (
+/obj/structure/girder,
+/obj/structure/grille,
+/obj/effect/floor_decal/spline/fancy{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/security/cetus/meteor/brig)
+"hUm" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"hUx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"hUG" = (
+/obj/machinery/computer/transhuman/resleeving{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"hUL" = (
+/obj/structure/table/steel,
+/obj/item/nif/glitch/bad{
+ pixel_x = 3
+ },
+/obj/item/surgical/surgicaldrill{
+ pixel_y = 5
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/tech)
+"hUN" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"hVe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"hVA" = (
+/obj/structure/sign/directions/engineering/reactor{
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/atriumdeck1)
+"hVL" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"hVN" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/ammo_magazine/ammo_box/b12g/flash,
+/obj/item/ammo_magazine/ammo_box/b12g/beanbag,
+/obj/item/ammo_magazine/ammo_box/b12g/beanbag,
+/obj/item/ammo_magazine/ammo_box/b12g/stunshell,
+/obj/item/ammo_magazine/ammo_box/b12g/stunshell,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/window/brigdoor/westright{
+ name = "Ammo"
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"hWb" = (
+/obj/structure/table/rack,
+/obj/item/melee/energy/spear{
+ lcolor = "#FF0000"
+ },
+/obj/item/melee/energy/spear{
+ lcolor = "#FF0000"
+ },
+/obj/item/melee/energy/spear{
+ lcolor = "#FF0000"
+ },
+/obj/item/melee/energy/spear{
+ lcolor = "#FF0000"
+ },
+/obj/machinery/door/window/brigdoor/southleft{
+ name = "Energy Spears"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"hWd" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"hWC" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "barpool";
+ layer = 3.1;
+ name = "Bar Shutters"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"hWE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"hWI" = (
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/shieldgen)
+"hWQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"hWR" = (
+/obj/structure/table/bench/glass,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"hXj" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxstorage)
+"hXw" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/mineral/cetus,
+/area/security/cetus/meteor/forensic)
+"hXR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"hYu" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/green,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"hYv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/hallway1)
+"hYA" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"hYB" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 3;
+ pixel_x = 34
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -9;
+ pixel_x = 34
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = -26
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = 26;
+ pixel_y = 25
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/armory)
+"hZc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"hZw" = (
+/obj/machinery/optable,
+/obj/machinery/light/small/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/dentist)
+"hZx" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"hZN" = (
+/obj/structure/closet{
+ name = "Prisoner's Locker"
+ },
+/obj/item/flame/lighter/zippo,
+/obj/random/cigarettes,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"hZQ" = (
+/obj/item/geiger/wall/north,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "EngineVent";
+ name = "Reactor Ventillatory Control";
+ pixel_x = -32;
+ req_access = list(10)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"hZR" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"iab" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"iag" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Toxins Lab 1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"iaB" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/corner{
+ color = "#00B8B2";
+ dir = 8
+ },
+/obj/random/medical,
+/obj/random/medical,
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"iaJ" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"iaW" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"iba" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/barricade,
+/turf/simulated/floor/plating,
+/area/medical/medbay_primary_storage)
+"ibf" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 1
+ },
+/turf/space,
+/area/space)
+"ibF" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/cetus/meteor/carbonresearch)
+"ibJ" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"ibK" = (
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravgen)
+"ibM" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/table/rack/shelf,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"icg" = (
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Solitary Confinement";
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"ici" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/item/stool{
+ color = "grey";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"icp" = (
+/obj/machinery/vending/wardrobe/medidrobe,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"ics" = (
+/obj/structure/table/steel,
+/obj/item/storage/box/brainzsnax{
+ pixel_x = 8;
+ pixel_y = 5
+ },
+/obj/item/storage/box/brainzsnax{
+ pixel_x = -7;
+ pixel_y = 5
+ },
+/obj/item/storage/box/brainzsnax{
+ pixel_y = 17
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Surgery Storage";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"icw" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/starsec)
+"icE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"idC" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/meteor/aftstar)
+"idJ" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/machinery/fitness/heavy/lifter,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/simulated/floor/boxing/gym,
+/area/security/cetus/meteor/brig)
+"idX" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"ien" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"iey" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/d1port)
+"ieK" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/loot_pile/surface/medicine_cabinet/fresh{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"ieM" = (
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(43,67)
+ },
+/turf/simulated/floor/plating,
+/area/hangar/cetus/two)
+"ieO" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"ieV" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/hallway)
+"ieZ" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"ifi" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 6
+ },
+/turf/simulated/floor/water/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"igf" = (
+/obj/effect/mist,
+/turf/simulated/floor/water/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"igh" = (
+/obj/structure/table/rack/shelf,
+/obj/random/forgotten_tram,
+/obj/random/tool/powermaint,
+/obj/random/maintenance/misc,
+/obj/random/mainttoyloot/nofail,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/box/remote_scene_tools/voodoo,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"igG" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sink{
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"igJ" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"igZ" = (
+/obj/machinery/atmospherics/omni/mixer{
+ tag_east = 2;
+ tag_north = 1;
+ tag_north_con = 0.5;
+ tag_west = 1;
+ tag_west_con = 0.5;
+ use_power = 0
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxins)
+"ihh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"ihn" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"ihv" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{
+ dir = 1;
+ frequency = 1379;
+ id = "engine_airlock_pump"
+ },
+/obj/machinery/airlock_sensor{
+ id_tag = "eng_al_c_snsr";
+ pixel_y = 11;
+ pixel_x = -25
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/airlock)
+"ihQ" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"iii" = (
+/obj/structure/outcrop/iron,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"iiR" = (
+/obj/structure/table/woodentable,
+/obj/item/material/kitchen/utensil/spoon{
+ pixel_x = 2
+ },
+/obj/item/material/kitchen/utensil/fork,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"ijw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "st1_tint"
+ },
+/turf/simulated/floor/plating,
+/area/medical/Surgery_Room_1)
+"ijC" = (
+/obj/random/maintenance/morestuff,
+/obj/structure/table/standard,
+/obj/random/tech_supply/component,
+/obj/item/destTagger,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"ijJ" = (
+/obj/structure/grille,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"iks" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"ilk" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/simulated/floor/carpet/purple,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"ill" = (
+/obj/structure/cryofeed{
+ dir = 2
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/brig)
+"ilV" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/purple{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"imc" = (
+/obj/item/inflatable/door/torn,
+/obj/item/material/shard,
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"imr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"imK" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/cetus/meteor/toxins)
+"inQ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Bar Backroom";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/bar)
+"ioI" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/random/plushie,
+/obj/random/translator,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"ipb" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"ipd" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"iqB" = (
+/obj/structure/bed/chair/wood,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"iqC" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"irp" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"irA" = (
+/turf/simulated/wall/r_wall,
+/area/chapel/chapel_morgue/cetus/crypt)
+"irW" = (
+/obj/machinery/computer/ship/navigation,
+/turf/simulated/floor/tiled/dark,
+/area/shuttle/spacebus)
+"irY" = (
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"isU" = (
+/obj/machinery/atmospherics/binary/pump/high_power{
+ dir = 1
+ },
+/obj/effect/engine_setup/pump_max,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"iti" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"itl" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"itJ" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravgen)
+"itP" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"itT" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"iun" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"iuw" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/medical/cetus/atriumd1)
+"iuA" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"iuU" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"ivh" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass2,
+/area/maintenance/cetus/meteor/pond)
+"ivA" = (
+/obj/structure/closet/firecloset/full,
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"ivV" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"iws" = (
+/obj/structure/table/rack/shelf,
+/obj/item/stock_parts/capacitor{
+ pixel_x = -6;
+ pixel_y = 13
+ },
+/obj/item/stock_parts/capacitor{
+ pixel_x = -6;
+ pixel_y = 13
+ },
+/obj/item/stock_parts/capacitor{
+ pixel_x = -6;
+ pixel_y = 13
+ },
+/obj/item/stock_parts/capacitor{
+ pixel_x = -6;
+ pixel_y = 13
+ },
+/obj/item/stock_parts/manipulator{
+ pixel_x = 4;
+ pixel_y = 12
+ },
+/obj/item/stock_parts/manipulator{
+ pixel_x = 4;
+ pixel_y = 12
+ },
+/obj/item/stock_parts/manipulator{
+ pixel_x = 4;
+ pixel_y = 12
+ },
+/obj/item/stock_parts/manipulator{
+ pixel_x = 4;
+ pixel_y = 12
+ },
+/obj/item/stock_parts/matter_bin{
+ pixel_x = -5;
+ pixel_y = -10
+ },
+/obj/item/stock_parts/matter_bin{
+ pixel_x = -5;
+ pixel_y = -10
+ },
+/obj/item/stock_parts/matter_bin{
+ pixel_x = -5;
+ pixel_y = -10
+ },
+/obj/item/stock_parts/matter_bin{
+ pixel_x = -5;
+ pixel_y = -10
+ },
+/obj/item/stock_parts/micro_laser{
+ pixel_x = 6;
+ pixel_y = -10
+ },
+/obj/item/stock_parts/micro_laser{
+ pixel_x = 6;
+ pixel_y = -10
+ },
+/obj/item/stock_parts/micro_laser{
+ pixel_x = 6;
+ pixel_y = -10
+ },
+/obj/item/stock_parts/micro_laser{
+ pixel_x = 6;
+ pixel_y = -10
+ },
+/obj/item/stock_parts/console_screen{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stock_parts/console_screen{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stock_parts/console_screen{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stock_parts/console_screen{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stock_parts/scanning_module{
+ pixel_x = -4
+ },
+/obj/item/stock_parts/scanning_module{
+ pixel_x = -4
+ },
+/obj/item/stock_parts/scanning_module{
+ pixel_x = -4
+ },
+/obj/item/stock_parts/scanning_module{
+ pixel_x = -4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"iwP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"ixe" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/ab_StripBar)
+"ixl" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"ixo" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"ixv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/atriumdeck1)
+"ixz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"ixE" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"ixR" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Core 5";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"ixT" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/window/brigdoor/northleft{
+ req_access = list();
+ req_one_access = list(7, 9, 39, 55);
+ name = "Test Chamber"
+ },
+/obj/machinery/door/window/brigdoor/southleft{
+ req_one_access = list(7, 9, 39, 55);
+ req_access = list();
+ name = "Test Chamber"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"iyr" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel/random{
+ pixel_y = 13
+ },
+/obj/item/towel/random{
+ pixel_y = 17
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"iys" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"iyF" = (
+/obj/fiftyspawner/floor,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"izi" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/cetus/meteor/brig)
+"izq" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color/full/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"izw" = (
+/obj/item/geiger/wall/west,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"izN" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/water/deep/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"iAi" = (
+/obj/machinery/computer/general_air_control{
+ frequency = 1445;
+ name = "Engine Exhaust Monitoring";
+ sensors = list("engine_exhaust_sensor"="Engine Exhaust Sensor")
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"iAT" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Engine Access";
+ req_one_access = list(11)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/enginemonitor)
+"iAX" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 8;
+ id = "baby_mammoth_blast";
+ name = "window blast shield"
+ },
+/turf/simulated/floor,
+/area/shuttle/spacebus)
+"iBc" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 5
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"iBg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"iBq" = (
+/obj/structure/loot_pile/surface/medicine_cabinet/fresh{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"iBK" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"iCw" = (
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"iDf" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/powered/pump,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxins)
+"iDj" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"iDm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"iEv" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"iEN" = (
+/obj/machinery/microscope,
+/obj/structure/table/reinforced,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/cetus/meteor/forensic)
+"iFy" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/portsec)
+"iGe" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"iGr" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/aftstar)
+"iGx" = (
+/obj/machinery/atmospherics/portables_connector,
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxins)
+"iGA" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/airlock)
+"iGG" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"iGU" = (
+/obj/structure/bed/pillowpile/teal,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/cozyobservatory)
+"iHt" = (
+/obj/effect/landmark/event_spawn/morphspawn,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/starsec)
+"iHy" = (
+/obj/item/storage/firstaid/surgery{
+ pixel_y = 7
+ },
+/obj/structure/table/standard,
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -36;
+ name = "Morgue Delivery Chute";
+ color = "green"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"iHZ" = (
+/obj/random/obstruction,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"iIf" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/circuitboard/scan_consolenew{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/scan_consolenew{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/med_data{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/med_data{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/cloning{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/cloning{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/clonepod{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/clonepod{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/clonescanner{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/clonescanner{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/resleeving_control{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/obj/item/circuitboard/resleeving_control{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"iIF" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/space,
+/area/space)
+"iII" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "The Crap Shack"
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"iJy" = (
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/obj/item/towel/random{
+ pixel_y = 11
+ },
+/obj/item/towel/random{
+ pixel_y = 11
+ },
+/obj/item/towel/random{
+ pixel_y = 11
+ },
+/obj/item/towel/random{
+ pixel_y = 11
+ },
+/obj/item/towel/random{
+ pixel_y = 11
+ },
+/obj/item/towel/random{
+ pixel_y = 11
+ },
+/obj/item/towel/random{
+ pixel_y = 11
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"iJM" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"iJS" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/fishery)
+"iKd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"iKO" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/boxing/gym,
+/area/security/cetus/meteor/brig)
+"iLm" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/atrium)
+"iLL" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/vr)
+"iLO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"iMG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"iMH" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"iMJ" = (
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/cozyobservatory)
+"iMM" = (
+/obj/machinery/doorbell_chime{
+ id_tag = "sc-ChimeMed";
+ name = "Medbay doorbell chime"
+ },
+/turf/simulated/wall,
+/area/medical/medbay_primary_storage)
+"iMN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/bar)
+"iMR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/closet{
+ name = "materials"
+ },
+/obj/item/stack/material/plastic{
+ max_amount = 25
+ },
+/obj/item/stack/material/plastic{
+ max_amount = 25
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/plasteel{
+ amount = 10
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/mechbay)
+"iNf" = (
+/obj/structure/bed/pillowpilefront/green,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/cozyobservatory)
+"iNi" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"iNo" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"iNR" = (
+/obj/random/trash,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/meteor/starsec)
+"iNU" = (
+/obj/item/clothing/glasses/meson/prescription,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jrfore)
+"iNV" = (
+/obj/machinery/light,
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"iNZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"iOh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 1
+ },
+/obj/item/radio/intercom/department/medbay{
+ pixel_y = -24
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"iOm" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/dummystairs/greyledge,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"iOx" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"iOK" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"iOO" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"iOS" = (
+/obj/machinery/door/airlock/research{
+ name = "Genetics Lab";
+ req_one_access = list(5,47)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/carbonresearch)
+"iOT" = (
+/obj/machinery/vending/hydroseeds,
+/turf/simulated/shuttle/floor/black,
+/area/maintenance/cetus/meteor/pond)
+"iPG" = (
+/obj/machinery/mech_recharger,
+/obj/structure/loot_pile/mecha/ripley,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/redgrid,
+/area/maintenance/cetus/mechbay)
+"iPH" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"iPN" = (
+/obj/random/junk,
+/obj/random/trash,
+/obj/random/mob/mouse,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"iQh" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/effect/engine_setup/pump_max,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"iQm" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"iQn" = (
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/meteor/starsec)
+"iQJ" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"iRx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/cetus/atriumd1)
+"iTy" = (
+/turf/simulated/wall/r_wall,
+/area/security/cetus/meteor/brig)
+"iTF" = (
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"iUi" = (
+/obj/structure/outcrop/iron,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jrfore)
+"iUj" = (
+/obj/structure/table/marble,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "poolside";
+ layer = 3.1;
+ name = "Shutters"
+ },
+/obj/machinery/cash_register/civilian{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/pool)
+"iUx" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/pool)
+"iUI" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"iUO" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"iUT" = (
+/obj/structure/closet,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/random/maintenance/engineering,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"iUX" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/hangar/cetus/two)
+"iVh" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/hallway)
+"iVq" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ dir = 8;
+ pixel_y = -11
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"iVr" = (
+/obj/machinery/optable,
+/turf/simulated/floor/tiled/white,
+/area/medical/morgue/cetus)
+"iVM" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall/r_wall{
+ can_open = 1
+ },
+/area/maintenance/cetus/meteor/central)
+"iVY" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/shieldgen)
+"iWc" = (
+/obj/machinery/door/airlock/maintenance/medical{
+ name = "Dental Office";
+ req_one_access = null;
+ id_tag = "dentist"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/maintenance/abmedical)
+"iWm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/door/blast/gate{
+ dir = 8;
+ name = "Workshop";
+ id = "Maintshop"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/cetus/workshop)
+"iXF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"iXG" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"iXW" = (
+/obj/structure/sign/securearea{
+ desc = "VR-Room under construction, not all of it's features have been implemented yet.";
+ icon_state = "atmos_waste";
+ name = "A warning sign which reads 'UNDER CONSTRUCTION'.";
+ pixel_x = -32
+ },
+/obj/structure/table/bench/steel,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/hallway1)
+"iXY" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"iYh" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_2)
+"iYm" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "6-10"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"iYt" = (
+/obj/structure/closet{
+ name = "Prisoner's Locker"
+ },
+/obj/item/clothing/suit/storage/apron/overalls,
+/obj/item/reagent_containers/food/drinks/bottle/absinthe,
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"iZd" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"iZE" = (
+/obj/structure/bed/chair/sofa/left/orange{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"iZJ" = (
+/obj/effect/floor_decal/corner{
+ dir = 8
+ },
+/obj/item/mmi,
+/obj/item/clothing/accessory/collar/shock,
+/obj/item/clothing/mask/muzzle,
+/obj/item/mindbinder,
+/obj/structure/closet/secure_closet/personal,
+/obj/item/disk/nifsoft/compliance,
+/obj/item/handcuffs/cable/white,
+/obj/item/handcuffs/legcuffs/fake,
+/obj/item/bodysnatcher,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"jar" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"jaE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/medical,
+/obj/structure/dummystairs{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/abmedical)
+"jbH" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"jcM" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"jdl" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"jdm" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/tank/oxygen,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/item/tank/jetpack/carbondioxide{
+ pixel_y = 7;
+ pixel_x = -2
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/item/rig/combat,
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Hardsuit"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"jdq" = (
+/obj/random/trash,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/foremed)
+"jdA" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"jdX" = (
+/obj/structure/table/reinforced,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/storage/box{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/box{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/box{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/destTagger{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/pen{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"jdY" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"jdZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"jec" = (
+/obj/structure/sign/directions/dorms{
+ dir = 1
+ },
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/hallway1)
+"jeF" = (
+/obj/structure/morgue{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue/cetus)
+"jeO" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/light/small,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/morgue/cetus)
+"jeY" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"jfW" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"jfY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"jgn" = (
+/obj/machinery/atmospherics/unary/heat_exchanger,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/industrial/warning/cee,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxins)
+"jgD" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "spacebus";
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"jgH" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red,
+/obj/item/folder/blue{
+ pixel_y = -3
+ },
+/obj/item/folder/yellow{
+ pixel_y = -5
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/pen/red{
+ pixel_y = -7
+ },
+/obj/item/pen/blue{
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/cetus/meteor/forensic)
+"jgL" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"jgV" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"jgZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"jhA" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"jhB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/ab_StripBar)
+"jhE" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/atriumdeck1)
+"jhV" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"jiS" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction/yjunction,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"jjh" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"jjE" = (
+/obj/structure/table/steel,
+/obj/machinery/cell_charger{
+ pixel_y = 5
+ },
+/obj/item/cell/high,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"jjS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/ab_StripBar)
+"jjU" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"jjV" = (
+/obj/structure/kitchenspike,
+/obj/item/mecha_parts/part/ripley_torso,
+/obj/item/mecha_parts/part/ripley_left_arm{
+ pixel_y = 2;
+ pixel_x = -11
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/mechbay)
+"jkb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_access = list(6)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/morgue/cetus)
+"jku" = (
+/obj/machinery/washing_machine,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"jkM" = (
+/obj/structure/closet/coffin,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/chapel/chapel_morgue/cetus/crypt)
+"jkO" = (
+/obj/structure/micro_tunnel/random,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"jkZ" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel/random{
+ pixel_y = 13
+ },
+/obj/item/towel/random{
+ pixel_y = 17
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"jlk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"jlA" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/structure/salvageable/data,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"jmb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"jmi" = (
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"jmS" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/conveyor_switch/oneway{
+ id = "explomail";
+ name = "mail conveyors";
+ pixel_y = 12
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"jmU" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"jmW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"jok" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/access_button{
+ name = "interior access button";
+ pixel_y = 28
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"jon" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"joG" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"joK" = (
+/obj/structure/lattice,
+/obj/structure/table/rack,
+/obj/item/circuitboard/industrial_reagent_pipe{
+ pixel_y = 13
+ },
+/obj/item/circuitboard/industrial_reagent_pipe{
+ pixel_y = 11
+ },
+/obj/item/circuitboard/industrial_reagent_pipe{
+ pixel_y = 9
+ },
+/obj/item/circuitboard/industrial_reagent_pipe{
+ pixel_y = 7
+ },
+/obj/item/circuitboard/industrial_reagent_pipe{
+ pixel_y = 5
+ },
+/obj/item/circuitboard/industrial_reagent_grinder{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/industrial_reagent_hub{
+ pixel_y = 1
+ },
+/obj/item/circuitboard/industrial_reagent_grinder{
+ pixel_y = -1
+ },
+/obj/item/circuitboard/industrial_reagent_furnace{
+ pixel_y = -3
+ },
+/obj/item/circuitboard/industrial_reagent_filter{
+ pixel_y = -5
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/engineering/cetus/meteor/refinery)
+"joN" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"jpg" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ sortType = "Bar";
+ name = "Bar"
+ },
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/railing,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"jpp" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/bordercorner,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"jpI" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"jqh" = (
+/obj/machinery/mass_driver{
+ id = "chapelgun";
+ layer = 2.8
+ },
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/door/window/northleft{
+ req_access = list(22);
+ name = "Mass Driver"
+ },
+/turf/simulated/floor/airless,
+/area/chapel/chapel_morgue/cetus/crypt)
+"jqk" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"jqv" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"jqw" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"jqB" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"jqH" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/fishery)
+"jqJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"jri" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "prisonexit";
+ name = "Brig Exit";
+ req_access = list(2);
+ req_one_access = null
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/brig)
+"jrA" = (
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/rthull,
+/area/shuttle/spacebus)
+"jrY" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"jsv" = (
+/obj/structure/closet/wardrobe/grey,
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"jti" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"jty" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"jtD" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"jtF" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/reagentgrinder{
+ pixel_y = 7;
+ pixel_x = -1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/bar)
+"jtY" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"juL" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"juO" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"jvn" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"jvo" = (
+/obj/machinery/vending/hydroseeds{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"jvF" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"jvO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"jvX" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"jwE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"jwT" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200;
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/meteor/jraft)
+"jwY" = (
+/obj/machinery/oxygen_pump/mobile/anesthetic,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"jxd" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"jxf" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"jxw" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"jxG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/ab_StripBar)
+"jxP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"jyb" = (
+/obj/structure/bed/chair/sofa/corner/green,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/vending/wallmed1{
+ dir = 8;
+ name = "NanoMed Wall";
+ pixel_x = 24
+ },
+/turf/simulated/floor/carpet/green,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"jyz" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Xenobiology 5";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"jyB" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/stand_clear/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/dormfirstaid)
+"jzc" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/light/broken{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"jzE" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"jzL" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window/brigdoor/southright{
+ name = "Energy"
+ },
+/obj/item/gun/energy/laser,
+/obj/item/gun/energy/laser,
+/obj/item/gun/energy/laser,
+/obj/item/gun/energy/laser,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"jAm" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"jAx" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/cozyobservatory)
+"jAE" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_north = 6;
+ tag_west = 1;
+ use_power = 0;
+ tag_east = 2
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"jBG" = (
+/obj/structure/table/gamblingtable,
+/obj/item/deck/egy,
+/turf/simulated/floor/carpet/green,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"jBM" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"jCr" = (
+/obj/machinery/vending/loadout/uniform,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"jCy" = (
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"jCL" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"jDi" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/color/corner{
+ color = "#00B8B2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/machinery/button/windowtint{
+ id = "st2_tint";
+ pixel_x = -11;
+ pixel_y = 22
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -35;
+ pixel_y = 6
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"jDl" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/vr)
+"jDA" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/meteor/vr)
+"jDN" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "toxconveyor";
+ pixel_y = 12
+ },
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Toxins Launch Room";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"jDV" = (
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1/jr)
+"jDX" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"jEe" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/plating,
+/area/security/cetus/meteor/brig)
+"jEy" = (
+/obj/structure/table/standard,
+/obj/random/donkpocketbox,
+/obj/random/nukies_can_legal,
+/obj/random/drinkbottle,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"jEJ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"jER" = (
+/obj/machinery/button/windowtint{
+ id = "lounge_window_tint";
+ pixel_x = 23;
+ pixel_y = -8
+ },
+/obj/machinery/disposal,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Cryo Lounge";
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/lounge)
+"jEW" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/pool)
+"jFe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"jFz" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"jFA" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"jFO" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"jFR" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/blue2,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"jGb" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"jGe" = (
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/obj/effect/floor_decal/corner/lightorange/diagonal,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/stylist)
+"jGf" = (
+/obj/structure/kitchenspike,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/maintenance/ab_Kitchen)
+"jGh" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"jGA" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/rddouble,
+/turf/simulated/floor/carpet/retro,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"jGF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"jGJ" = (
+/obj/structure/table/marble,
+/obj/machinery/cash_register/civilian{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/blast/gate{
+ dir = 4;
+ name = "The Crap Shack";
+ id = "Maintfish"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/fishery)
+"jHG" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"jHN" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/airlock)
+"jId" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Bar"
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"jIg" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22;
+ pixel_x = -30
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/structure/table/woodentable,
+/obj/item/starcaster_news,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"jID" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel/random{
+ pixel_y = 13
+ },
+/obj/item/towel/random{
+ pixel_y = 17
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"jIK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxstorage)
+"jJb" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/engineering/cetus/meteor/enginemonitor)
+"jJk" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/brig)
+"jJD" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"jKi" = (
+/obj/structure/bed/chair/bay/comfy/green{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/shuttle/spacebus)
+"jKm" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"jKr" = (
+/obj/structure/disposalpipe/segment,
+/obj/random/trash,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"jKv" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"jKP" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"jKQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"jLC" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"jLT" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"jLZ" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-6"
+ },
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"jMa" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"jMd" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/random/vendordrink{
+ dir = 8
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D1 Cafeteria 1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"jMg" = (
+/obj/item/radio/intercom/department/medbay{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/morgue/cetus)
+"jMo" = (
+/obj/structure/table/steel,
+/obj/item/storage/toolbox/electrical,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"jMy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int,
+/turf/simulated/floor/plating,
+/area/maintenance/ab_Kitchen)
+"jNg" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"jNq" = (
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"jNs" = (
+/obj/structure/table/woodentable,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/lounge)
+"jNI" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"jNM" = (
+/obj/structure/cable{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"jNX" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"jOe" = (
+/obj/structure/closet/wardrobe/white,
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"jOt" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/engineroom)
+"jOZ" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 15;
+ pixel_x = 10
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 11;
+ pixel_x = 10
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 7;
+ pixel_x = 10
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 3;
+ pixel_x = 10
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = -1;
+ pixel_x = 10
+ },
+/obj/item/reagent_containers/food/drinks/flask/vacuumflask,
+/obj/item/flame/lighter/zippo{
+ pixel_y = -3;
+ pixel_x = -3
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Bar";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/bar)
+"jPG" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"jPN" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"jPT" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"jPU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ locked = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_x = 23;
+ pixel_y = -12;
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"jQp" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"jQs" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"jQt" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/old_tile/green,
+/area/maintenance/cetus/janitorial)
+"jQz" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jraft)
+"jQE" = (
+/obj/structure/table/bench/wooden,
+/obj/item/storage/box/lights/mixed,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/meteor/atrium)
+"jQU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"jRr" = (
+/obj/machinery/door/airlock/glass{
+ name = "Observatory"
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0;
+ anchored = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/cozyobservatory)
+"jRG" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/hallway)
+"jRJ" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/pond)
+"jRM" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"jRT" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/vr)
+"jSa" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"jSg" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"jSB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/aftstar)
+"jTu" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"jTY" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"jUk" = (
+/obj/structure/table/steel,
+/obj/item/paper,
+/obj/item/pen,
+/obj/item/radio/headset,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"jUE" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"jUM" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/space)
+"jUP" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/storage/fancy/egg_box/rotten,
+/obj/item/storage/fancy/egg_box/rotten,
+/obj/item/reagent_containers/food/snacks/badrecipe,
+/obj/item/reagent_containers/food/snacks/badrecipe,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"jUQ" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"jUR" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"jUS" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/random/tool,
+/obj/random/tech_supply,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"jUT" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"jUW" = (
+/obj/machinery/light,
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_StripBar)
+"jUX" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"jVk" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 32
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/structure/cable{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"jVP" = (
+/obj/structure/table/standard,
+/obj/item/beach_ball{
+ pixel_y = 11;
+ pixel_x = -6
+ },
+/obj/item/beach_ball{
+ pixel_y = 2;
+ pixel_x = 2
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"jWo" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"jWz" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Side Stairwell";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/engineering/cetus/meteor/atriumdeck1)
+"jWJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/ab_StripBar)
+"jXm" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 1
+ },
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"jXC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical/polarized{
+ req_one_access = list(7, 9, 39, 55);
+ name = "Ward B";
+ id_tint = "ward2";
+ id_tag = "ward2"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"jXN" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/cozyobservatory)
+"jXP" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"jYz" = (
+/obj/machinery/power/tesla_coil/pre_mapped,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"jYC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"jYG" = (
+/obj/structure/grille,
+/obj/item/material/shard,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"jYZ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"jZl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"jZY" = (
+/obj/structure/table/glass,
+/obj/item/towel/random,
+/obj/item/towel/random,
+/obj/item/towel/random,
+/obj/machinery/alarm{
+ pixel_y = -25;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"kah" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"kap" = (
+/obj/machinery/vending/wardrobe/virodrobe,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"kav" = (
+/obj/structure/stairs/spawner/north,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"kbh" = (
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"kbl" = (
+/obj/machinery/shield_diffuser,
+/obj/machinery/power/tesla_coil/pre_mapped,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"kbt" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"kbA" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"kcg" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"kco" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"kcx" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"kcI" = (
+/obj/machinery/appliance/cooker/oven,
+/obj/effect/floor_decal/corner/pink/diagonal,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"kcO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"kcV" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ locked = 0
+ },
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/morgue/cetus)
+"kdm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"kdp" = (
+/obj/machinery/light/broken{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"kdL" = (
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"kdN" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/meteor/pond)
+"kdO" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock{
+ name = "Bar Backroom";
+ req_access = list(25)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"kef" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"ken" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"kev" = (
+/obj/structure/flora/underwater/plant1,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/pond)
+"kfl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"kfQ" = (
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/starsec)
+"kfS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre 1";
+ req_access = list(45)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Surgery_Room_1)
+"kgj" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge{
+ scrub_id = "Toxins"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"kgv" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"kgw" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"khk" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"khF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"kin" = (
+/obj/structure/stairs/spawner/north,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"kio" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"kiv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"kiw" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"kiA" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"kiL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Armoury Section";
+ req_access = list(3);
+ req_one_access = null
+ },
+/obj/structure/cable/green{
+ icon_state = "5-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"kiP" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/gravgen)
+"kiR" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/machinery/atmospherics/binary/pump,
+/obj/effect/engine_setup/pump_max,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"kiZ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"kjr" = (
+/obj/structure/prop/dominator/blue{
+ pixel_y = 9
+ },
+/obj/structure/table/darkglass,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/meteor/vr)
+"kjv" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"kjx" = (
+/obj/machinery/shower{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/structure/curtain/open/shower/medical,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"kjK" = (
+/obj/machinery/appliance/cooker/fryer,
+/obj/effect/floor_decal/corner/pink/diagonal,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"kjN" = (
+/obj/random/obstruction,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"kkP" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/gravsubstation)
+"kkR" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/starsec)
+"kkY" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/maintenance/ab_Kitchen)
+"kll" = (
+/obj/machinery/atmospherics/valve{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"klu" = (
+/obj/item/stack/rods,
+/obj/random/junk,
+/obj/random/trash,
+/obj/random/trash,
+/obj/item/reagent_containers/food/snacks/badrecipe,
+/obj/item/stack/rods,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"klC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/sec,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/blast/regular{
+ id = "secmaint"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/hallway)
+"klD" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"klN" = (
+/obj/machinery/door/airlock/maintenance/medical{
+ req_one_access = null;
+ name = "Private Medicine Access"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/maintenance/abmedical)
+"klR" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"klZ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"kmc" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/floodlight{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"kml" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"kmq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "Dorms9";
+ name = "Room 9"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"knl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/meteor/hallway1)
+"knr" = (
+/turf/simulated/floor/water/deep/indoors/station,
+/area/maintenance/cetus/meteor/central)
+"knz" = (
+/obj/structure/table/rack/holorack,
+/obj/item/circuitboard/grounding_rod{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/grounding_rod{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/grounding_rod{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/grounding_rod{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/tesla_coil{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/tesla_coil{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/tesla_coil{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/tesla_coil{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/pacman{
+ pixel_y = 2
+ },
+/obj/item/circuitboard/pacman{
+ pixel_y = 2
+ },
+/obj/item/circuitboard/pacman{
+ pixel_y = 2
+ },
+/obj/item/circuitboard/pacman/mrs{
+ pixel_x = -1;
+ pixel_y = -2
+ },
+/obj/item/circuitboard/pacman/super{
+ pixel_x = -2;
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"knJ" = (
+/obj/machinery/vending/blood,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"knQ" = (
+/obj/structure/stairs/spawner/north,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"knW" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"koi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"kpg" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"kpl" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/gaycarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"kps" = (
+/turf/simulated/mineral/cetus/edge,
+/area/asteroid/cetus/d1/jr)
+"kpt" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"kpC" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"kpI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/wall/rthull,
+/area/shuttle/spacebus)
+"kqc" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-9"
+ },
+/obj/random/trash,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"kqp" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Cuffs Locker";
+ req_access = list(2)
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/handcuffs{
+ pixel_y = 9
+ },
+/obj/item/handcuffs{
+ pixel_y = 7
+ },
+/obj/item/handcuffs{
+ pixel_y = 5
+ },
+/obj/item/handcuffs{
+ pixel_y = 3
+ },
+/obj/item/handcuffs{
+ pixel_y = 1
+ },
+/obj/item/handcuffs{
+ pixel_y = -1
+ },
+/obj/item/handcuffs{
+ pixel_y = -3
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"kqq" = (
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"kqr" = (
+/obj/structure/table/darkglass,
+/obj/machinery/chemical_dispenser/bar_alc/full{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_StripBar)
+"kqO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Kitchen"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/ab_Kitchen)
+"kqP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"kqQ" = (
+/obj/machinery/button/remote/blast_door{
+ id = "poolside";
+ name = "Shutters";
+ pixel_y = 28;
+ pixel_x = 26
+ },
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/pool)
+"kru" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"krG" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"ksd" = (
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/pond)
+"ksi" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"ksN" = (
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"ksZ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"ktd" = (
+/obj/structure/closet/crate,
+/obj/fiftyspawner/carpet,
+/obj/fiftyspawner/floor_freezer,
+/obj/fiftyspawner/oracarpet,
+/obj/fiftyspawner/purcarpet,
+/obj/fiftyspawner/retrocarpet_red,
+/obj/fiftyspawner/rods,
+/obj/fiftyspawner/tealcarpet,
+/obj/item/stack/tile/floor/eris/steel/bar_light{
+ amount = 50
+ },
+/obj/item/stack/tile/carpet/gray{
+ amount = 50
+ },
+/obj/item/stack/tile/carpet/gray{
+ amount = 50
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"ktk" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/gravgen)
+"ktm" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"ktO" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"ktS" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ color = "#989898";
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"ktY" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/forensic)
+"kuP" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"kuU" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "JR_D1_Starboard";
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"kvp" = (
+/obj/structure/cable{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"kvz" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"kwc" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"kwg" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/gravgen)
+"kwv" = (
+/obj/effect/mist,
+/obj/structure/waterfall/top,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/meteor/pool)
+"kwK" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"kxq" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"kye" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/rust,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"kzl" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/techstorage)
+"kzp" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_wall,
+/area/hangar/cetus/two)
+"kzK" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"kzO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"kzW" = (
+/turf/simulated/wall/r_wall,
+/area/asteroid/cetus/d1)
+"kBb" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/meteor/hallway1)
+"kBd" = (
+/obj/structure/table/glass,
+/obj/item/sleevemate,
+/obj/item/tool/wrench,
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Treatment Center 5";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"kBp" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/hallway2)
+"kBq" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled/freezer,
+/area/maintenance/ab_Kitchen)
+"kBV" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/turf/space,
+/area/space)
+"kCC" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used to monitor the proceedings inside the test chamber.";
+ name = "Test Chamber Monitor";
+ network = list("Miscellaneous Reseach");
+ pixel_x = 32;
+ pixel_y = -4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"kCE" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue2,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"kCG" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"kDq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"kDA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"kDS" = (
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/obj/structure/sink{
+ pixel_y = 15
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"kEp" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/rnd/production/protolathe/department/security,
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/hallway)
+"kEE" = (
+/obj/random/junk,
+/obj/structure/table/steel,
+/obj/random/pizzabox,
+/obj/random/mainttoyloot,
+/obj/random/maintenance/misc,
+/obj/random/cash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"kEK" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200;
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"kEW" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/medical,
+/obj/structure/curtain/open/privacy,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"kFd" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"kFe" = (
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 16
+ },
+/obj/item/surgical/circular_saw{
+ pixel_y = 6
+ },
+/obj/item/surgical/scalpel{
+ pixel_y = -1
+ },
+/obj/structure/table/rack/shelf,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"kFi" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"kFo" = (
+/obj/machinery/vending/tool{
+ dir = 8;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"kFv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"kFB" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel/random{
+ pixel_y = 13
+ },
+/obj/item/towel/random{
+ pixel_y = 17
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"kFL" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/vr)
+"kGm" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Gravity Generator"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/gravgen)
+"kGu" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"kGD" = (
+/obj/machinery/vr_sleeper,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/vr)
+"kGM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"kGW" = (
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"kHr" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"kHT" = (
+/obj/item/clothing/suit/storage/hooded/hoodie,
+/obj/item/packageWrap,
+/obj/item/destTagger,
+/obj/item/clothing/glasses/sunglasses,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"kIa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/wall/rthull,
+/area/shuttle/spacebus)
+"kIb" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/space,
+/area/space)
+"kIe" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"kIk" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"kIJ" = (
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Waste Handling 2";
+ dir = 1
+ },
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4;
+ name = "Filtered Waste-to-Canister pump"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"kJe" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"kJW" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"kKg" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"kKq" = (
+/obj/item/stool/padded{
+ dir = 4
+ },
+/obj/item/clothing/head/fishing,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"kKv" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"kKC" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"kKI" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"kKN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"kKU" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"kKY" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"kLt" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"kLw" = (
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/smes/buildable/max_charge{
+ RCon_tag = "Substation - Starboard"
+ },
+/obj/item/smes_coil,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"kLN" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"kLS" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/toxin,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Equipment Storage";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"kMh" = (
+/obj/machinery/oxygen_pump/mobile/stabilizer,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"kMX" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "6-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/atriumdeck1)
+"kNf" = (
+/obj/item/inflatable_duck,
+/obj/item/bikehorn/rubberducky{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/meteor/pool)
+"kNm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"kNo" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineBlast";
+ name = "Engine Monitoring Room Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginemonitor)
+"kNN" = (
+/obj/item/modular_computer/console/preset/engineering,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"kNP" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"kOB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"kOG" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"kON" = (
+/obj/machinery/optable,
+/obj/machinery/petrification{
+ dir = 1;
+ pixel_y = 23
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/tech)
+"kPw" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_one_access = list(7,29)
+ },
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/toxtest)
+"kPB" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard,
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4;
+ layer = 3.3;
+ pixel_y = -3;
+ pixel_x = -5;
+ throw_speed = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/morgue/cetus)
+"kPN" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"kQe" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 1
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Operating Theatre 1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"kQp" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/sign/warning/compressed_gas{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxstorage)
+"kQt" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/meteor/starsec)
+"kQR" = (
+/obj/structure/closet/gmcloset,
+/obj/item/glass_jar,
+/obj/item/retail_scanner/civilian,
+/obj/item/retail_scanner/civilian,
+/obj/item/clothing/head/that{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/bar)
+"kQS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"kRx" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Access";
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"kRB" = (
+/turf/simulated/wall,
+/area/hangar/cetus/explolocker)
+"kRK" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/shieldgen)
+"kRV" = (
+/obj/machinery/vending/giftvendor,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"kSh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"kSo" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/green,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"kST" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"kUb" = (
+/obj/structure/table/woodentable,
+/obj/item/material/kitchen/utensil/spoon{
+ pixel_x = 2
+ },
+/obj/item/material/kitchen/utensil/fork,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"kUO" = (
+/obj/structure/table/bench/standard,
+/obj/machinery/light/broken,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/stylist)
+"kVj" = (
+/obj/structure/lattice,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/pond)
+"kVz" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"kVN" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/tesla_coil/pre_mapped,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"kVY" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 17
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/ripperdock)
+"kWp" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"kWu" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"kXb" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"kXd" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"kXr" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"kYn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"kYx" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/stairwelljr1)
+"kYM" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable/orange{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/shieldgen)
+"kYW" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"kZp" = (
+/turf/simulated/wall/r_wall{
+ can_open = 1
+ },
+/area/chapel/chapel_morgue/cetus/crypt)
+"lad" = (
+/obj/machinery/alarm{
+ pixel_y = 25;
+ name = "N-alarm"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"laT" = (
+/obj/random/obstruction,
+/turf/simulated/floor/airless,
+/area/space)
+"laY" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"lbu" = (
+/turf/simulated/floor/tiled/eris/dark/violetcorener,
+/area/maintenance/ab_StripBar)
+"lbw" = (
+/obj/structure/flora/tree/jungle_small,
+/turf/simulated/floor/grass2,
+/area/maintenance/cetus/meteor/pond)
+"lby" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"lbU" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"lca" = (
+/obj/random/trash,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"lcp" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"lcy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"lcT" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"lcY" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/water/deep/indoors/station,
+/area/maintenance/cetus/meteor/central)
+"ldg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical/polarized{
+ req_one_access = list(7, 9, 39, 55);
+ name = "Observation";
+ id_tint = "observation";
+ id_tag = "observation"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"ldj" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/airlock)
+"ldm" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"ldt" = (
+/obj/structure/railing,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"ldP" = (
+/obj/machinery/button/remote/driver{
+ id = "toxinsdriver";
+ pixel_y = 30;
+ pixel_x = 5
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"ldS" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/purple,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"lea" = (
+/obj/machinery/computer/arcade,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/cozyobservatory)
+"leg" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/fishery)
+"lei" = (
+/obj/structure/closet/wardrobe/pjs,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"len" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/space,
+/area/space)
+"lew" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"leL" = (
+/obj/structure/sign/warning/falling{
+ desc = "A sign that warns of potential hazards of mailing personell through the pneumatic delivery system"
+ },
+/turf/simulated/wall/r_wall,
+/area/hangar/cetus/two)
+"leW" = (
+/obj/structure/table/marble,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "poolside";
+ layer = 3.1;
+ name = "Shutters"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/pool)
+"lfy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"lfO" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D1 Central Ring 3";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"lfP" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D1 Utility Atrium 3";
+ dir = 9
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"lgn" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"lgF" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"lgX" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/toxstorage)
+"lhi" = (
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"lhB" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"lhE" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"lhG" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/engine)
+"lhJ" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"lhT" = (
+/obj/structure/bed/chair,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"lil" = (
+/obj/machinery/vending/radren{
+ dir = 4
+ },
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/cozyobservatory)
+"liq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"lit" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/meteor/foremed)
+"liE" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/obj/structure/sign/department/shield{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"ljx" = (
+/obj/structure/closet/crate,
+/obj/item/storage/box/lights/mixed,
+/obj/item/flashlight,
+/obj/item/flashlight,
+/obj/item/radio{
+ frequency = 1487;
+ icon_state = "med_walkietalkie";
+ name = "Medbay Emergency Radio Link"
+ },
+/obj/item/radio{
+ frequency = 1487;
+ icon_state = "med_walkietalkie";
+ name = "Medbay Emergency Radio Link"
+ },
+/obj/item/tool/crowbar/red,
+/obj/item/tool/crowbar/red,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/suit/straight_jacket,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"ljO" = (
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/airless,
+/area/space)
+"lks" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/janitorialcart,
+/obj/structure/mopbucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/soap/nanotrasen,
+/obj/item/mop,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/old_tile/green,
+/area/maintenance/cetus/janitorial)
+"lkV" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"llb" = (
+/obj/structure/table/glass,
+/obj/item/communicator,
+/obj/item/radio/headset,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"llp" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"llO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"llR" = (
+/obj/machinery/iv_drip,
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/item/radio/intercom/department/medbay{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"lmj" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/foremed)
+"lmm" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"lmR" = (
+/obj/random/junk,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"lmV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"lmX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"lnu" = (
+/obj/structure/cryofeed{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"lnI" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/engineering/cetus/meteor/dronefab)
+"loh" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"loi" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Custodial"
+ },
+/turf/simulated/floor/tiled/old_tile/green,
+/area/maintenance/cetus/hallway)
+"lom" = (
+/obj/random/soap,
+/obj/random/soap,
+/obj/structure/table/glass,
+/obj/random/soap,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"lox" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxins)
+"loz" = (
+/obj/machinery/light/broken{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"loF" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"loH" = (
+/obj/structure/closet,
+/obj/item/storage/backpack/dufflebag/syndie,
+/obj/item/clothing/glasses/meson,
+/obj/item/pickaxe,
+/obj/random/maintenance/misc,
+/obj/random/fromList/TFGuns,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"loV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"lpa" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"lpd" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"lpe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"lph" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"lps" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/medical/medbay_primary_storage)
+"lpG" = (
+/obj/machinery/atmospherics/tvalve/digital{
+ dir = 1;
+ name = "Filtered Waste Gas Ejection Switch"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"lpJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"lqe" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hangar/cetus/explolocker)
+"lqg" = (
+/obj/structure/table/rack/shelf,
+/obj/item/reagent_containers/glass/bottle/stoxin{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/glass/bottle/inaprovaline{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/glass/bottle/antitoxin{
+ pixel_x = 8;
+ pixel_y = 7
+ },
+/obj/item/wheelchair{
+ pixel_y = -1;
+ pixel_x = -5
+ },
+/obj/item/wheelchair{
+ pixel_y = -1;
+ pixel_x = 6
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 14
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"lqB" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"lqE" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"lqJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 6
+ },
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"lqT" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"lrz" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"lrI" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/pond)
+"lrM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"lso" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"lst" = (
+/obj/structure/flora/underwater/seaweed3,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/ab_Hydroponics)
+"lsN" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"lto" = (
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"ltT" = (
+/obj/item/stool{
+ color = "grey"
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"ltZ" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"luv" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"lve" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/smes)
+"lvM" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/refinery)
+"lwg" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_east = 2;
+ tag_north = 6;
+ tag_west = 1;
+ use_power = 0
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxins)
+"lwj" = (
+/obj/structure/sink/kitchen{
+ dir = 8;
+ pixel_x = -13
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"lxd" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Carbon Research Stairwell";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"lxk" = (
+/obj/machinery/field_generator,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"lxw" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/toxtest)
+"lxB" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"lxD" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/armory)
+"lxQ" = (
+/obj/structure/closet/athletic_swimwear,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"lxR" = (
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"lxU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"lyH" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"lyJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/atriumdeck1)
+"lyK" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-5"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/cyan{
+ icon_state = "2-5"
+ },
+/obj/machinery/floodlight{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"lyY" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/valve/digital{
+ name = "secondary TEG valve";
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"lzd" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"lzh" = (
+/obj/machinery/gravity_generator/main/station,
+/obj/effect/floor_decal/techfloor/orange,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/gravgen)
+"lzk" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"lzr" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"lAh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/multi_tile/three_tile_hor{
+ color = "grey";
+ id = "tacarmory";
+ name = "Tactical Equipment"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"lAA" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"lAL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"lBf" = (
+/obj/structure/railing/grey,
+/obj/structure/lattice,
+/turf/simulated/floor/water/indoors/station,
+/area/engineering/cetus/meteor/refinery)
+"lBi" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"lBX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"lCa" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/floor/water/indoors/station,
+/area/engineering/cetus/meteor/refinery)
+"lCw" = (
+/turf/simulated/wall,
+/area/engineering/cetus/jointsubstation)
+"lCQ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"lDb" = (
+/obj/machinery/vending/loadout,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"lDe" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 29;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/cetus/meteor/toxtest)
+"lDo" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"lDt" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"lDB" = (
+/obj/structure/lattice,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/space,
+/area/space)
+"lDQ" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/turf/simulated/wall/rthull,
+/area/shuttle/spacebus)
+"lDT" = (
+/obj/machinery/recharge_station,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/maintenance/cetus/mechbay)
+"lEA" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"lEH" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"lEK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/restrooms)
+"lFC" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"lFJ" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-4"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/table/steel,
+/obj/item/multitool{
+ pixel_x = 5
+ },
+/obj/item/clothing/gloves/yellow,
+/obj/item/stack/cable_coil/yellow,
+/obj/item/storage/box/lights/mixed,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/smes)
+"lGr" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"lGv" = (
+/obj/machinery/recharge_station,
+/obj/item/geiger/wall/east,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"lGH" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"lHf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/light/spot{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"lHh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"lHH" = (
+/obj/machinery/shield_capacitor,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/shieldgen)
+"lII" = (
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/spacebus)
+"lJe" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/hallway)
+"lJr" = (
+/obj/structure/table/woodentable,
+/obj/item/paicard,
+/obj/item/taperecorder,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/lounge)
+"lJt" = (
+/obj/machinery/light/small/flicker{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/dark/violetcorener,
+/area/maintenance/ab_StripBar)
+"lJx" = (
+/obj/item/reagent_containers/food/drinks/cans/waterbottle/wataur,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/reagent_containers/food/drinks/cans/waterbottle/wataur,
+/obj/structure/closet/crate,
+/obj/item/storage/box/brainzsnax,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"lJB" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/regular,
+/obj/structure/loot_pile/surface/medicine_cabinet/fresh{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"lJF" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"lJU" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge{
+ scrub_id = "Toxins"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/spline/plain/corner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"lKz" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/shieldgen)
+"lLc" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"lLp" = (
+/obj/structure/disposalpipe/junction/yjunction,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "TEST - Central Primary Hallway 4";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"lLw" = (
+/turf/simulated/floor/water/indoors,
+/area/maintenance/cetus/meteor/central)
+"lLN" = (
+/turf/simulated/floor/reinforced/airless,
+/area/space)
+"lMg" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/engine)
+"lMo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"lMP" = (
+/obj/effect/floor_decal/industrial/hatch,
+/obj/effect/floor_decal/industrial/arrows/blue,
+/obj/effect/floor_decal/industrial/arrows/blue{
+ dir = 1
+ },
+/obj/machinery/atmospheric_field_generator/perma/underdoors,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/spacebus)
+"lNW" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"lOm" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"lPf" = (
+/obj/random/junk,
+/obj/structure/table/standard,
+/obj/random/tech_supply/component,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"lPi" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"lPS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"lQv" = (
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/toxtest)
+"lQw" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"lQC" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"lQV" = (
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/light_switch{
+ pixel_x = -12;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"lRe" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jrfore)
+"lRq" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"lRA" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"lRQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"lSf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"lSm" = (
+/obj/item/cane{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/structure/table/steel,
+/obj/item/cane{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/cane,
+/obj/item/circuitboard/transhuman_clonepod,
+/obj/item/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/rxglasses{
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"lSn" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"lSr" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"lSA" = (
+/obj/structure/loot_pile/surface/medicine_cabinet{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"lTf" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"lUm" = (
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/space)
+"lUn" = (
+/obj/structure/flora/tree/jungle,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/maintenance/cetus/meteor/pond)
+"lUQ" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"lVf" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"lVB" = (
+/obj/machinery/door/airlock/glass{
+ name = "Pool"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/cetus/meteor/pool)
+"lVO" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"lWa" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"lWc" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/iandouble,
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"lWi" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"lWt" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"lWC" = (
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"lWF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"lWQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"lXA" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/lounge)
+"lXK" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/fans/tiny,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"lYv" = (
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"lYE" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"lYH" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/meteor/jraft)
+"lYK" = (
+/obj/effect/landmark/start/ghost_roles,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"lYR" = (
+/obj/structure/sign/directions/dorms{
+ dir = 1
+ },
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/pool)
+"lYY" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"lZf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"lZj" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"lZn" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ locked = 0
+ },
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"lZu" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"lZE" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/random/vendordrink{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"lZX" = (
+/turf/simulated/mineral/cetus,
+/area/hangar/cetus/two)
+"mac" = (
+/obj/item/stool/padded{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/cozyobservatory)
+"maf" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"maL" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"maS" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"mbf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Toxins Lab";
+ req_access = list(7)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxins)
+"mbD" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"mbR" = (
+/obj/machinery/power/supermatter{
+ layer = 4
+ },
+/obj/machinery/mass_driver{
+ dir = 1;
+ id = "enginecore"
+ },
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/cetus/meteor/engineroom)
+"mcx" = (
+/obj/structure/closet/radiation,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"mcY" = (
+/obj/machinery/door/airlock/hatch{
+ id_tag = "engine_electrical_maintenance";
+ name = "SMES Access";
+ req_access = list(10)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/yellow{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/smes)
+"mdc" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"mdv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"mdA" = (
+/obj/structure/table/rack/holorack,
+/obj/item/circuitboard/machine/power_turbine{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/machine/power_turbine{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/turbine_control{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/turbine_control{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/breakerbox{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/breakerbox{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/smes{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/smes{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/smes{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/grid_checker{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/grid_checker{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"mem" = (
+/obj/structure/flora/lily2,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/pond)
+"meC" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/monkeycubes/stokcubes{
+ pixel_y = 8;
+ pixel_x = -8
+ },
+/obj/item/storage/box/monkeycubes/wolpincubes{
+ pixel_y = 4;
+ pixel_x = 3
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"meR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"mfm" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"mfV" = (
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"mgn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"mgq" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/cetus/atriumd1)
+"mgM" = (
+/obj/machinery/pointdefense{
+ id_tag = "PD Main"
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"mgT" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"mgV" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/random/pottedplant,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"mhb" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"mhi" = (
+/obj/structure/flora/underwater/grass4,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/ab_Hydroponics)
+"mhp" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Drone Fabrication";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/dronefab)
+"mhx" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"mhA" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"mia" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/meteor/central)
+"mim" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"miE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"mji" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/cyan{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"mjN" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"mkr" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"mkt" = (
+/obj/machinery/power/grounding_rod,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"mkA" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color/corner/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/cyan{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"mkY" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"mll" = (
+/obj/structure/table/steel,
+/obj/item/storage/toolbox/electrical,
+/obj/random/maintenance/clean,
+/obj/item/storage/fancy/cigarettes/luckystars,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"mlG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Bar"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/ab_StripBar)
+"mml" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"mmF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"mmK" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ color = "#989898";
+ dir = 4
+ },
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"mmR" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/fans/tiny,
+/turf/simulated/floor/water/deep/indoors/station,
+/area/maintenance/cetus/meteor/central)
+"mmY" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/tech)
+"mnH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"mnQ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"moc" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"mol" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/table/bench/steel,
+/obj/item/radio/intercom{
+ desc = "Talk... listen through this.";
+ name = "Station Intercom (Brig Radio)";
+ pixel_y = -21;
+ wires = 7
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Common Brig 3";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/mob/living/simple_mob/metroid/jellybrig,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/cetus/meteor/brig)
+"mon" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"mor" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"moy" = (
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#ffcc00";
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"mpg" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"mpk" = (
+/obj/item/stool{
+ color = "grey"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"mpJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"mpN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/reinforced,
+/area/hangar/cetus/two)
+"mqc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Medbay Storage";
+ req_access = list(5);
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/medbay_primary_storage)
+"mqs" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"mqv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "chopshop";
+ name = "Manmachine Works"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/mechbay)
+"mrC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Tech Storage";
+ req_access = list(19,23);
+ req_one_access = newlist()
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/techstorage)
+"mrH" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/aftstar)
+"mrI" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/obj/effect/engine_setup/pump_max,
+/obj/machinery/door/window/eastleft{
+ name = "Engine Waste";
+ req_one_access = list(10,24)
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/enginewaste)
+"mrV" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"msi" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"msx" = (
+/obj/structure/closet/firecloset/full,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"msy" = (
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"msB" = (
+/obj/item/stool/padded{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/ab_StripBar)
+"msH" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/disposal,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/light/broken{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_y = 12;
+ pixel_x = -22;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/dentist)
+"mte" = (
+/obj/machinery/power/breakerbox/activated,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"mtm" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 1
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"mtp" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/condiment/carton/flour,
+/obj/item/reagent_containers/food/condiment/carton/sugar,
+/obj/item/reagent_containers/food/condiment/enzyme,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/pool)
+"mtt" = (
+/obj/machinery/suit_cycler/security,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"mtx" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"mtM" = (
+/obj/structure/sign/warning/mail_delivery,
+/turf/simulated/wall/r_wall,
+/area/hangar/cetus/two)
+"mtY" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"muj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "8-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"muu" = (
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"muw" = (
+/obj/structure/stairs/spawner/west,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"muC" = (
+/obj/machinery/door/airlock{
+ name = "Unit 3"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"muQ" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"mva" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning,
+/obj/random/trash,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"mvE" = (
+/obj/random/cutout,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"mvZ" = (
+/turf/simulated/wall,
+/area/maintenance/ab_GeneralStore)
+"mwj" = (
+/obj/structure/bed/chair/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/green,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"mwo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"mwq" = (
+/obj/structure/table/rack/shelf,
+/obj/item/storage/backpack/parachute{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/storage/backpack/parachute{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/backpack/parachute{
+ pixel_x = -6;
+ pixel_y = -6
+ },
+/obj/item/storage/backpack/parachute{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/backpack/parachute{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"mwB" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"mwI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical/polarized{
+ req_one_access = list(7, 9, 39, 55);
+ name = "Ward A";
+ id_tag = "ward1";
+ id_tint = "ward1"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"mxs" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"myf" = (
+/obj/machinery/light/small/yellowed,
+/obj/machinery/power/tesla_coil/pre_mapped,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"myU" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jraft)
+"mzf" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ locked = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"mzs" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/cozyobservatory)
+"mzH" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"mzI" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/d1port)
+"mzS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"mzV" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/green/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"mAK" = (
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"mBh" = (
+/obj/structure/cable{
+ icon_state = "5-6"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/closet/toolcloset,
+/obj/item/storage/box/nifsofts_engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"mBr" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"mBx" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxstorage)
+"mBM" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 29;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"mBV" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"mCk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"mCn" = (
+/obj/machinery/optable{
+ name = "Experimental Operating Table"
+ },
+/obj/machinery/oxygen_pump/anesthetic{
+ pixel_x = -28
+ },
+/obj/machinery/button/windowtint/multitint{
+ id = "expsurgery";
+ pixel_y = -30;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"mCs" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"mCw" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"mCB" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"mCD" = (
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Incomplete Engine 5";
+ dir = 9
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"mDs" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"mDF" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/obj/machinery/computer/general_air_control{
+ dir = 8;
+ frequency = 1431;
+ name = "Mixing Chamber Monitor";
+ sensors = list("toxins_mixing_exterior"="Mixing Chamber - Exterior","toxins_mixing_interior"="Mixing Chamber - Interior")
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"mDY" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/simulated/floor/tiled/freezer,
+/area/maintenance/ab_Kitchen)
+"mDZ" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/lounge)
+"mEg" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/shoes/syndigaloshes{
+ pixel_y = -10
+ },
+/obj/item/tank/emergency/oxygen/double{
+ pixel_y = -10
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 3
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 15
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"mFv" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"mFC" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"mFU" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"mGn" = (
+/obj/machinery/vending/boozeomat,
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/bar)
+"mGP" = (
+/obj/structure/cryofeed{
+ dir = 4;
+ pixel_x = -31
+ },
+/obj/machinery/vr_sleeper,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/vr)
+"mHj" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"mHk" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"mHm" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = -4
+ },
+/obj/item/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 7;
+ pixel_y = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 30
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -35;
+ pixel_y = 6
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"mHK" = (
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"mHP" = (
+/turf/simulated/floor/plating,
+/area/maintenance/ab_StripBar)
+"mHR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"mIm" = (
+/obj/structure/ladder/up,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"mIA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"mJa" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"mJc" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"mJn" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"mJo" = (
+/obj/structure/table/rack/shelf,
+/obj/item/seeds/random,
+/obj/random/material/refined,
+/obj/random/unidentified_medicine/scientific,
+/obj/random/flashlight,
+/obj/random/maintenance/research,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/morestuff,
+/obj/random/fromList/TFGuns,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"mJI" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/table/bench/steel,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 32
+ },
+/turf/simulated/floor/boxing/gym,
+/area/security/cetus/meteor/brig)
+"mJT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"mJU" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"mJX" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"mKC" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/cetus/meteor/brig)
+"mKN" = (
+/obj/structure/closet/l3closet,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"mKQ" = (
+/obj/machinery/optable,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_2)
+"mLv" = (
+/obj/machinery/reagent_refinery/reactor{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"mLO" = (
+/obj/structure/table/standard,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"mLV" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/structure/fitness/punchingbag{
+ pixel_x = -17
+ },
+/turf/simulated/floor/boxing/gym,
+/area/security/cetus/meteor/brig)
+"mMj" = (
+/turf/simulated/floor/plating/eris/under,
+/area/crew_quarters/cetus/meteor/atrium)
+"mMB" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"mMW" = (
+/obj/machinery/sleep_console,
+/turf/simulated/floor/tiled/white,
+/area/shuttle/spacebus)
+"mNa" = (
+/turf/simulated/wall/r_wall,
+/area/medical/Surgery_Room_1)
+"mNi" = (
+/obj/machinery/vending/hydronutrients/brig{
+ dir = 1;
+ name = "NutriMax Lite"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"mNl" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/meteor/central)
+"mNH" = (
+/obj/effect/landmark{
+ name = "JoinLateCryo"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"mOu" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24;
+ pixel_y = -2
+ },
+/obj/machinery/light_switch{
+ pixel_y = -13;
+ pixel_x = -22;
+ dir = 8
+ },
+/obj/machinery/button/remote/airlock{
+ id = "Dorms7";
+ name = "Bolt Control";
+ pixel_x = -24;
+ specialfunctions = 4;
+ dir = 4;
+ pixel_y = 11
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"mOI" = (
+/obj/structure/table/reinforced,
+/obj/random/maintenance/research,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"mOO" = (
+/obj/structure/table/standard,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_y = -30;
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/meteor/hallway2)
+"mPp" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Core 1";
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"mPy" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger{
+ pixel_x = -5
+ },
+/obj/machinery/recharger{
+ pixel_x = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"mPH" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Pool 1";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"mQk" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"mQB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "Dorms7";
+ name = "Room 7"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"mQV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"mRy" = (
+/obj/machinery/atmospherics/valve,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"mRG" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5
+ },
+/obj/structure/curtain/open/shower/medical,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/cetus/meteor/carbonresearch)
+"mRP" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/water/deep/indoors/station,
+/area/maintenance/cetus/meteor/central)
+"mRV" = (
+/obj/machinery/light/broken{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"mSj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/item/stool{
+ color = "grey";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"mSn" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"mSu" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"mSQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/glass_security{
+ name = "Solitary Confinement 1";
+ req_access = list(2);
+ req_one_access = null
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"mTd" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"mTu" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/workshop)
+"mUj" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -15;
+ pixel_y = -3
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -29;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"mVe" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"mWy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"mWF" = (
+/obj/structure/closet/l3closet/security,
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - D1 Brig 2";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"mWJ" = (
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/pond)
+"mWL" = (
+/obj/structure/table/standard,
+/obj/item/stack/cable_coil,
+/obj/item/stack/material/plastic{
+ amount = 2
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"mXr" = (
+/obj/structure/lattice,
+/turf/simulated/floor/plating,
+/area/chapel/chapel_morgue/cetus/crypt)
+"mXE" = (
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ dir = 4;
+ name = "Waste Gas Purge pump";
+ target_pressure = 15000
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"mXO" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/pond)
+"mXW" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/wall/rthull,
+/area/shuttle/spacebus)
+"mYz" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/aftstar)
+"mYS" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"mZo" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/surgery_storage)
+"mZu" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"mZU" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/enginewaste)
+"nai" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"nas" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge{
+ scrub_id = "Toxins"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Toxins Gas Storage";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxstorage)
+"nax" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/item/stool{
+ color = "grey";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"naG" = (
+/obj/structure/cable/cyan{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"nbX" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"ncE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"neb" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Virtual Reality"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/meteor/vr)
+"neI" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"nfp" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"nfC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"nfI" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D1 Central Ring 5";
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"ngj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "st2_tint"
+ },
+/turf/simulated/floor/plating,
+/area/medical/Surgery_Room_2)
+"ngx" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Hallway 3";
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/shieldgen)
+"ngD" = (
+/obj/effect/floor_decal/corner_techfloor_gray{
+ dir = 5
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/meteor/vr)
+"ngN" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/structure/table/bench/steel,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/hallway1)
+"nhj" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"nhn" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"niP" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/mechbay)
+"niU" = (
+/obj/machinery/computer/cryopod/robot{
+ pixel_y = -29
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"njh" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/blast/regular{
+ id = "SupermatterPort";
+ layer = 3.3;
+ name = "Reactor Blast Door";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"njy" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"njz" = (
+/obj/machinery/light/fluorescent,
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"njO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"njU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"njX" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/wheelchair{
+ pixel_y = -1;
+ pixel_x = 6
+ },
+/obj/item/wheelchair{
+ pixel_y = -1;
+ pixel_x = -5
+ },
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"nlb" = (
+/obj/machinery/smartfridge/drying_rack{
+ dir = 8;
+ pixel_x = -4
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/atrium)
+"nlU" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"nlX" = (
+/turf/simulated/wall,
+/area/medical/Surgery_Room_2)
+"nmd" = (
+/obj/item/stool/padded{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"nmG" = (
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod{
+ opacity = 1
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4;
+ opacity = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"nmY" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"nnc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/medbay_primary_storage)
+"nnd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"nng" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/meteor/star)
+"nnl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"nnw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"nnA" = (
+/obj/effect/floor_decal/industrial/stand_clear/yellow,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/cetus/atriumd1)
+"nnE" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/turf/space,
+/area/space)
+"noa" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"noe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"noV" = (
+/obj/machinery/sleep_console,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/dormfirstaid)
+"npi" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/d1port)
+"npk" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Treatment Center 4";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"nps" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"npu" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/hallway)
+"npC" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/hallway2)
+"npF" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxstorage)
+"npX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"nqq" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/lounge)
+"nqx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "virology2_airlock_exterior";
+ locked = 1;
+ name = "Virology Exterior Airlock";
+ req_access = list(39)
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "SC-ALCvirology2";
+ name = "Virology Access Button";
+ req_access = list(39);
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"nqC" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"nqH" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxins)
+"nqP" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"nrq" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Core 2";
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"nrr" = (
+/obj/machinery/vending/fishing,
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/fishery)
+"nrV" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/chapel/chapel_morgue/cetus/crypt)
+"nsu" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"nsH" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"nsJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Lounge"
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/lounge)
+"nti" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"ntl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"ntp" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"ntB" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"ntG" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"ntH" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"ntX" = (
+/obj/machinery/computer/shuttle_control/explore/spacebus,
+/turf/simulated/floor/tiled/dark,
+/area/shuttle/spacebus)
+"nua" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"nuz" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/closet/toolcloset,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/pickaxe/drill,
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"nuG" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ color = "#989898";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"nuX" = (
+/obj/structure/bed/chair/wood,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/purple,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"nvd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"nvC" = (
+/turf/simulated/floor/airless,
+/area/space)
+"nwB" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"nwG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/random/trash,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"nwY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"nxc" = (
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/brig)
+"nxj" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"nxy" = (
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = -9
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"nxD" = (
+/obj/structure/table/steel,
+/obj/item/integrated_electronics/debugger{
+ pixel_x = -5
+ },
+/obj/item/integrated_electronics/wirer{
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"nxE" = (
+/obj/vehicle/train/trolley_tank{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"nxV" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"nxZ" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"nyS" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"nzC" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/meteor/aftstar)
+"nzS" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"nAi" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"nAM" = (
+/obj/effect/floor_decal/rust,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"nBc" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/armory)
+"nBg" = (
+/obj/structure/stairs/spawner/east,
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/stairwelljr1)
+"nBl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"nBy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "virology2_airlock_interior";
+ locked = 1;
+ name = "Virology Interior Airlock";
+ req_access = list(39)
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "SC-ALCvirology2";
+ name = "Virology Access Button";
+ pixel_y = 24;
+ req_access = list(39)
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"nBM" = (
+/obj/structure/table/standard,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Dorms hallway 3";
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/meteor/hallway2)
+"nBZ" = (
+/obj/structure/flora/underwater/grass1,
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/pond)
+"nCd" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"nCi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"nCj" = (
+/obj/machinery/reagent_refinery/grinder,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"nCT" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/atrium)
+"nCX" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineRadiatorViewport2";
+ name = "Engine Radiator Viewport Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"nDg" = (
+/obj/structure/table/steel,
+/obj/item/pickaxe/drill,
+/obj/item/clothing/head/hardhat/old,
+/obj/item/clothing/head/hardhat/old,
+/obj/item/clothing/head/hardhat/old,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"nDk" = (
+/obj/item/inflatable/door/torn,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"nDs" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Chapel Crypt";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"nDI" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ color = "White";
+ dir = 4
+ },
+/turf/simulated/floor/water/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"nDP" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"nDZ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"nEr" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"nEt" = (
+/obj/structure/lattice,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/pond)
+"nEB" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"nET" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"nFk" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"nFR" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"nFT" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"nGu" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/material/minihoe,
+/obj/item/material/knife/machete/hatchet,
+/obj/item/shovel,
+/obj/item/seeds/ambrosiadeusseed,
+/obj/item/seeds/ambrosiadeusseed,
+/obj/item/seeds/ambrosiagaiaseed,
+/obj/item/seeds/ambrosiagaiaseed,
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"nGz" = (
+/obj/machinery/door/airlock{
+ name = "Showers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"nGC" = (
+/obj/structure/morgue{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue/cetus)
+"nGZ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"nHa" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"nHJ" = (
+/obj/structure/table/steel,
+/obj/machinery/requests_console{
+ department = "Tech storage";
+ pixel_x = 30
+ },
+/obj/item/aicard,
+/obj/item/aiModule/reset,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"nHL" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"nIS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"nIW" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 4;
+ name = "Specimen Delivery"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/machinery/door/window/brigdoor/eastright{
+ name = "Specimen Delivery";
+ req_access = list();
+ req_one_access = list(7, 9, 39, 55)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"nIZ" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravgen)
+"nJd" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"nJq" = (
+/obj/structure/stairs/spawner/east,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"nJs" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/cyan{
+ icon_state = "9-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"nJN" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/pink/diagonal,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/random/maintenance/foodstuff,
+/obj/random/coin,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"nJV" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"nKd" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/computer/area_atmos/tag{
+ scrub_id = "Brig";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"nKn" = (
+/obj/structure/cable{
+ icon_state = "5-6"
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Incomplete Engine Smes";
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"nKD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"nKO" = (
+/obj/structure/table/standard,
+/obj/item/clothing/head/fishing,
+/obj/random/maintenance/security,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/morestuff,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"nKR" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"nLb" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/enginewaste)
+"nLq" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"nLw" = (
+/obj/structure/table/glass,
+/obj/item/storage/toolbox/emergency,
+/obj/random/medical/lite,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/dormfirstaid)
+"nLL" = (
+/obj/structure/ladder/up,
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"nLT" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"nMc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"nNw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "8-10"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"nNx" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"nNP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/research{
+ req_one_access = list(7, 9, 39, 55);
+ name = "Carbon Testing Lab"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/carbonresearch)
+"nNR" = (
+/obj/effect/floor_decal/industrial/stand_clear/yellow{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/carbonresearch)
+"nOa" = (
+/obj/machinery/vending/nifsoft_shop{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"nOl" = (
+/obj/structure/table/rack/shelf,
+/obj/random/tool,
+/obj/random/flashlight,
+/obj/random/unidentified_medicine/drug_den,
+/obj/item/clothing/head/fishing,
+/obj/random/maintenance/security,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/clean,
+/obj/random/mainttoyloot/nofail,
+/obj/item/capture_crystal,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"nOq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"nOC" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"nOW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"nPx" = (
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/starsec)
+"nPZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"nQo" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"nQy" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"nQB" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"nQH" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"nQM" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/item/flashlight/lamp/green{
+ pixel_y = 14
+ },
+/obj/random/maintenance/foodstuff,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"nRl" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"nRw" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel/random{
+ pixel_y = 13
+ },
+/obj/item/towel/random{
+ pixel_y = 17
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"nRC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"nRL" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/button/remote/blast_door{
+ id = "genarmory";
+ name = "General Armory Access";
+ pixel_x = 26;
+ pixel_y = -25;
+ req_access = list(3);
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/armory)
+"nSj" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"nSZ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Hallway"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/cetus/meteor/atriumdeck1)
+"nTt" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Showers"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/cetus/meteor/showers)
+"nTu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"nTO" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Master Grid";
+ name_tag = "Master"
+ },
+/obj/structure/cable,
+/obj/structure/cable/blue{
+ icon_state = "6-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"nUi" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jraft)
+"nUv" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Weapons locker";
+ req_access = list(2)
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/clothing/suit/storage/vest/heavy/officer,
+/obj/item/clothing/suit/storage/vest/heavy/officer,
+/obj/item/clothing/suit/storage/vest/heavy/officer,
+/obj/item/clothing/suit/storage/vest/heavy/officer,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"nUy" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"nUO" = (
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/radio{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/radio{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/closet/walllocker_double/kitchen/south{
+ name = "Ration Cabinet"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"nVc" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/drinkbottle,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"nWn" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"nWw" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/obj/item/storage/firstaid/regular,
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"nWV" = (
+/obj/structure/bed/chair/sofa/right/green,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/carpet/green,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"nXa" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"nXi" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/meteor/atrium)
+"nXy" = (
+/obj/structure/table/bench/standard,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/stylist)
+"nXT" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/black,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"nYb" = (
+/obj/random/coin,
+/turf/simulated/floor/tiled/eris/dark/violetcorener,
+/area/maintenance/ab_StripBar)
+"nYe" = (
+/obj/structure/lattice,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"nYf" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"nYA" = (
+/obj/structure/bed/chair/sofa/corner/green{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/green,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"nYI" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"nYU" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"nZz" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"oaa" = (
+/obj/structure/cable/cyan{
+ icon_state = "0-6"
+ },
+/obj/machinery/power/smes/buildable/engine_default{
+ RCon_tag = "Aux Engine - Main"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"oai" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"oap" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"oaO" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"oaZ" = (
+/obj/machinery/light,
+/obj/structure/railing,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"obb" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"obc" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"obe" = (
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"obg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "d1observatory"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/cozyobservatory)
+"obn" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"obG" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/white/border,
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{
+ frequency = 1381;
+ id_tag = "cryostorage_shuttle_berth";
+ name = "cryostorage shuttle berth controller";
+ req_access = list(19);
+ tag_door = "cryostorage_shuttle_berth_hatch";
+ dir = 1;
+ pixel_y = -23
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"obI" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"ocr" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/atriumdeck1)
+"ocx" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"ocy" = (
+/obj/effect/floor_decal/rust,
+/obj/item/towel{
+ color = "#b5651d";
+ name = "brown towel";
+ pixel_y = -8;
+ pixel_x = 5
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"ocz" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"ocA" = (
+/obj/structure/lattice,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"ocC" = (
+/obj/structure/table/rack/holorack,
+/obj/item/circuitboard/grounding_rod{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/grounding_rod{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/grounding_rod{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/grounding_rod{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/tesla_coil{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/tesla_coil{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/tesla_coil{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/tesla_coil{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/pacman{
+ pixel_y = 2
+ },
+/obj/item/circuitboard/pacman{
+ pixel_y = 2
+ },
+/obj/item/circuitboard/pacman{
+ pixel_y = 2
+ },
+/obj/item/circuitboard/pacman/mrs{
+ pixel_x = -1;
+ pixel_y = -2
+ },
+/obj/item/circuitboard/pacman/super{
+ pixel_x = -2;
+ pixel_y = -6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"ocI" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = -30
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxstorage)
+"oda" = (
+/obj/machinery/floodlight{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"ods" = (
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/space)
+"odw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Pool"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/cetus/meteor/pool)
+"odR" = (
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/gravgen)
+"oey" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - D2 Genetics Lab";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"ofd" = (
+/obj/structure/table/rack/holorack,
+/obj/item/circuitboard/solar_control{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/solar_control{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/solar_control{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/solar_control{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/machine/rtg{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/machine/rtg{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/machine/rtg/advanced{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/machine/reg_c{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/machine/reg_c{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/machine/reg_d{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/machine/reg_d{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"ofj" = (
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/effect/floor_decal/industrial/arrows/blue,
+/obj/effect/floor_decal/industrial/arrows/blue{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"oga" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"ogp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ locked = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"ogE" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"ohe" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"ohT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"oic" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"oix" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/obj/random/junk,
+/obj/structure/micro_tunnel/random,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/meteor/starsec)
+"oiH" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"ojg" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"oji" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"ojk" = (
+/obj/machinery/computer/operating{
+ name = "Experimental Operating Computer";
+ dir = 4
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Carbon Research Lab";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"ojJ" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"ojR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"ojW" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxins)
+"okp" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/alarm{
+ pixel_y = -25;
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"oks" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/button/ignition{
+ id = "Xenobio";
+ pixel_x = -24;
+ pixel_y = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ pixel_x = -29;
+ req_access = list(47);
+ pixel_y = -5
+ },
+/obj/machinery/button/flasher{
+ name = "Test Chamber Flasher";
+ id = "miscresearch";
+ pixel_y = 4;
+ pixel_x = -33
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"okx" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/cetus/meteor/toxins)
+"okz" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"okG" = (
+/obj/machinery/field_generator,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"olB" = (
+/obj/structure/table/standard,
+/obj/item/paper_bin,
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"olE" = (
+/obj/effect/decal/cleanable/vomit/old,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"olI" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/chemical_dispenser/bar_alc/full{
+ dir = 8;
+ pixel_x = 7;
+ pixel_y = 5
+ },
+/obj/structure/sign/double/barsign{
+ dir = 8;
+ pixel_y = 19;
+ pixel_x = 34
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"olJ" = (
+/obj/structure/ghost_pod/ghost_activated/unified_hole,
+/turf/simulated/shuttle/floor/black,
+/area/maintenance/cetus/meteor/pond)
+"omh" = (
+/obj/structure/disposalpipe/tagger{
+ name = "Joint Research";
+ sort_tag = "Joint Research"
+ },
+/obj/machinery/door/window/northleft{
+ name = "Medsci Joint Research Delivery"
+ },
+/obj/machinery/conveyor{
+ id = "explomail"
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"omn" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply/component,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"one" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"oni" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"onj" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"onJ" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"onZ" = (
+/obj/machinery/space_heater,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"oor" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"ooG" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "D1_fore";
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"ooZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"opa" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/component,
+/obj/random/technology_scanner,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"opl" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"opK" = (
+/obj/machinery/body_scanconsole{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"oqW" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"orc" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 8;
+ id = "baby_mammoth_blast";
+ name = "window blast shield"
+ },
+/turf/simulated/floor,
+/area/shuttle/spacebus)
+"orx" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"orD" = (
+/obj/structure/table/steel,
+/obj/structure/bedsheetbin,
+/obj/item/towel/random,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"orH" = (
+/obj/fiftyspawner/wood,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/meteor/starsec)
+"orI" = (
+/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/hallway)
+"orK" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24;
+ pixel_y = -2
+ },
+/obj/machinery/light_switch{
+ pixel_y = -13;
+ pixel_x = -22;
+ dir = 8
+ },
+/obj/machinery/button/remote/airlock{
+ id = "Dorms8";
+ name = "Bolt Control";
+ pixel_x = -24;
+ specialfunctions = 4;
+ dir = 4;
+ pixel_y = 11
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"osg" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"osY" = (
+/obj/structure/dispenser,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"ota" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"otf" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel/random{
+ pixel_y = 13
+ },
+/obj/item/towel/random{
+ pixel_y = 17
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"otz" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"otD" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jraft)
+"otF" = (
+/obj/effect/landmark/event_spawn/morphspawn,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"otT" = (
+/obj/machinery/recharger,
+/obj/item/cell/device/weapon{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/cell/device/weapon{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/structure/table/standard,
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"oum" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"ouv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/cetus/atriumd1)
+"ouA" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/engineering/cetus/meteor/atriumdeck1)
+"ouG" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/rust,
+/obj/random/mob/mouse,
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"ouO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"ouY" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"ovd" = (
+/obj/effect/floor_decal/rust,
+/obj/random/coin,
+/turf/simulated/floor/plating{
+ icon_state = "dmg1"
+ },
+/area/maintenance/cetus/meteor/pond)
+"ovL" = (
+/obj/machinery/floodlight{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"ovZ" = (
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"owf" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"owA" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/table/steel,
+/obj/random/maintenance/clean,
+/obj/random/tech_supply/component,
+/obj/random/toolbox,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"owC" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"owJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"oxA" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/tank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"oxC" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/loot_pile/surface/medicine_cabinet{
+ pixel_y = 32
+ },
+/obj/structure/catwalk,
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"oyJ" = (
+/obj/structure/table/bench/padded,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/meteor/hallway2)
+"oyU" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"ozQ" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Dorms hallway 2";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"ozV" = (
+/obj/structure/bed/chair/sofa/right/green{
+ dir = 1
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/green,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"oAg" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"oAk" = (
+/obj/machinery/photocopier/faxmachine{
+ department = "Public Office";
+ req_one_access = newlist()
+ },
+/obj/structure/table/woodentable,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/machinery/button/windowtint{
+ id = "lounge_window_tint";
+ pixel_x = 12;
+ pixel_y = 23
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/lounge)
+"oAw" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4;
+ name = "Hot Loop Waste Gas pump"
+ },
+/obj/machinery/door/window/eastright{
+ name = "Engine Waste";
+ req_one_access = list(10,24)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/enginewaste)
+"oBi" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ brightness_color = "#DA0205";
+ brightness_power = 1;
+ brightness_range = 5;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"oBH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"oBI" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/shieldgen)
+"oCO" = (
+/obj/structure/closet/wardrobe/suit,
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"oCU" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"oDh" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"oDl" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"oDm" = (
+/obj/structure/cryofeed,
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"oDF" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"oDL" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = null
+ },
+/obj/item/clothing/accessory/permit/gun/planetside,
+/obj/item/clothing/accessory/permit/gun/planetside,
+/obj/item/clothing/accessory/permit/gun/planetside,
+/obj/item/clothing/accessory/permit/gun/planetside,
+/obj/item/clothing/accessory/permit/gun/planetside,
+/obj/item/clothing/accessory/permit/gun/planetside,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/gun/energy/locked/phasegun,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"oDP" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"oDY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"oEd" = (
+/obj/structure/table/standard,
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2"
+ },
+/obj/machinery/vending/wallmed1{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"oEf" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"oEs" = (
+/obj/structure/sign/warning/nosmoking_2{
+ pixel_y = 26
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"oEt" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"oEV" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"oFm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"oGo" = (
+/obj/machinery/floodlight{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"oGx" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"oGF" = (
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 2;
+ pixel_y = 9
+ },
+/obj/item/clothing/gloves/yellow{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/clothing/gloves/yellow{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/multitool{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/item/multitool{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/structure/table/rack/shelf,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"oGN" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"oGO" = (
+/obj/structure/closet/radiation,
+/obj/item/clothing/suit/radiation/teshari,
+/obj/item/clothing/head/radiation/teshari,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Gravity Generator Entrance";
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"oHm" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"oHX" = (
+/obj/fiftyspawner/hardwood,
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/meteor/starsec)
+"oIP" = (
+/obj/item/beach_ball,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"oIS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"oIW" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/surgery{
+ pixel_y = -1;
+ pixel_x = -2
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 8
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"oJe" = (
+/obj/random/trash,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/star)
+"oJr" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = -35;
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"oJD" = (
+/obj/machinery/smartfridge/drinks,
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/bar)
+"oKc" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"oLj" = (
+/obj/item/storage/box/monkeycubes{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/storage/box/monkeycubes{
+ pixel_y = 4;
+ pixel_x = 5
+ },
+/obj/item/storage/box/monkeycubes{
+ pixel_y = 2;
+ pixel_x = -12
+ },
+/obj/item/storage/box/monkeycubes{
+ pixel_y = -2;
+ pixel_x = -2
+ },
+/obj/item/storage/box/monkeycubes{
+ pixel_y = 11;
+ pixel_x = -4
+ },
+/obj/structure/table/standard,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"oLm" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"oLw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/random/mob/mouse,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/ab_StripBar)
+"oLx" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"oLR" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/turf/simulated/floor/plating,
+/area/security/cetus/meteor/brig)
+"oMd" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"oMk" = (
+/obj/machinery/station_map{
+ dir = 1;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"oMv" = (
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ id_tag = "xenostation2_airlock_control";
+ name = "Xenobiology Access Console";
+ tag_exterior_door = "xenostation2_airlock_exterior";
+ tag_interior_door = "xenostation2_airlock_interior";
+ pixel_y = 27
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"oMz" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"oNa" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/mask/snorkel{
+ pixel_y = -8
+ },
+/obj/item/clothing/mask/snorkel{
+ pixel_y = 5
+ },
+/obj/item/clothing/mask/snorkel{
+ pixel_y = 17
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"oNw" = (
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"oNE" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"oNF" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/green,
+/area/maintenance/cetus/janitorial)
+"oNH" = (
+/obj/machinery/light/small/fluorescent{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"oNM" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 8
+ },
+/turf/space,
+/area/space)
+"oNR" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_wall,
+/area/hangar/cetus/explolocker)
+"oOf" = (
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"oOC" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/engineroom)
+"oOO" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"oPd" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"oPi" = (
+/turf/simulated/mineral/cetus,
+/area/engineering/cetus/meteor/atriumdeck1)
+"oPx" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/engineering/cetus/meteor/refinery)
+"oQf" = (
+/obj/machinery/bodyscanner,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"oQC" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/disposal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"oQE" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"oQU" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply/component,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"oRs" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"oRO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Showers"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"oRQ" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 3;
+ pixel_x = -23
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -9;
+ pixel_x = -23
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/armory)
+"oSd" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"oSo" = (
+/obj/structure/closet/emcloset,
+/obj/item/storage/toolbox/emergency,
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"oSC" = (
+/obj/structure/table/standard,
+/obj/machinery/flasher{
+ id = "ward1";
+ pixel_y = 26
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - JR Ward A";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"oSJ" = (
+/obj/item/stack/tile/floor/dark,
+/turf/simulated/floor/plating,
+/area/chapel/chapel_morgue/cetus/crypt)
+"oSP" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/ragecage)
+"oSU" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"oSZ" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/hallway2)
+"oTh" = (
+/turf/simulated/mineral/cetus/edge,
+/area/chapel/chapel_morgue/cetus/crypt)
+"oTz" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"oTC" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/meteor/foremed)
+"oTJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/structure/loot_pile/maint/technical,
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"oUh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/medical/cetus/atriumd1)
+"oUs" = (
+/obj/effect/floor_decal/corner{
+ dir = 9
+ },
+/obj/machinery/clonepod/transhuman/full,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"oUB" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/purpledouble,
+/turf/simulated/floor/carpet/purple,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"oUD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"oWj" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"oWU" = (
+/obj/structure/cable/orange{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/shieldgen)
+"oXi" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D1 Utility Atrium 1";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"oXp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"oXF" = (
+/obj/structure/frame,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/mechbay)
+"oXX" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"oYv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway1)
+"oYw" = (
+/obj/item/tape/engineering,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"oYU" = (
+/turf/simulated/shuttle/wall/no_join/orange,
+/area/shuttle/cryo/station)
+"oZD" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -15;
+ pixel_y = -3
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -29;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"oZE" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/meteor/central)
+"oZK" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"paX" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"pbe" = (
+/obj/structure/fans/tiny,
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ id_tag = "cryostorage_shuttle_hatch";
+ name = "Cryogenic Storage Hatch"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"pbg" = (
+/obj/structure/waterfall/top,
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/pool)
+"pbt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"pby" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black,
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"pbC" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-9"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/structure/sign/warning/nosmoking_2{
+ pixel_y = -31
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"pbU" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"pca" = (
+/obj/structure/table/darkglass,
+/obj/machinery/cash_register/civilian,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_StripBar)
+"pcU" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/cetus/meteor/engineroom)
+"pdf" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/brigdoor/southleft{
+ name = "Energy"
+ },
+/obj/item/gun/energy/plasmastun,
+/obj/item/gun/energy/gun/burst,
+/obj/item/gun/energy/gun/burst,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"pdi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/armory)
+"pdj" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"pdl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"pdC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/cetus/atriumd1)
+"pdN" = (
+/turf/simulated/wall/r_wall,
+/area/asteroid/cetus/d1/jr)
+"pef" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"peu" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"pfa" = (
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/button/remote/airlock{
+ id = "engine_electrical_maintenance";
+ name = "Door Bolt Control";
+ pixel_x = 21;
+ pixel_y = 1;
+ specialfunctions = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/smes)
+"pfm" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"pfN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/item/stool/padded{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"pgu" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/up{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"pgQ" = (
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"phe" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"pho" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"phr" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/random/junk,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/tiled/old_tile/green,
+/area/maintenance/cetus/janitorial)
+"phP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"piu" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"piK" = (
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/tech)
+"piM" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/tank/oxygen,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/brigdoor/eastright{
+ name = "Eva Suits"
+ },
+/obj/item/tank/jetpack/carbondioxide{
+ pixel_y = 7;
+ pixel_x = -2
+ },
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/item/clothing/suit/space/void/security/riot/alt,
+/obj/item/clothing/head/helmet/space/void/security/riot/alt,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"pjs" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/boxing/gym,
+/area/security/cetus/meteor/brig)
+"pjv" = (
+/obj/machinery/pump,
+/turf/simulated/floor/water/deep/indoors/station,
+/area/engineering/cetus/meteor/refinery)
+"pjz" = (
+/obj/random/trash,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"pjM" = (
+/obj/structure/closet,
+/obj/random/maintenance/foodstuff,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"pjY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"pke" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"pkm" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/cetus/meteor/armory)
+"pkC" = (
+/obj/machinery/door/airlock/maintenance/medical{
+ name = "Private Physician";
+ req_one_access = null;
+ id_tag = "ripperdoc"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/item/tape/police,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/maintenance/abmedical)
+"pkJ" = (
+/obj/machinery/vending/cart,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"pkV" = (
+/obj/structure/disposalpipe/up{
+ dir = 1
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 1
+ },
+/obj/structure/stairs/spawner,
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/forensic)
+"pmu" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"pmO" = (
+/obj/machinery/light/small/fluorescent{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"pns" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"pnC" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"pnK" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"pnU" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"poB" = (
+/obj/structure/closet/emcloset,
+/obj/item/pickaxe,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"poK" = (
+/obj/structure/dummystairs/greyledge{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"ppN" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"pqx" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"pro" = (
+/obj/structure/filingcabinet/chestdrawer{
+ desc = "A large drawer filled with autopsy reports.";
+ name = "Autopsy Reports"
+ },
+/obj/item/storage/box/bodybags{
+ pixel_y = 15
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/morgue/cetus)
+"prE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"prW" = (
+/obj/structure/table/standard,
+/obj/machinery/flasher{
+ id = "ward2";
+ pixel_y = 26
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - JR Ward A";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"pse" = (
+/obj/machinery/light/broken{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"psZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"pth" = (
+/obj/structure/table/darkglass,
+/obj/item/mecha_parts/part/ripley_right_arm,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_StripBar)
+"ptB" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"ptU" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"puC" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/obj/random/forgotten_tram,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/meteor/starsec)
+"puR" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/ab_StripBar)
+"pvb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"pvg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/forensic)
+"pvk" = (
+/obj/structure/closet/wardrobe/orange,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"pvs" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"pvu" = (
+/obj/structure/railing,
+/obj/structure/stairs/spawner/west,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"pwg" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"pwL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/medical/cetus/atriumd1)
+"pxa" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"pxX" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/maintenance/cetus/meteor/portsec)
+"pyf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber,
+/turf/simulated/floor/reinforced,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"pyx" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"pyB" = (
+/obj/machinery/vending/wallmed1{
+ dir = 1;
+ pixel_y = -25;
+ name = "1S-NanoMed"
+ },
+/turf/simulated/floor/tiled/white,
+/area/shuttle/spacebus)
+"pyC" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"pzd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"pAe" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -36;
+ name = "Morgue Delivery Chute";
+ color = "green"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/forensic)
+"pAl" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/bar)
+"pAx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"pAK" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"pBy" = (
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/space)
+"pCK" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/meteor/jrfore)
+"pDb" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"pDj" = (
+/obj/structure/table/rack/shelf,
+/obj/random/tool/powermaint,
+/obj/random/tool,
+/obj/random/maintenance/research,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/medical,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"pDI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/maintenance/cetus/meteor/pond)
+"pDL" = (
+/turf/simulated/wall/rthull,
+/area/shuttle/spacebus)
+"pDN" = (
+/obj/structure/closet/radiation,
+/obj/item/clothing/suit/radiation/teshari,
+/obj/item/clothing/head/radiation/teshari,
+/obj/item/clothing/head/radiation/teshari,
+/obj/item/clothing/suit/radiation/teshari,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"pEg" = (
+/obj/machinery/atmospherics/valve,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = -30
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"pEh" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2"
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"pEG" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/cozyobservatory)
+"pEH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "5-6"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Tech Storage";
+ req_one_access = list(10,23,30,56,70)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/techstorage)
+"pEP" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"pEX" = (
+/obj/structure/stairs/spawner/north,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"pFv" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"pFF" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"pFO" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"pGL" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"pHf" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/random/trash,
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"pHI" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"pIg" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/turf/simulated/mineral/cetus,
+/area/security/cetus/meteor/forensic)
+"pII" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/cetus/atriumd1)
+"pIM" = (
+/obj/structure/table/bench/padded,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32;
+ pixel_x = -1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/meteor/hallway2)
+"pIV" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"pIW" = (
+/obj/machinery/door/airlock{
+ name = "Unit 3"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"pJh" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineWasteViewport1";
+ name = "Engine Waste Viewport Shutter";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"pJi" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway1)
+"pJm" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"pJL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"pJS" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-9"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"pJW" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"pKI" = (
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/ripperdock)
+"pLe" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"pLn" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"pLq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"pLs" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"pLC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"pLI" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"pLP" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/water/indoors/station,
+/area/engineering/cetus/meteor/refinery)
+"pMs" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"pMx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/stairwelljr1)
+"pMP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/engine)
+"pMZ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"pNw" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"pNA" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"pNZ" = (
+/obj/structure/table/rack/holorack,
+/obj/item/circuitboard/telecomms/broadcaster{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/telecomms/broadcaster{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/telecomms/bus{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/telecomms/bus{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/telecomms/exonet_node{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/telecomms/exonet_node{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/telecomms/hub{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/telecomms/hub{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/telecomms/pda_multicaster{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/telecomms/pda_multicaster{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/card{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/obj/item/circuitboard/card{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"pOn" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/sign/deathsposal{
+ pixel_y = -31
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"pOH" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/stylist)
+"pPc" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/meteor/ragecage)
+"pPl" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"pPB" = (
+/obj/machinery/shieldwallgen{
+ anchored = 1;
+ req_access = list(47);
+ state = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"pPJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"pPS" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/machinery/light/broken{
+ dir = 8
+ },
+/obj/item/reagent_containers/food/drinks/bottle/limejuice{
+ pixel_x = -6
+ },
+/obj/item/reagent_containers/food/drinks/bottle/kahlua{
+ pixel_x = -1
+ },
+/obj/item/reagent_containers/food/drinks/bottle/melonliquor{
+ pixel_x = 4
+ },
+/obj/item/reagent_containers/food/drinks/bottle/jager{
+ pixel_x = -3;
+ pixel_y = 11
+ },
+/obj/item/reagent_containers/food/drinks/bottle/gin{
+ pixel_x = -8;
+ pixel_y = 24
+ },
+/obj/item/reagent_containers/food/drinks/bottle/grapejuice{
+ pixel_y = 12;
+ pixel_x = 8
+ },
+/obj/item/reagent_containers/food/drinks/bottle/dr_gibb{
+ pixel_y = 23
+ },
+/obj/item/reagent_containers/food/drinks/bottle/cola{
+ pixel_y = 21;
+ pixel_x = 7
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_StripBar)
+"pPU" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"pQb" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"pQz" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"pQE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"pQF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"pQP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/camera/network/exploration{
+ c_tag = "EXP - D1 Hangar 1";
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"pRi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"pRt" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"pRA" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -25;
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"pRM" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"pRN" = (
+/obj/item/stack/rods,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/chapel/chapel_morgue/cetus/crypt)
+"pRO" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"pSa" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"pSj" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/atrium)
+"pSk" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"pSF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"pSQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"pTj" = (
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/cozyobservatory)
+"pTA" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"pUa" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"pUl" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"pUr" = (
+/obj/structure/cable{
+ icon_state = "6-10"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/star)
+"pUz" = (
+/obj/structure/lattice,
+/obj/random/obstruction,
+/turf/space,
+/area/space)
+"pUV" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"pUW" = (
+/obj/structure/railing/overhang/grey,
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/item/stool/padded{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/ab_StripBar)
+"pVn" = (
+/obj/machinery/optable,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Forensic Autopsies";
+ dir = 9
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/forensic)
+"pVp" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"pVv" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/pond)
+"pVA" = (
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/meteor/pool)
+"pVC" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"pVD" = (
+/obj/machinery/door/window/brigdoor/northright{
+ req_access = list(10);
+ name = "ShieldGen Bypass"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/cable/blue{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"pVR" = (
+/obj/structure/bed/chair/wood,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/retro,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"pVY" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"pWS" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 8;
+ pixel_y = 4;
+ pixel_x = 7
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"pXl" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"pXt" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"pXB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Engine Power";
+ name_tag = "Engine Power"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 1
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"pXP" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"pXT" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"pYo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxstorage)
+"pYr" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 1
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"pYK" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color/red,
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 1
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"pYS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/ab_StripBar)
+"pZg" = (
+/obj/random/cash,
+/obj/random/trash,
+/turf/simulated/floor/tiled/eris/dark/violetcorener,
+/area/maintenance/ab_StripBar)
+"pZn" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"pZq" = (
+/obj/structure/table/rack/holorack,
+/obj/item/circuitboard/pointdefense{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/pointdefense{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/pointdefense{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/pointdefense{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/pointdefense_control{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/pointdefense_control{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/pointdefense_control{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/pointdefense_control{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/batteryrack{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/batteryrack{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/batteryrack{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/gyrotron{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/gyrotron{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/gyrotron_control{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/gyrotron_control{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"pZv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"pZK" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"qaj" = (
+/obj/structure/table/darkglass,
+/obj/machinery/reagentgrinder,
+/obj/item/reagent_containers/food/drinks/shaker,
+/obj/item/reagent_containers/food/drinks/bottle/cream{
+ pixel_y = 1;
+ pixel_x = -12
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_StripBar)
+"qao" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"qaw" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"qaI" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2,
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"qaJ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/random/trash_pile,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"qaQ" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hangar/cetus/two)
+"qaW" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/light/small/flicker,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/shieldgen)
+"qbI" = (
+/obj/structure/closet/crate,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/random/plushie,
+/obj/item/reagent_containers/food/drinks/cans/waterbottle,
+/obj/item/reagent_containers/food/drinks/cans/waterbottle,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"qbK" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"qbP" = (
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/ab_StripBar)
+"qbT" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"qcD" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"qcL" = (
+/obj/structure/lattice,
+/obj/item/stack/rods,
+/turf/space,
+/area/space)
+"qdd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"qdy" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/structure/flora/pottedplant/bamboo,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"qdP" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 9
+ },
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"qeg" = (
+/obj/random/soap,
+/obj/random/soap,
+/obj/structure/table/glass,
+/obj/random/soap,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"qeA" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"qeK" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"qfc" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"qfj" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/meteor/atrium)
+"qfp" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/up{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"qfv" = (
+/obj/effect/landmark/start/ghost_roles,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/foremed)
+"qfy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"qfC" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/starsec)
+"qfZ" = (
+/turf/simulated/wall/r_wall,
+/area/security/cetus/meteor/hallway)
+"qga" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/pink/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/item/material/knife,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"qgd" = (
+/obj/structure/table/glass,
+/obj/item/defib_kit/loaded,
+/obj/item/defib_kit/loaded,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"qgf" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"qgF" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"qgO" = (
+/obj/structure/table/steel,
+/obj/random/contraband,
+/obj/random/drinkbottle,
+/obj/random/maintenance/morestuff,
+/obj/random/maintenance/misc,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"qgV" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_1)
+"qhH" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineWasteViewport1";
+ name = "Engine Waste Viewport Shutter";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"qhR" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"qhX" = (
+/obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{
+ frequency = 1379;
+ id = "tox_airlock_pump"
+ },
+/obj/machinery/air_sensor{
+ frequency = 1431;
+ id_tag = "toxins_mixing_interior";
+ output = 63;
+ pixel_x = -8;
+ pixel_y = -18
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/cetus/meteor/toxins)
+"qij" = (
+/obj/structure/bed/chair/wood/wings,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/meteor/starsec)
+"qiF" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"qiG" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 2;
+ name = "Maintenance Access"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"qiT" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"qjp" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Big Brother is watching.";
+ name = "Brig Monitor";
+ network = list("Prison");
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"qjq" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"qjw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"qjJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"qjO" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"qkf" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/techstorage)
+"qki" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/pool)
+"qkA" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D1 Central Ring 2";
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"qkB" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"qkP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/item/material/shard,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"qlE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "Dorms8";
+ name = "Room 8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"qlJ" = (
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "O- Blood Locker";
+ pixel_y = -32
+ },
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/structure/table/glass,
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"qlS" = (
+/obj/structure/lattice,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"qlU" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_lead,
+/area/engineering/cetus/meteor/gravgen)
+"qmo" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/Surgery_Room_2)
+"qmB" = (
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "prisonentry";
+ name = "Brig Entry";
+ req_access = list(2);
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"qmD" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Core 7"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"qnf" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/meteor/jrfore)
+"qng" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"qnB" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"qnR" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"qnV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"qoa" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"qob" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/button/remote/blast_door{
+ id = "bar";
+ name = "Bar Shutters";
+ pixel_x = -28;
+ pixel_y = 25
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "barpool";
+ name = "Poolside Bar Shutters";
+ pixel_x = -37;
+ pixel_y = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"qoe" = (
+/obj/structure/cable/orange{
+ icon_state = "0-10"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Shield Gen";
+ dir = 6
+ },
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Shield Generator"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/shieldgen)
+"qou" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"qoW" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"qpr" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/ripperdock)
+"qpA" = (
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"qpT" = (
+/obj/random/trash,
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"qqV" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"qqZ" = (
+/obj/effect/floor_decal/corner_techfloor_gray{
+ dir = 5
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/meteor/vr)
+"qrd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"qrF" = (
+/obj/effect/floor_decal/rust,
+/obj/random/trash,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/structure/cable/green,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"qrH" = (
+/obj/structure/outcrop/gold,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"qrJ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"qrO" = (
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"qsd" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/forensic)
+"qsI" = (
+/turf/simulated/floor/water/deep/pool,
+/area/crew_quarters/cetus/meteor/pool)
+"qtu" = (
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/item/pickaxe,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"qtv" = (
+/obj/structure/cable{
+ icon_state = "0-10"
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "Aux Engine - Core"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"qtL" = (
+/obj/structure/table/gamblingtable,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/item/deck/schnapsen{
+ pixel_y = 4;
+ pixel_x = -4
+ },
+/obj/item/deck/tarot,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D1 Primary Stairwell";
+ dir = 5
+ },
+/turf/simulated/floor/carpet/green,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"quq" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"quH" = (
+/obj/structure/disposalpipe/up,
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"qvl" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"qvE" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/random/trash,
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"qvK" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/cozyobservatory)
+"qvL" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/bar)
+"qwc" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/light/small,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"qwd" = (
+/obj/structure/closet/athletic_swimwear,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/clothing/under/swimsuit/streamlined,
+/obj/item/clothing/under/swimsuit/striped,
+/obj/item/clothing/under/swimsuit/risque,
+/obj/item/clothing/under/swimsuit/stripper/mankini,
+/obj/item/clothing/under/swimsuit/stripper/stripper_green,
+/obj/item/clothing/under/swimsuit/stripper/stripper_pink,
+/obj/item/clothing/under/swimsuit/cowbikini,
+/obj/item/clothing/under/swimsuit/earth,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"qwe" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"qww" = (
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/ab_Hydroponics)
+"qwy" = (
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tool,
+/obj/random/tool,
+/obj/random/tool/power,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"qwB" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 1
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"qxn" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"qxo" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"qxv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"qxP" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/circuitboard/mecha_control{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/mecha_control{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/robotics{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/robotics{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/borgupload{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/borgupload{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/aiupload{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/aiupload{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Secure Technical Storage"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"qya" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "5-10"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"qyc" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/dormfirstaid)
+"qyo" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"qyU" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"qzw" = (
+/obj/random/plushielarge,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"qAh" = (
+/obj/structure/sign/directions/evac,
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"qAi" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"qAm" = (
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/central)
+"qAA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/lounge)
+"qBk" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/black,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"qBW" = (
+/obj/structure/table/bench/glass,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"qBX" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"qCa" = (
+/obj/structure/morgue{
+ dir = 2
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue/cetus)
+"qCm" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"qCB" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/decal/cleanable/blood/writing{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"qCC" = (
+/obj/item/roller{
+ pixel_y = -6
+ },
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/structure/table/rack/shelf,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"qDo" = (
+/obj/machinery/appliance/cooker/grill,
+/obj/effect/floor_decal/corner/pink/diagonal,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"qDp" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Starboard Substation Bypass"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS- Starboard";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"qDu" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"qDB" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"qDK" = (
+/obj/structure/table/glass,
+/obj/structure/bedsheetbin,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Amenities"
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"qEi" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/atriumdeck1)
+"qEP" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/atrium)
+"qEQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"qFa" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"qFg" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"qFh" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"qFj" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"qFw" = (
+/turf/space,
+/area/space)
+"qGc" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"qGm" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"qGD" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"qGO" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/corner{
+ color = "#00B8B2";
+ dir = 8
+ },
+/obj/random/medical,
+/obj/random/medical,
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"qGT" = (
+/obj/structure/table/standard,
+/obj/item/nailpolish_remover{
+ pixel_y = 7;
+ pixel_x = 7
+ },
+/obj/item/nailpolish,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/corner/lightorange/diagonal,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/stylist)
+"qHs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"qHv" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/component,
+/obj/random/maintenance/engineering,
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"qHC" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "tacarmory";
+ name = "Armory Tactical Equipment";
+ req_access = list(3);
+ pixel_y = 26;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/armory)
+"qHL" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/meteor/jrfore)
+"qIl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/computer/timeclock/premade/south,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"qIm" = (
+/obj/item/stack/tile/floor/dark,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/chapel/chapel_morgue/cetus/crypt)
+"qIC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "hangar_2";
+ name = "shuttle bay controller";
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"qJm" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"qJt" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"qJC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/catwalk,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/security/cetus/meteor/hallway)
+"qJO" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/personal_shield_generator/belt/security/loaded,
+/obj/item/personal_shield_generator/belt/security/loaded{
+ pixel_y = 6
+ },
+/obj/item/storage/firstaid/combat{
+ pixel_y = 14
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/armory)
+"qJR" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineWasteViewport1";
+ name = "Engine Waste Viewport Shutter";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"qKf" = (
+/obj/machinery/sparker{
+ id = "mixingsparker";
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 4;
+ frequency = 1443;
+ id = "air_in";
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/cetus/meteor/toxins)
+"qKk" = (
+/obj/structure/salvageable/console_broken_os{
+ pixel_x = 2
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/turf/simulated/floor/greengrid,
+/area/maintenance/cetus/tech)
+"qLf" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"qLs" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"qLF" = (
+/obj/machinery/reagent_refinery/filter/alt,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"qLP" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/lounge)
+"qLS" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/masks,
+/obj/item/bodybag/cryobag,
+/obj/random/medical,
+/obj/machinery/light/small/fluorescent{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"qMe" = (
+/obj/structure/morgue{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue/cetus)
+"qMl" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"qMH" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/ragecage)
+"qMY" = (
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"qNt" = (
+/obj/random/pottedplant,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"qNO" = (
+/obj/structure/table/rack,
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"qOt" = (
+/obj/machinery/door/firedoor/multi_tile/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"qOE" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"qOU" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/cryo/station)
+"qOX" = (
+/obj/structure/table/steel,
+/obj/item/storage/box/donkpockets{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/storage/box/cups,
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"qPj" = (
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"qPr" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/obj/structure/cable/yellow{
+ icon_state = "5-9"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"qPv" = (
+/obj/structure/cable/green{
+ icon_state = "4-6"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"qPz" = (
+/obj/random/cash,
+/obj/random/mob/mouse,
+/turf/simulated/floor/tiled/eris/dark/violetcorener,
+/area/maintenance/ab_StripBar)
+"qPN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"qQb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/medical/cetus/atriumd1)
+"qQg" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"qQn" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"qQE" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"qQQ" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"qRr" = (
+/obj/structure/flora/underwater/grass1,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/ab_Hydroponics)
+"qRB" = (
+/obj/structure/table/standard,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/component,
+/obj/random/translator,
+/obj/random/maintenance/engineering,
+/obj/random/tool/powermaint,
+/obj/item/mecha_parts/part/ripley_left_leg,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"qRL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"qRP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "Dorms3";
+ name = "Room 3"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"qSp" = (
+/obj/random/junk,
+/obj/random/contraband,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/meteor/starsec)
+"qSr" = (
+/turf/simulated/wall/r_wall,
+/area/medical/medbay_primary_storage)
+"qSS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/blast/gate{
+ dir = 8;
+ name = "Workshop";
+ id = "Maintshop"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/cetus/workshop)
+"qTr" = (
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"qTv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_one_access = list(7, 9, 39, 55)
+ },
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/carbonresearch)
+"qTy" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/ab_Hydroponics)
+"qUo" = (
+/obj/random/trash,
+/obj/machinery/atmospherics/valve{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"qUy" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/tech)
+"qVd" = (
+/obj/structure/closet/crate,
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/fiftyspawner/wood,
+/obj/fiftyspawner/wood,
+/obj/fiftyspawner/floor,
+/obj/fiftyspawner/floor_dark,
+/obj/fiftyspawner/wood/sif,
+/obj/fiftyspawner/brncarpet,
+/obj/fiftyspawner/plastic,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"qVl" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"qVu" = (
+/obj/structure/flora/underwater/seaweed1,
+/obj/structure/flora/underwater/grass1,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/pond)
+"qVy" = (
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8;
+ name = "Hot Loop Waste-to-Canister pump"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"qVL" = (
+/obj/structure/closet/radiation,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 29;
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Lower Atrium 1";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/airlock)
+"qVN" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"qVU" = (
+/obj/structure/salvageable/computer,
+/turf/simulated/shuttle/floor/black,
+/area/maintenance/cetus/meteor/pond)
+"qWm" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"qWy" = (
+/obj/structure/table/steel,
+/obj/random/contraband,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"qWW" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"qWY" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"qXs" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"qXD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"qXM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"qYx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"qYK" = (
+/obj/item/stool/baystool{
+ dir = 1;
+ pixel_y = 12
+ },
+/obj/effect/floor_decal/corner/lightorange/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/stylist)
+"qYM" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"qZe" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Treatment Center 1";
+ dir = 5
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"qZp" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"qZO" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/engineering/cetus/meteor/refinery)
+"qZU" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/armory)
+"qZZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"raR" = (
+/obj/structure/table/steel,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"rba" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"rbm" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24;
+ on = 0
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-2"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Gravity Generator"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravgen)
+"rbs" = (
+/obj/structure/cable/orange{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/shieldgen)
+"rcx" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/machinery/door/airlock/maintenance_hatch{
+ frequency = 1379;
+ id_tag = "engine_airlock_exterior";
+ name = "Engine Airlock Exterior";
+ req_access = list(11)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/airlock)
+"rdp" = (
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"rdr" = (
+/obj/structure/table/bench/wooden,
+/obj/item/reagent_containers/food/drinks/bottle/small/beer/silverdragon{
+ pixel_y = 12;
+ pixel_x = 2
+ },
+/obj/item/material/ashtray/plastic{
+ pixel_y = -3;
+ pixel_x = -1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"rdB" = (
+/obj/random/maintenance/clean,
+/obj/structure/table/standard,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"rep" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "d1_near_sw";
+ name = "Near Cetus - Deck 1 South West"
+ },
+/turf/space,
+/area/space)
+"ret" = (
+/turf/simulated/mineral/cetus,
+/area/chapel/chapel_morgue/cetus/crypt)
+"rex" = (
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"reH" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"reR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"reZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ color = "#989898"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"rfd" = (
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"rfj" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"rfG" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"rfH" = (
+/obj/machinery/light/small/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"rfO" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"rfR" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"rgw" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/hallway1)
+"rgE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"rgF" = (
+/obj/structure/closet/athletic_swimwear,
+/obj/item/clothing/under/swimsuit/streamlined,
+/obj/item/clothing/under/swimsuit/striped,
+/obj/item/clothing/under/swimsuit/risque,
+/obj/item/clothing/under/swimsuit/stripper/mankini,
+/obj/item/clothing/under/swimsuit/stripper/stripper_green,
+/obj/item/clothing/under/swimsuit/stripper/stripper_pink,
+/obj/item/clothing/under/swimsuit/cowbikini,
+/obj/item/clothing/under/swimsuit/earth,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"rgO" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"rio" = (
+/obj/structure/cable{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"riZ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"rjn" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"rjy" = (
+/obj/structure/flora/underwater/plant2,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/pond)
+"rkc" = (
+/mob/living/simple_mob/vore/pitcher{
+ pixel_y = 5;
+ pixel_x = -3
+ },
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/effect/floor_decal/rust,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"rkg" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"rks" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"rkB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"rkR" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/engine)
+"rla" = (
+/obj/structure/bed,
+/obj/item/bedsheet/purple,
+/turf/simulated/floor/carpet/blue2,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"rli" = (
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"rln" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "D1_port";
+ pixel_y = -28
+ },
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"rlJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"rlK" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Weapons locker";
+ req_access = list(2)
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"rma" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"rmh" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"rms" = (
+/obj/random/medical/pillbottle,
+/obj/random/medical/pillbottle,
+/obj/random/medical/lite,
+/obj/random/medical/lite,
+/obj/random/medical,
+/obj/random/medical,
+/obj/random/medical,
+/obj/structure/table/rack/shelf,
+/obj/item/stack/tile/floor/white{
+ pixel_y = 14;
+ amount = 50
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"rmP" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"rnc" = (
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"rnf" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-5"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Engine Output";
+ name_tag = "Engine Output"
+ },
+/obj/item/geiger/wall/west,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-5"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-6"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/smes)
+"rnn" = (
+/obj/structure/table/standard,
+/obj/random/maintenance/research,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"rnC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"rnK" = (
+/obj/random/junk,
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/foremed)
+"rpf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"rpn" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain/cee,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Toxins Lab 2";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxins)
+"rpW" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"rqd" = (
+/obj/structure/morgue{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue/cetus)
+"rqw" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"rqF" = (
+/obj/machinery/cryopod/robot{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"rqH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/meteor/hallway2)
+"rqJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/machinery/meter,
+/obj/machinery/access_button{
+ dir = 1;
+ name = "interior access button";
+ pixel_y = -26
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"rqN" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"rqP" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"rqR" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Carbon Research Lab";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"rqZ" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"rrk" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"rrH" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel/random{
+ pixel_y = 13
+ },
+/obj/item/towel/random{
+ pixel_y = 17
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"rrV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"rsm" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxins)
+"rsG" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/central)
+"rsH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/toxins)
+"rsK" = (
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"rug" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"rur" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"ruy" = (
+/obj/structure/flora/ausbushes/genericbush,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"ruJ" = (
+/obj/machinery/light/spot{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"ruM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/purple,
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/toxins)
+"ruU" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"rva" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/atriumdeck1)
+"rvk" = (
+/obj/structure/morgue{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/forensic)
+"rvt" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/space)
+"rvu" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"rvJ" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/cable_coil/blue,
+/obj/item/stack/cable_coil/blue,
+/obj/random/toolbox,
+/obj/random/toolbox,
+/obj/random/tech_supply,
+/obj/machinery/light{
+ layer = 3
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"rvL" = (
+/obj/structure/railing/overhang/hazard,
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/writing{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/cetus/atriumd1)
+"rvM" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"rvW" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"rwe" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "First-Aid Station";
+ req_access = newlist();
+ req_one_access = newlist()
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/dormfirstaid)
+"rwp" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/ab_Kitchen)
+"rwC" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/airlock)
+"rwN" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"rwY" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"rxu" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"rxG" = (
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/light/broken{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"rxI" = (
+/obj/machinery/vending/desatti{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"rxL" = (
+/obj/structure/table/rack/holorack,
+/obj/item/circuitboard/recycler_crusher{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/recycler_crusher{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/recycler_sorter{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/recycler_sorter{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/recycler_stamper{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/recycler_stamper{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/partslathe{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/partslathe{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/mass_driver{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/mass_driver{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/mass_driver{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/autolathe{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/obj/item/circuitboard/autolathe{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"ryc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D1 Central Ring 6";
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atm{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"ryg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"ryS" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/machinery/light/small/flicker{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"rzd" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/shuttle/spacebus)
+"rzi" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/enginewaste)
+"rzm" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/bar)
+"rAk" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/table/woodentable,
+/obj/item/gun/projectile/shotgun/doublebarrel,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/bar)
+"rAt" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"rAx" = (
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/structure/closet,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"rAC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"rAJ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"rAV" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/item/towel/random,
+/obj/item/towel/random,
+/obj/item/towel/random,
+/obj/structure/table/standard,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"rBv" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"rCc" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"rCh" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"rCp" = (
+/obj/machinery/vending/exploration_misc,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"rCA" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"rCL" = (
+/turf/simulated/floor/greengrid/nitrogen,
+/area/engineering/cetus/meteor/engineroom)
+"rCW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"rDx" = (
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "defibrillator closet";
+ pixel_y = 31
+ },
+/obj/item/defib_kit/loaded,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/dormfirstaid)
+"rDD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"rDU" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/cetus/atriumd1)
+"rDX" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"rEv" = (
+/obj/effect/floor_decal/industrial/stand_clear/yellow,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/writing,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/cetus/atriumd1)
+"rEU" = (
+/obj/structure/flora/underwater/grass1,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"rFl" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"rFz" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"rFB" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"rFI" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/tech)
+"rFZ" = (
+/obj/machinery/door/blast/regular{
+ id = "mixvent";
+ name = "Mixer Room Vent"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/rnd/cetus/meteor/toxins)
+"rGz" = (
+/obj/structure/waterfall,
+/obj/structure/waterfall/mist,
+/obj/structure/waterfall{
+ pixel_y = 32
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/ab_Hydroponics)
+"rGJ" = (
+/obj/structure/table/marble,
+/obj/machinery/door/blast/gate{
+ dir = 8;
+ name = "Kitchen";
+ id = "Maintcook"
+ },
+/obj/machinery/cash_register/civilian{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/ab_Kitchen)
+"rHj" = (
+/obj/random/junk,
+/turf/simulated/floor/airless,
+/area/space)
+"rHm" = (
+/obj/machinery/light/broken,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"rHv" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/floor/water/deep/indoors/station,
+/area/engineering/cetus/meteor/refinery)
+"rHD" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"rIv" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"rIx" = (
+/obj/effect/shuttle_landmark/southern_cross/cryostorage_station,
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"rII" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"rJw" = (
+/obj/structure/window/plastitanium/full{
+ anchored = 0
+ },
+/turf/simulated/shuttle/floor/black,
+/area/maintenance/cetus/meteor/pond)
+"rJM" = (
+/obj/structure/flora/underwater/plant3,
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/pond)
+"rJZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"rKr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"rLe" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Joint Research Substation";
+ req_one_access = list(11, 24, 47, 5)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"rLg" = (
+/obj/structure/table/darkglass,
+/obj/random/junk,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_StripBar)
+"rLI" = (
+/obj/structure/closet/crate,
+/obj/item/stack/material/phoron{
+ amount = 25
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"rLM" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/blood/empty,
+/obj/item/reagent_containers/blood/empty,
+/obj/item/reagent_containers/blood/empty,
+/obj/item/reagent_containers/blood/empty,
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"rMw" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"rML" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"rNo" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/piratedouble,
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"rNN" = (
+/turf/simulated/floor/plating/eris/under,
+/area/engineering/cetus/meteor/gravgen)
+"rNY" = (
+/obj/item/clothing/gloves/yellow,
+/obj/structure/table/steel,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/tech_supply,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"rOd" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/pond)
+"rOj" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"rOQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"rPa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"rPJ" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"rPN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"rPV" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"rQb" = (
+/obj/structure/table/marble,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/blast/gate{
+ dir = 4;
+ name = "The Crap Shack";
+ id = "Maintfish"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/fishery)
+"rQy" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"rQO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"rRa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"rRc" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24;
+ pixel_y = -2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/structure/catwalk,
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"rRk" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/table/bench/steel,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/hallway1)
+"rRx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "8-10"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"rRz" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/engine_setup/coolant_canister,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"rRK" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"rRS" = (
+/obj/structure/closet/crate,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/radio,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"rRX" = (
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -35;
+ pixel_y = 6
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"rSb" = (
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/window/plastitanium/full,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"rSB" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 8
+ },
+/turf/simulated/floor/water/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"rSK" = (
+/obj/structure/closet/l3closet/janitor,
+/turf/simulated/floor/tiled/old_tile/green,
+/area/maintenance/cetus/janitorial)
+"rTm" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -37
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"rTK" = (
+/obj/structure/table/standard,
+/obj/item/paper_bin,
+/obj/item/clipboard,
+/obj/item/folder/white,
+/obj/item/pen,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/dentist)
+"rTT" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"rUt" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"rUY" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"rVg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"rVl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"rVm" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/disposalpipe/up,
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"rVV" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"rVZ" = (
+/obj/machinery/reagent_refinery/hub{
+ dir = 8
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"rWh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/random/trash,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"rWr" = (
+/turf/simulated/floor/water/deep/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"rWw" = (
+/turf/simulated/mineral/cetus,
+/area/security/cetus/meteor/hallway)
+"rXc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"rXy" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"rXB" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"rXV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"rYj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/hatch{
+ req_one_access = null;
+ name = "T--s-il Stor-g-";
+ desc = "The label on the airlock appears extensively damaged"
+ },
+/obj/item/tape/engineering,
+/turf/simulated/shuttle/floor/black,
+/area/maintenance/cetus/meteor/pond)
+"rYM" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"rZh" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"rZl" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"sac" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"saF" = (
+/obj/structure/cable/cyan{
+ icon_state = "9-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"saI" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"saO" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"sbr" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"sdh" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"sdl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/door/airlock/maintenance/engi,
+/obj/structure/cable{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/aftstar)
+"sdC" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"sdI" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"sdR" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"sdU" = (
+/obj/structure/reflector/single{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color/corner/red{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 6
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"sev" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - D1 Virology Airlock";
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"sex" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/carbonresearch)
+"sfb" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"sfe" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/empty,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"sfm" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/gun/energy/taser,
+/obj/item/gun/energy/taser,
+/obj/item/gun/energy/taser,
+/obj/item/gun/energy/stunrevolver,
+/obj/item/gun/energy/stunrevolver,
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Weapons locker";
+ req_access = list(2)
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"sgm" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "JR_D1_Aft";
+ pixel_y = 23
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"sgN" = (
+/obj/structure/flora/ausbushes,
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"sgW" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"shc" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 8;
+ id = "baby_mammoth_blast";
+ name = "window blast shield"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/shuttle/spacebus)
+"she" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"shA" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"shC" = (
+/obj/vehicle/train/trolley{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"shZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/maintenance/cetus/meteor/pond)
+"sid" = (
+/obj/machinery/light/broken,
+/obj/effect/floor_decal/corner/pink/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"sie" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"sih" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8;
+ target_pressure = 200
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"siy" = (
+/obj/machinery/shield_capacitor,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/shieldgen)
+"siC" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"siV" = (
+/obj/structure/table/bench/standard,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/stylist)
+"sjE" = (
+/obj/item/storage/briefcase/inflatable,
+/obj/random/trash,
+/obj/item/stack/rods,
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"skn" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"sks" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"skw" = (
+/obj/item/clothing/head/hardhat/old,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jrfore)
+"skG" = (
+/obj/structure/bonfire/permanent,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/meteor/atrium)
+"skI" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = -30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"skU" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/engine)
+"sla" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28;
+ dir = 4
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"slk" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/sign/warning/compressed_gas{
+ pixel_y = 30
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"slA" = (
+/obj/random/obstruction,
+/obj/random/trash,
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"slB" = (
+/turf/simulated/mineral/cetus,
+/area/asteroid/cetus/d1)
+"slC" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/cetus/meteor/toxins)
+"smc" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"sml" = (
+/obj/structure/table/rack/shelf,
+/obj/item/towel/random{
+ pixel_y = -8;
+ pixel_x = -5
+ },
+/obj/item/towel/random{
+ pixel_y = -8;
+ pixel_x = 5
+ },
+/obj/item/towel/random{
+ pixel_y = -8
+ },
+/obj/item/towel/random{
+ pixel_x = -7
+ },
+/obj/item/towel/random{
+ pixel_x = 5
+ },
+/obj/item/towel/random{
+ pixel_x = -1;
+ pixel_y = 13
+ },
+/obj/item/towel/random{
+ pixel_x = -1;
+ pixel_y = 15
+ },
+/obj/item/towel/random{
+ pixel_x = -1;
+ pixel_y = 18
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"smt" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/foodstuff,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jraft)
+"smI" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"smQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"snO" = (
+/obj/random/pottedplant,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"snS" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200;
+ dir = 1
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"sov" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"spi" = (
+/obj/structure/table/steel,
+/obj/random/junk,
+/obj/random/technology_scanner,
+/obj/random/maintenance/research,
+/obj/random/fromList/TFGuns,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"spl" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"spF" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "6-8"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"spH" = (
+/obj/effect/floor_decal/rust,
+/obj/item/capture_crystal,
+/obj/item/implanter/compliance,
+/obj/item/implanter/sizecontrol,
+/obj/structure/closet/crate,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"sqm" = (
+/obj/item/soap/nanotrasen,
+/obj/item/towel/random,
+/obj/item/towel/random,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/cetus/meteor/brig)
+"sqv" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24;
+ pixel_y = -2
+ },
+/obj/machinery/light_switch{
+ pixel_y = -13;
+ pixel_x = -22;
+ dir = 8
+ },
+/obj/machinery/button/remote/airlock{
+ id = "Dorms6";
+ name = "Bolt Control";
+ pixel_x = -24;
+ specialfunctions = 4;
+ dir = 4;
+ pixel_y = 11
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"sqD" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/security/cetus/meteor/brig)
+"sqE" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"srZ" = (
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Dormitories"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"ssh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"stF" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"stH" = (
+/obj/structure/table/standard,
+/obj/random/pizzabox{
+ pixel_y = 12
+ },
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/cozyobservatory)
+"sur" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/meteor/portsec)
+"suy" = (
+/obj/item/seeds/ambrosiavulgarisseed,
+/obj/item/seeds/ambrosiavulgarisseed,
+/obj/item/seeds/ambrosiainfernusseed,
+/obj/item/seeds/ambrosiainfernusseed,
+/obj/item/seeds/random,
+/obj/item/seeds/random,
+/obj/structure/closet/crate,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/portsec)
+"suH" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"suR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"svo" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"svB" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"svJ" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/tech)
+"svP" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"svQ" = (
+/turf/simulated/floor/water/indoors/station,
+/area/engineering/cetus/meteor/refinery)
+"swr" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"sww" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"swA" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"swB" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"swI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"swO" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"sxi" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_y = -30;
+ pixel_x = -6
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"sxP" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"sxS" = (
+/turf/simulated/mineral/cetus/edge,
+/area/maintenance/cetus/meteor/central)
+"syc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "prisonexit";
+ name = "Brig Exit";
+ req_access = list(2);
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"syf" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"syg" = (
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/turf/space,
+/area/space)
+"syv" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger{
+ pixel_x = -5
+ },
+/obj/machinery/recharger{
+ pixel_x = 5
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"syN" = (
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/pink/diagonal,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"szl" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Common Brig Enterance";
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 26;
+ dir = 4;
+ pixel_y = -12
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/brig)
+"szq" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"szw" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"szx" = (
+/obj/structure/sign/warning/airlock{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"szY" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"sAp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"sAH" = (
+/obj/random/fromList/TFGuns,
+/obj/random/fromList/TFGuns,
+/obj/random/fromList/TFGuns,
+/obj/random/fromList/TFGuns,
+/obj/random/fromList/TFGuns,
+/obj/random/fromList/TFGuns,
+/obj/random/fromList/TFGuns,
+/obj/random/fromList/TFGuns,
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = null
+ },
+/obj/item/gun/energy/sizegun/backfire,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"sAU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"sBa" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"sBl" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"sBp" = (
+/obj/effect/floor_decal/industrial/loading/blue,
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_1)
+"sBC" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"sBL" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/hallway2)
+"sBW" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/hallway)
+"sCh" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"sCy" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"sCG" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"sCN" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"sDl" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"sDp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"sDz" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"sDW" = (
+/obj/structure/table/rack/shelf,
+/obj/item/t_scanner{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/t_scanner{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/analyzer{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/analyzer{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/healthanalyzer{
+ pixel_x = 3;
+ pixel_y = -6
+ },
+/obj/item/healthanalyzer{
+ pixel_x = 3;
+ pixel_y = -6
+ },
+/obj/item/analyzer/plant_analyzer{
+ pixel_x = -5;
+ pixel_y = -6
+ },
+/obj/item/extrapolator,
+/obj/item/analyzer/plant_analyzer{
+ pixel_x = -5;
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"sEB" = (
+/obj/structure/table/rack/shelf,
+/obj/item/forensics/sample_kit{
+ pixel_y = -9
+ },
+/obj/item/forensics/sample_kit/powder{
+ pixel_y = 7
+ },
+/obj/item/reagent_scanner{
+ pixel_y = 10;
+ pixel_x = -6
+ },
+/obj/item/mass_spectrometer/adv{
+ pixel_y = 11;
+ pixel_x = 4
+ },
+/obj/item/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/cetus/meteor/forensic)
+"sEK" = (
+/obj/machinery/light,
+/turf/simulated/floor/carpet/retro,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"sEP" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jrfore)
+"sEW" = (
+/obj/structure/railing/overhang/grey,
+/obj/structure/dummystairs/greyledge{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/ab_StripBar)
+"sFb" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/shieldgen)
+"sFw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"sFA" = (
+/obj/machinery/computer/security/engineering{
+ dir = 4;
+ name = "Drone Monitoring Cameras";
+ network = list("Engineering")
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Drone Fabrication";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"sFG" = (
+/obj/structure/closet/bombclosetsecurity,
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"sFM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/purple,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"sGm" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"sGp" = (
+/turf/simulated/wall,
+/area/medical/medbay_primary_storage)
+"sGM" = (
+/obj/structure/table/standard,
+/obj/item/tabloid,
+/obj/machinery/light{
+ dir = 4;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"sGU" = (
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"sGX" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"sIa" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/meteor/jraft)
+"sIj" = (
+/obj/machinery/cryopod{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/cryo/station)
+"sIl" = (
+/obj/machinery/light/floortube{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"sIo" = (
+/obj/structure/lattice,
+/obj/vehicle/train/trolley_tank,
+/turf/simulated/floor/water/indoors/station,
+/area/engineering/cetus/meteor/refinery)
+"sIp" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/cdeathalarm_kit,
+/obj/item/storage/box/cdeathalarm_kit,
+/obj/machinery/recharger,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"sIz" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"sIT" = (
+/obj/structure/stairs/spawner/west,
+/obj/structure/railing,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"sJa" = (
+/obj/machinery/body_scanconsole,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"sKa" = (
+/obj/machinery/computer/general_air_control/supermatter_core{
+ input_tag = "cooling_in";
+ name = "Engine Cooling Control";
+ output_tag = "cooling_out";
+ sensors = list("engine_sensor"="Engine Core")
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"sKe" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"sKj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"sKo" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"sKS" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"sLd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/computer/timeclock/premade/east,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"sLi" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"sLm" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"sLn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"sLP" = (
+/turf/simulated/wall/r_wall,
+/area/medical/surgery_storage)
+"sLT" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"sMg" = (
+/obj/machinery/field_generator,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"sMj" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/tile,
+/obj/effect/floor_decal/industrial/warning/color/tile/red,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"sMS" = (
+/obj/random/obstruction,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"sNe" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"sNl" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/cable_coil/orange,
+/obj/item/stack/cable_coil/orange,
+/obj/random/tool/powermaint,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"sNu" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"sNv" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"sND" = (
+/turf/simulated/floor/plating/eris/under,
+/area/crew_quarters/cetus/meteor/hallway2)
+"sNE" = (
+/obj/random/material,
+/obj/structure/table/steel,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"sNK" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/item/material/twohanded/riding_crop,
+/turf/simulated/floor/carpet/retro,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"sNV" = (
+/turf/simulated/wall/r_wall,
+/area/security/cetus/meteor/armory)
+"sOv" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/janitorial)
+"sOA" = (
+/obj/structure/closet/l3closet/medical,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"sOC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"sOW" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/floodlight,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"sPg" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"sPx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"sPN" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"sQq" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxins)
+"sQU" = (
+/obj/random/vendorfood{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"sQY" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"sRn" = (
+/obj/structure/cable/yellow{
+ icon_state = "6-9"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"sRw" = (
+/obj/structure/boulder,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"sRQ" = (
+/obj/machinery/vending/coffee{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/lounge)
+"sRV" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/structure/bed,
+/obj/item/bedsheet/blue,
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"sSa" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"sSc" = (
+/obj/effect/floor_decal/corner_techfloor_gray{
+ dir = 5
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ name = "light switch ";
+ pixel_x = 26;
+ pixel_y = -11
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/green,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/meteor/vr)
+"sST" = (
+/obj/structure/sink{
+ pixel_y = 15
+ },
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"sTw" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Waste Handling 1";
+ dir = 9
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 26;
+ dir = 4;
+ pixel_y = -12
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"sTV" = (
+/obj/structure/table/bench/steel,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/hallway1)
+"sUa" = (
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/pond)
+"sUb" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"sUf" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24;
+ pixel_y = -2
+ },
+/obj/machinery/light_switch{
+ pixel_y = -13;
+ pixel_x = -22;
+ dir = 8
+ },
+/obj/machinery/button/remote/airlock{
+ id = "Dorms10";
+ name = "Bolt Control";
+ pixel_x = -24;
+ specialfunctions = 4;
+ dir = 4;
+ pixel_y = 11
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"sUi" = (
+/obj/structure/closet/l3closet/security,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"sUk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "ward2"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/carbonresearch)
+"sUI" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"sUV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"sVh" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/construction)
+"sVO" = (
+/turf/simulated/mineral/cetus,
+/area/asteroid/cetus/d1/jr)
+"sWa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"sWg" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/water/deep/indoors/station,
+/area/maintenance/cetus/meteor/central)
+"sWz" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/boxing/gym,
+/area/security/cetus/meteor/brig)
+"sXo" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/obj/structure/cable/yellow{
+ icon_state = "5-9"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"sYl" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/table/rack/steel,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"sYs" = (
+/obj/machinery/button/crematorium{
+ id = "Chapelburn";
+ pixel_x = -21;
+ pixel_y = -24
+ },
+/obj/structure/flora/pottedplant/flower,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"sYK" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"sYS" = (
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/cetus/meteor/brig)
+"sZl" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"sZO" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"sZW" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/reagent_containers/spray/pepper,
+/obj/item/reagent_containers/spray/pepper,
+/obj/item/reagent_containers/spray/pepper,
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Weapons locker";
+ req_access = list(2)
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"taa" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "expsurgery"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/carbonresearch)
+"taz" = (
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/rnd/test_area)
+"tbB" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jraft)
+"tbT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/cetus/meteor/engineroom)
+"tcd" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -29
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - D1 Hall 2";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"tci" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"tdg" = (
+/obj/structure/toilet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"tdH" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"tdJ" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "8-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"tdN" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"tdT" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"teF" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/landmark/start{
+ name = "Bartender"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/bar)
+"teW" = (
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/random/plushielarge,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"tfp" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger{
+ pixel_x = -5
+ },
+/obj/machinery/recharger{
+ pixel_x = 5
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"tfG" = (
+/obj/structure/table/bench/padded,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/meteor/hallway2)
+"tge" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/gear_painter,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"tgq" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 1;
+ name = "Security Delivery chute"
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/borderfloor/cee{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercee,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"tgB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"tgJ" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/old_tile/green,
+/area/maintenance/cetus/janitorial)
+"thr" = (
+/obj/item/radio/beacon,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Toxins Test Chamber";
+ dir = 4;
+ network = list("Research","Toxins Test Area")
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/rnd/test_area)
+"thS" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"thU" = (
+/obj/machinery/sparker{
+ id = "mixingsparker";
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/cetus/meteor/toxins)
+"tid" = (
+/turf/simulated/wall,
+/area/medical/Surgery_Room_1)
+"tiw" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/aftstar)
+"tiA" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"tiD" = (
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 26;
+ dir = 4;
+ pixel_y = -12
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/refinery)
+"tiR" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"tjj" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/morgue/cetus)
+"tjl" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"tjq" = (
+/obj/structure/table/bench/standard,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"tjr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "9-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/aftstar)
+"tju" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"tjv" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"tjM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"tka" = (
+/obj/structure/table/steel,
+/obj/item/destTagger,
+/obj/item/packageWrap,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"tkh" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"tko" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/structure/sign/nosmoking_2/burnt{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxstorage)
+"tkp" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"tkG" = (
+/obj/structure/table/steel,
+/obj/machinery/microwave,
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"tkJ" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/binary/passive_gate/on{
+ dir = 4;
+ name = "Hot Loop Waste Gas pressure regulator";
+ regulate_mode = 1;
+ target_pressure = 2500
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/enginewaste)
+"tkK" = (
+/obj/machinery/pipedispenser,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"tla" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"tll" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/research{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "xenostation2_airlock_exterior";
+ locked = 1;
+ name = "Xenobiology External Airlock";
+ req_access = list(55)
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "xenostation2_airlock_control";
+ name = "Xenobiology Access Button";
+ req_access = list(55);
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"tlN" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"tlO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/random/junk,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"tmf" = (
+/obj/structure/table/steel,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Common Brig 2";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"tmp" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/stylist)
+"tmq" = (
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/shipsensors,
+/turf/simulated/floor/plating,
+/area/shuttle/spacebus)
+"tmF" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"tmO" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"tmW" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Poolside Grill";
+ req_access = list(28)
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/pool)
+"tnt" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/obj/machinery/vending/wardrobe/bardrobe,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/bar)
+"tnz" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"tob" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"toy" = (
+/turf/simulated/floor/tiled/neutral/turfpack/airless,
+/area/space)
+"toI" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"toU" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"tpx" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"tpE" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"tqa" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/cetus/meteor/carbonresearch)
+"tqL" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/hallway1)
+"tqS" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"tqU" = (
+/obj/machinery/computer/ship/sensors,
+/turf/simulated/floor/tiled/dark,
+/area/shuttle/spacebus)
+"tqY" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/pool)
+"trp" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/drinks/bottle/vodka{
+ pixel_y = 12;
+ pixel_x = -5
+ },
+/obj/item/surgical/retractor,
+/obj/item/surgical/bonegel{
+ pixel_y = 12;
+ pixel_x = 6
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"trt" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"trW" = (
+/obj/effect/floor_decal/spline/plain/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"tsa" = (
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"tsi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"tsm" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"tsM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"tsO" = (
+/obj/structure/table/bench/standard,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"ttm" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_south = 6;
+ tag_west = 1;
+ use_power = 0;
+ tag_east = 2
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"ttw" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"ttA" = (
+/obj/structure/salvageable/server,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"ttS" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"tub" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"tuh" = (
+/obj/machinery/power/grid_checker,
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"tuZ" = (
+/obj/structure/window/reinforced,
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"tvx" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"tvH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"twf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "6-10"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "5-9"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "SMES Access";
+ req_access = list(11)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/enginemonitor)
+"twE" = (
+/obj/structure/ladder/up,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"twV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"txC" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"txF" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"txM" = (
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"txS" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/starsec)
+"txV" = (
+/obj/structure/table/steel,
+/obj/item/integrated_electronics/debugger{
+ pixel_y = 2;
+ pixel_x = -6
+ },
+/obj/item/integrated_electronics/wirer{
+ pixel_y = 3
+ },
+/obj/item/multitool{
+ pixel_y = 1;
+ pixel_x = 6
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/micro_tunnel/random,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/tech)
+"tym" = (
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"tyG" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"tyY" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"tzk" = (
+/obj/structure/table/steel,
+/obj/random/tech_supply/component,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"tzx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"tzI" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"tzT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"tAn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"tAs" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/monkeycubes/neaeracubes{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/storage/box/monkeycubes/farwacubes{
+ pixel_y = 3;
+ pixel_x = -12
+ },
+/obj/item/storage/box/monkeycubes/sarucubes{
+ pixel_y = 4;
+ pixel_x = 5
+ },
+/obj/item/storage/box/monkeycubes/sobakacubes{
+ pixel_y = -1;
+ pixel_x = -3
+ },
+/obj/item/storage/box/monkeycubes/sparracubes{
+ pixel_y = 12;
+ pixel_x = -4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"tAu" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/stylist)
+"tAA" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"tAR" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/armory)
+"tBj" = (
+/obj/structure/ladder/up,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"tBn" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"tBv" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"tBS" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/toilet/prison,
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/cetus/meteor/brig)
+"tBW" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"tCj" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"tDd" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/morgue/cetus)
+"tDP" = (
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/plastitanium/full,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"tEv" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"tEP" = (
+/obj/machinery/door/airlock{
+ id_tag = "visitdoor";
+ name = "Visitation Area";
+ req_access = list(63)
+ },
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/brig)
+"tES" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/machinery/button/remote/airlock{
+ id = "ward2";
+ name = "Ward B Bolts";
+ specialfunctions = 4;
+ pixel_x = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/button/flasher{
+ name = "Ward B Flasher";
+ id = "ward2";
+ pixel_y = 8;
+ pixel_x = -5
+ },
+/obj/machinery/button/windowtint/multitint{
+ id = "ward2";
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"tFb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"tFg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/rnd{
+ name = "Manmachine Works";
+ req_one_access = null
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/cetus/mechbay)
+"tFH" = (
+/obj/random/maintenance,
+/obj/structure/table/standard,
+/obj/random/tech_supply/component,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"tFJ" = (
+/obj/structure/table/steel,
+/obj/machinery/reagentgrinder,
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"tFK" = (
+/obj/vehicle/train/engine{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"tFU" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/starsec)
+"tFV" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/random/mob/mouse,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/fishery)
+"tGG" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"tGJ" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"tGO" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"tHc" = (
+/obj/structure/table/woodentable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/radio/subspace{
+ desc = "A heavy duty radio that can pick up all manor of shortwave and subspace frequencies. It's a bit bulkier than a normal radio thanks to the extra hardware. An engraving on the frame reads: IF FOUND, RETURN TO THE BAR!";
+ name = "Bar subspace radio";
+ pixel_y = 16
+ },
+/obj/item/deck/cards{
+ pixel_x = -5;
+ pixel_y = -2
+ },
+/obj/item/newspaper,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"tHl" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"tId" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"tIM" = (
+/obj/effect/floor_decal/corner,
+/obj/machinery/transhuman/resleever,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"tJh" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"tJJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"tKL" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"tKM" = (
+/obj/structure/stairs/spawner/west,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"tKZ" = (
+/obj/effect/floor_decal/corner/pink/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"tLf" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/cetus/meteor/atriumdeck1)
+"tLI" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D1 Cafeteria 2";
+ dir = 1
+ },
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/obj/machinery/atm{
+ pixel_y = -30
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"tLX" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"tMb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"tMs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/grey/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"tMF" = (
+/obj/structure/stairs/spawner/south,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"tNA" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/space)
+"tNM" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/light/small/yellowed,
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 1;
+ start_pressure = 4559.63
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"tNR" = (
+/obj/structure/sign/warning/high_voltage,
+/turf/simulated/wall/r_wall,
+/area/security/cetus/meteor/brig)
+"tNX" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"tOD" = (
+/obj/structure/table/standard,
+/obj/random/soap{
+ pixel_y = 10
+ },
+/obj/random/soap{
+ pixel_y = 6
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"tOS" = (
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1433;
+ id = "cooling_in";
+ name = "Coolant Injector";
+ pixel_y = 1;
+ power_rating = 30000;
+ use_power = 1;
+ volume_rate = 700
+ },
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/cetus/meteor/engineroom)
+"tPc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "barber"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/stylist)
+"tPe" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/random/organ,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"tPv" = (
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/obj/machinery/disposal,
+/obj/machinery/status_display{
+ pixel_x = -31
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"tPI" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"tPS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"tQE" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/cetus/meteor/toxins)
+"tRk" = (
+/obj/structure/stairs/spawner/south,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"tSt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"tSA" = (
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"tSC" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"tSP" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/circuitboard/air_management/injector_control{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/air_management/injector_control{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/air_management/supermatter_core{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/air_management/supermatter_core{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/air_management/tank_control{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/air_management/tank_control{
+ pixel_y = 3
+ },
+/obj/item/module/power_control{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/module/power_control{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/module/power_control{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/module/power_control{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/module/power_control{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/module/power_control{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/airlock_electronics{
+ pixel_y = -5
+ },
+/obj/item/airlock_electronics{
+ pixel_y = -5
+ },
+/obj/item/airlock_electronics{
+ pixel_y = -5
+ },
+/obj/item/airlock_electronics{
+ pixel_y = -5
+ },
+/obj/item/airlock_electronics{
+ pixel_y = -5
+ },
+/obj/item/airlock_electronics{
+ pixel_y = -5
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30;
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Technical Storage";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"tTe" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/rack/shelf,
+/obj/random/toolbox,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"tUi" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/surgery_hallway)
+"tUq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/window/northleft{
+ name = "Misc Delivery"
+ },
+/obj/machinery/conveyor{
+ id = "explomail"
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"tVc" = (
+/obj/machinery/light/broken{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"tVq" = (
+/obj/structure/bed/chair,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/brig)
+"tVP" = (
+/obj/structure/table/bench/wooden,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/machinery/light_switch{
+ pixel_y = -13;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/machinery/button/remote/airlock{
+ id = "Dorms2";
+ name = "Bolt Control";
+ pixel_x = 24;
+ specialfunctions = 4;
+ dir = 8;
+ pixel_y = 12
+ },
+/obj/item/flashlight/lamp/green{
+ pixel_y = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/retro,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"tVT" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"tWj" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/hallway1)
+"tWw" = (
+/obj/structure/table/rack,
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"tWO" = (
+/obj/structure/bed,
+/obj/item/bedsheet/blue,
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"tWQ" = (
+/obj/item/mecha_parts/mecha_equipment/tool/drill,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"tXd" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/item/storage/box/wormcan,
+/obj/item/storage/box/wormcan,
+/obj/item/storage/box/wormcan/sickly,
+/obj/item/storage/box/wormcan/sickly,
+/obj/item/storage/box/wormcan/deluxe,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/fishery)
+"tXf" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"tXn" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/random/coin,
+/turf/simulated/floor/carpet/purple,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"tXO" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/green,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"tXR" = (
+/obj/item/pickaxe/drill,
+/obj/item/clothing/glasses/meson,
+/obj/effect/floor_decal/rust,
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"tYb" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/Surgery_Room_1)
+"tYl" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"tYq" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/item/reagent_containers/food/snacks/sliceable/pizza/crunch,
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"tYL" = (
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"tZb" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"tZO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/railing,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"tZT" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/up{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"uai" = (
+/obj/machinery/flasher/portable,
+/obj/item/radio/intercom/department/security{
+ dir = 1;
+ pixel_y = 21
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ color = "#989898";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"uaB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 4
+ },
+/obj/structure/sign/warning/fire,
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/toxins)
+"uaF" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"uba" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/morgue/cetus)
+"ube" = (
+/obj/structure/table/steel,
+/obj/random/contraband,
+/obj/random/maintenance/foodstuff,
+/obj/random/maintenance/misc,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"ubl" = (
+/obj/structure/morgue{
+ dir = 2
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Morgue"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/medical/morgue/cetus)
+"ubu" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"ubF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"ubK" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/ab_GeneralStore)
+"ubR" = (
+/obj/machinery/atmospherics/unary/heat_exchanger,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"ubV" = (
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"ubX" = (
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine charging port.";
+ id = "SupermatterPort";
+ name = "Reactor Blast Doors";
+ pixel_y = 28;
+ req_access = list(10)
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine control room blast doors.";
+ id = "EngineBlast";
+ name = "Engine Monitoring Room Blast Doors";
+ pixel_y = 38;
+ req_access = list(10)
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/obj/machinery/atmospherics/valve/digital{
+ name = "secondary TEG valve";
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"ucb" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/hallway)
+"ude" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"udr" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 5
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/cyan{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"uds" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"udu" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"udH" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"udU" = (
+/obj/structure/table/darkglass,
+/obj/machinery/vending/wallmed1{
+ dir = 4;
+ pixel_x = -25
+ },
+/obj/item/towel/random{
+ pixel_x = 12;
+ pixel_y = -4
+ },
+/obj/item/folder/white,
+/obj/item/towel/random{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/pen{
+ pixel_y = 15
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/meteor/vr)
+"uec" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/item/clothing/accessory/collar/shock,
+/obj/item/implanter/compliance,
+/obj/item/capture_crystal,
+/obj/random/fromList/TFGuns,
+/obj/random/fromList/TFGuns,
+/obj/item/clothing/accessory/collar/shock/bluespace/modified,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/leash/cable,
+/obj/item/clothing/mask/muzzle/ballgag/ringgag,
+/obj/item/disk/nifsoft/compliance{
+ pixel_y = -7
+ },
+/obj/item/radio_jammer,
+/obj/random/shibari,
+/obj/random/shibari,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/tech)
+"uee" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/ab_StripBar)
+"ueW" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"ufr" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_StripBar)
+"ufy" = (
+/obj/structure/table/rack/holorack,
+/obj/item/circuitboard/fusion_core{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/fusion_core{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/fusion_core_control{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/fusion_core_control{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/fusion_fuel_compressor{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/fusion_fuel_compressor{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/fusion_fuel_control{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/fusion_fuel_control{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/fusion_injector{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/fusion_injector{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/algae_farm{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/obj/item/circuitboard/algae_farm{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"ufF" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/gaycarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"ufO" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "9-10"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"ugl" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"ugm" = (
+/obj/structure/table/standard,
+/obj/structure/sink/countertop{
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/dentist)
+"ugs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"ugu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"ugS" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"ugY" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/dummystairs/hazardledge{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"uhb" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/pond)
+"uhd" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"uhi" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "5-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"uhk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/retro,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"uir" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"uja" = (
+/obj/structure/closet/crate,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/rglass,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"ujf" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"ujw" = (
+/obj/machinery/sleep_console,
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"ujT" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"ujU" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/hallway)
+"ukd" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"ukk" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/rust,
+/obj/machinery/door/blast/shutters{
+ dir = 4;
+ id = "poolside";
+ layer = 3.1;
+ name = "Shutters"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/pool)
+"uko" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"ukG" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Hallway"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"ukQ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/med_data/laptop,
+/turf/simulated/floor/tiled/freezer,
+/area/security/cetus/meteor/forensic)
+"ukV" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/mineral/cetus,
+/area/security/cetus/meteor/forensic)
+"ulc" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/supply,
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/disposalpipe/up,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"umc" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/light/small/fluorescent,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"umG" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"umP" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(1);
+ name = "Energy Weapons"
+ },
+/obj/item/gun/energy/ionrifle{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/gun/energy/ionrifle{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/gun/energy/gun,
+/obj/item/gun/energy/gun,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/armory)
+"uok" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"uoD" = (
+/obj/structure/waterfall,
+/obj/effect/mist,
+/obj/structure/waterfall/mist,
+/turf/simulated/floor/water/deep/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"uoQ" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"upw" = (
+/obj/item/stool/padded{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/ab_StripBar)
+"upF" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"uqe" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/water/deep/indoors/station,
+/area/engineering/cetus/meteor/refinery)
+"uqh" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"uqt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"uqI" = (
+/obj/machinery/atmospherics/valve{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/security/cetus/meteor/hallway)
+"urd" = (
+/turf/simulated/wall/r_wall,
+/area/medical/morgue/cetus)
+"urm" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"urq" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ id = "ripperdoc";
+ name = "Bolt Control";
+ specialfunctions = 4;
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/ripperdock)
+"urS" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"ush" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"usm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/catwalk,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"usH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"usT" = (
+/obj/structure/dummystairs/greyledge{
+ dir = 4
+ },
+/obj/structure/railing/overhang/grey,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/ab_StripBar)
+"utd" = (
+/obj/structure/table/steel,
+/obj/item/storage/box/lights/mixed,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"utn" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stack/cable_coil/cyan,
+/obj/item/stack/cable_coil/cyan,
+/obj/random/tool/powermaint,
+/obj/random/powercell,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"utx" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2"
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"utB" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"utH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/d1port)
+"uuc" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/plating,
+/area/security/cetus/meteor/brig)
+"uug" = (
+/obj/structure/table/standard,
+/obj/item/tool/screwdriver{
+ pixel_y = 10
+ },
+/obj/item/tool/wrench,
+/obj/item/tool/crowbar,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"uut" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/brig)
+"uuu" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"uuA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/freezer{
+ name = "Cold Room"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"uuC" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"uuP" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "d1_near_jr";
+ name = "Near Cetus - Deck 1 Joint Research"
+ },
+/turf/space,
+/area/space)
+"uvm" = (
+/obj/random/obstruction,
+/obj/random/trash,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"uvx" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"uwq" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 2;
+ name = "Maintenance Access"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/mechbay)
+"uwt" = (
+/obj/machinery/door/airlock/maintenance/engi{
+ req_one_access = list(11);
+ name = "SMES"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "5-10"
+ },
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"uwC" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ pixel_x = 29;
+ dir = 8;
+ pixel_y = 9
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/cetus/meteor/brig)
+"uwE" = (
+/obj/effect/floor_decal/corner/pink/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"uwK" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"uxi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_StripBar)
+"uxH" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"uyj" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"uyn" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxstorage)
+"uyr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"uyu" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"uzg" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"uAz" = (
+/obj/structure/cable/orange{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/orange{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/orange{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/shieldgen)
+"uAF" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/armory)
+"uAV" = (
+/turf/simulated/mineral/cetus/edge,
+/area/asteroid/cetus/d1)
+"uAY" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/random/maintenance/medical,
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"uBi" = (
+/obj/machinery/vr_sleeper,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/vr)
+"uBt" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"uBZ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/atriumdeck1)
+"uCt" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"uCA" = (
+/turf/simulated/wall,
+/area/maintenance/ab_StripBar)
+"uCB" = (
+/obj/structure/stairs/spawner/east,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"uCU" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"uDs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/refinery)
+"uDH" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"uEm" = (
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/junction,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"uEs" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/plasticflaps/mining,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"uEv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"uEK" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"uEP" = (
+/obj/structure/table/steel,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jraft)
+"uFc" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"uFo" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 1;
+ name = "Joint Research Delivery chute"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/borderfloor/cee{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercee,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"uFt" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravgen)
+"uFI" = (
+/obj/structure/table/darkglass,
+/obj/structure/disposalpipe/segment,
+/obj/random/junk,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_StripBar)
+"uFS" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Engine Core 4";
+ dir = 5
+ },
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/cetus/meteor/engineroom)
+"uGf" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/hallway2)
+"uGg" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"uGt" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
+ },
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/lounge)
+"uGu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/maintenance/cetus/meteor/pond)
+"uGJ" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/airless,
+/area/space)
+"uGN" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_2)
+"uHc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"uHu" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"uHv" = (
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"uHO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"uIj" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"uIy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"uIF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/aftstar)
+"uIG" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1;
+ layer = 2.8
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/greengrid,
+/area/engineering/cetus/meteor/dronefab)
+"uIW" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"uIX" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/mechbay)
+"uIY" = (
+/obj/effect/floor_decal/industrial/arrows/blue,
+/obj/effect/floor_decal/industrial/arrows/blue{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"uJf" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Refinery";
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"uJn" = (
+/obj/structure/firedoor_assembly,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"uJs" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/star)
+"uJz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"uJQ" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"uJX" = (
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/meteor/starsec)
+"uKa" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/trash,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/ragecage)
+"uKb" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_2)
+"uKt" = (
+/obj/machinery/iv_drip,
+/obj/item/reagent_containers/blood/prelabeled/OMinus{
+ pixel_y = 6;
+ pixel_x = 8
+ },
+/obj/item/reagent_containers/blood/prelabeled/OMinus{
+ pixel_y = 3;
+ pixel_x = 8
+ },
+/obj/item/reagent_containers/blood/empty{
+ pixel_y = -1;
+ pixel_x = 8
+ },
+/obj/item/reagent_containers/blood/empty{
+ pixel_y = -5;
+ pixel_x = 8
+ },
+/obj/item/storage/quickdraw/syringe_case{
+ pixel_y = 4;
+ pixel_x = -8
+ },
+/obj/structure/closet/walllocker_double/medical/east,
+/turf/simulated/floor/tiled/white,
+/area/shuttle/spacebus)
+"uKy" = (
+/obj/structure/stairs/spawner/east,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/stairwelljr1)
+"uKQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"uLa" = (
+/obj/structure/girder,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"uLd" = (
+/obj/random/trash,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"uLh" = (
+/obj/structure/bed,
+/obj/item/bedsheet/red,
+/turf/simulated/floor/carpet/blucarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"uLq" = (
+/obj/structure/salvageable/autolathe,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"uLM" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/ab_StripBar)
+"uMs" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"uMw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"uMB" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "9-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-9"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"uMS" = (
+/obj/structure/table/steel,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"uMT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway1)
+"uNe" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/obj/effect/engine_setup/pump_max,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"uNN" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"uOv" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/gravgen)
+"uOF" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"uPi" = (
+/turf/simulated/wall/r_lead,
+/area/engineering/cetus/meteor/engineroom)
+"uPr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"uPu" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"uPw" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/machinery/meter,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxins)
+"uPP" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"uPR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "6-8"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Starboard Subgrid";
+ name_tag = "Starboard Subgrid"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"uPU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"uQj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"uQq" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"uQs" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"uQv" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/shieldgen)
+"uQR" = (
+/obj/machinery/door/airlock/research{
+ name = "Toxins Launch Room";
+ req_access = list(7)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxins)
+"uRa" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"uRl" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/freezer,
+/area/maintenance/ab_Kitchen)
+"uRs" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"uRv" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/green,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"uRL" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxins)
+"uSL" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/mechbay)
+"uSY" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"uTi" = (
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/star)
+"uTr" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/nitrogen{
+ nitrogen = 82.1472
+ },
+/area/engineering/cetus/meteor/engineroom)
+"uTR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"uTV" = (
+/obj/structure/bed,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/item/bedsheet/pirate,
+/turf/simulated/floor/carpet/purcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"uTZ" = (
+/obj/item/stool/padded{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"uUa" = (
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/structure/curtain/open/shower/medical,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"uUc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"uUe" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced,
+/obj/item/clothing/gloves/arm_guard/combat,
+/obj/item/clothing/shoes/leg_guard/combat,
+/obj/item/clothing/suit/armor/combat,
+/obj/item/clothing/head/helmet/combat,
+/obj/machinery/door/window/brigdoor/eastright{
+ name = "Combat Armor"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Armory Tactical";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"uUC" = (
+/obj/turbolift_map_holder/cetus/utility,
+/turf/simulated/floor/plating/eris/under,
+/area/crew_quarters/cetus/meteor/atrium)
+"uUH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"uUK" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"uUS" = (
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"uUT" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"uVq" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"uVC" = (
+/obj/structure/table/rack/shelf,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 5
+ },
+/obj/item/storage/bag/circuits/basic{
+ pixel_y = 16
+ },
+/obj/item/implanter/restrainingbolt{
+ pixel_y = -3
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/tech)
+"uWE" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"uXq" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"uXA" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ dir = 8;
+ pixel_x = 29;
+ pixel_y = 5
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"uXC" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"uXG" = (
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Incomplete Engine 4";
+ dir = 5
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"uYf" = (
+/obj/machinery/power/generator{
+ anchored = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/redgrid,
+/area/engineering/cetus/meteor/engineroom)
+"uYi" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/vr)
+"uYo" = (
+/obj/machinery/atmospherics/binary/passive_gate{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"uYs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"uYx" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/pond)
+"uYy" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/dormfirstaid)
+"uYz" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"uYQ" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/structure/closet/walllocker/emerglocker/north,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"uZG" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/vr)
+"uZN" = (
+/obj/structure/boulder,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"uZS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Pool"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/cetus/meteor/pool)
+"uZV" = (
+/obj/structure/closet/firecloset/full/atmos,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxstorage)
+"uZW" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 10
+ },
+/turf/simulated/floor/water/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"vah" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"vaG" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"vaJ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "8-10"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"vaX" = (
+/obj/machinery/recharge_station,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"vbb" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ pixel_x = 22;
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/ragecage)
+"vbh" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"vcI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/dummystairs/hazardledge{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/meteor/hallway2)
+"vcJ" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"vcL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"vdh" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/hallway2)
+"veg" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/reinforced,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"vei" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/space,
+/area/space)
+"veD" = (
+/obj/machinery/vending/fitness,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"veR" = (
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/structure/curtain/open/shower/medical,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"vfj" = (
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/spacebus)
+"vfr" = (
+/obj/machinery/power/smes/buildable/point_of_interest,
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/spacebus)
+"vfX" = (
+/obj/structure/lattice,
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - Waste Handling Exterior 2";
+ dir = 10
+ },
+/turf/space,
+/area/space)
+"vfY" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8;
+ name = "Heated to Waste"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxins)
+"vgf" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"vgu" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"vgM" = (
+/obj/structure/ghost_pod/ghost_activated/unified_hole,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"vgZ" = (
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"vhe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/camera/network/exploration{
+ c_tag = "EXP - D1 Hangar 2";
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"vhk" = (
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"vhl" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/hallway2)
+"vhI" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"vhP" = (
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"vit" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"viv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ id = "genarmory";
+ name = "General Armory Access"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"viF" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -23;
+ pixel_x = 5;
+ req_access = list(13)
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "tox_test_airlock";
+ dir = 1;
+ pixel_y = -24;
+ pixel_x = -6;
+ req_one_access = list(11, 24, 47, 5)
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"viK" = (
+/obj/effect/mist,
+/turf/simulated/floor/water/deep/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"viM" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravgen)
+"vja" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"vjA" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"vjF" = (
+/obj/machinery/space_heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/exploration{
+ c_tag = "EXP - D1 Hangar 3";
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"vjW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"vkd" = (
+/obj/structure/table/bench/wooden,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/machinery/light_switch{
+ pixel_y = -13;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/machinery/button/remote/airlock{
+ id = "Dorms3";
+ name = "Bolt Control";
+ pixel_x = 24;
+ specialfunctions = 4;
+ dir = 8;
+ pixel_y = 12
+ },
+/obj/item/flashlight/lamp/green{
+ pixel_y = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"vkz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"vkD" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"vkW" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"vls" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"vlD" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"vmn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/stack/rods,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"vmv" = (
+/obj/item/roller{
+ pixel_y = -6
+ },
+/obj/item/roller,
+/obj/structure/table/rack/shelf,
+/obj/item/storage/firstaid/regular{
+ pixel_y = 17;
+ pixel_x = -4
+ },
+/obj/item/storage/pill_bottle/spaceacillin{
+ pixel_y = 15;
+ pixel_x = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/dormfirstaid)
+"vmG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/structure/loot_pile/surface/medicine_cabinet{
+ pixel_y = 32
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"vmS" = (
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"vnk" = (
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/plastitanium/full,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"vnr" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/water/deep/indoors/station,
+/area/maintenance/cetus/meteor/central)
+"vnx" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 9
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Pool 2"
+ },
+/turf/simulated/floor/water/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"vnZ" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"vob" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"vod" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxstorage)
+"voh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/window/northright{
+ name = "Visitation";
+ req_access = list(2)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/brig)
+"voj" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/airlock)
+"vom" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"voy" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"voA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"voC" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1441;
+ id = "n2_in";
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"voG" = (
+/obj/structure/closet,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/random/maintenance/engineering,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"voJ" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Treatment Center 2";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"vpb" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"vpe" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"vpy" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"vpE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_research{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "tox_airlock_interior";
+ locked = 1;
+ name = "Mixing Room Interior Airlock";
+ req_access = list(7)
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/cetus/meteor/toxins)
+"vqm" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"vqp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/chemical_analyzer,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"vqJ" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"vra" = (
+/obj/structure/disposalpipe/tagger{
+ name = "Space";
+ sort_tag = "Space"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/glasses/science,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Miscellaneous Research";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"vru" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"vrv" = (
+/obj/machinery/floodlight{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/starsec)
+"vsa" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-9"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"vst" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "8-10"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"vsE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"vsG" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"vsJ" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"vta" = (
+/obj/effect/floor_decal/corner/pink/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"vtv" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"vtX" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"vuk" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineBlast";
+ name = "Engine Monitoring Room Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginemonitor)
+"vul" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"vum" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/lime/border,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"vuq" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"vuC" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"vuD" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"vuR" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1;
+ name = "Riot Control"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/button/remote/blast_door{
+ id = "solitary";
+ name = "Solitary to Genpop Door";
+ req_one_access = list(2,4);
+ pixel_y = 25;
+ pixel_x = -27
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/security/cetus/meteor/hallway)
+"vvH" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"vwE" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"vwN" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"vwS" = (
+/obj/machinery/computer/operating{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_2)
+"vxO" = (
+/obj/structure/table/bench/wooden,
+/obj/structure/flora/pottedplant/thinbush{
+ pixel_y = 10
+ },
+/obj/machinery/light,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters,
+/obj/machinery/atm{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"vyO" = (
+/obj/machinery/vending/loadout/gadget,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/hallway2)
+"vzo" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"vzu" = (
+/obj/item/storage/firstaid/o2,
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/toxin,
+/obj/item/storage/firstaid/regular,
+/obj/item/roller,
+/obj/structure/closet/walllocker_double/medical/south,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"vzz" = (
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"vzJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"vzQ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/random/trash,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"vzY" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"vzZ" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color/red,
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 1
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"vAk" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ name = "Security RC";
+ pixel_y = -30
+ },
+/obj/item/radio/intercom/department/security{
+ dir = 4;
+ icon_override = "secintercom";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/cetus/meteor/forensic)
+"vAn" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/clothing/head/powdered_wig,
+/obj/random/junk,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/meteor/starsec)
+"vAz" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"vAK" = (
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"vBl" = (
+/obj/machinery/computer/security/engineering,
+/obj/item/geiger/wall/west,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"vBs" = (
+/obj/structure/lattice,
+/obj/machinery/shield_diffuser,
+/turf/space,
+/area/space)
+"vBE" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/blast/regular{
+ id = "SupermatterPort";
+ layer = 3.3;
+ name = "Reactor Blast Door";
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/engineering/cetus/meteor/engineroom)
+"vBH" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/sign/warning/compressed_gas{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxstorage)
+"vBJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/gate{
+ dir = 8;
+ name = "Workshop";
+ id = "Maintshop"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/cetus/workshop)
+"vCj" = (
+/obj/item/book/manual/chem_refinery,
+/obj/structure/table/reinforced,
+/obj/item/pickaxe,
+/obj/item/clothing/glasses/meson,
+/obj/item/reagent_scanner,
+/obj/item/reagent_scanner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/refinery)
+"vDi" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26;
+ pixel_y = -4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"vDj" = (
+/obj/structure/table/rack/holorack,
+/obj/item/circuitboard/thermoregulator{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/thermoregulator{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/shield_diffuser{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/shield_diffuser{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/shield_diffuser{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/shield_diffuser{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/arf_generator{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/arf_generator{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/unary_atmos/cooler{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/unary_atmos/cooler{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/unary_atmos/heater{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/unary_atmos/heater{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/unary_atmos/engine{
+ pixel_x = -3;
+ pixel_y = -8
+ },
+/obj/item/circuitboard/unary_atmos/engine{
+ pixel_x = -3;
+ pixel_y = -8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"vDn" = (
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/smes/buildable/engine_default{
+ RCon_tag = "Engine - Main"
+ },
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/effect/engine_setup/smes,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/smes)
+"vDw" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"vDL" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"vDX" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"vEp" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8;
+ name = "Heater to Waste"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxins)
+"vEK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"vFk" = (
+/obj/structure/table/rack/holorack,
+/obj/item/circuitboard/telecomms/processor{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/telecomms/processor{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/telecomms/receiver{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/telecomms/receiver{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/telecomms/relay{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/telecomms/relay{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/telecomms/server{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/telecomms/server{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/communications{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/communications{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/crew{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/obj/item/circuitboard/crew{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"vFm" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
+ },
+/obj/structure/sign/warning/nosmoking_2{
+ pixel_y = 31
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"vFr" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"vGe" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/cetus/meteor/toxins)
+"vGF" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "TEST - Central Primary Hallway 3";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"vHd" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxins)
+"vHf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"vHL" = (
+/obj/structure/reflector/single{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/corner/red{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 10
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"vHR" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"vIh" = (
+/obj/structure/bed/pillowpilefront/yellow,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/cozyobservatory)
+"vIL" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/meteor/starsec)
+"vIN" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance_hatch{
+ frequency = 1379;
+ id_tag = "engine_airlock_interior";
+ name = "Engine Airlock Interior";
+ req_access = list(11)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/airlock)
+"vJi" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"vJl" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"vJz" = (
+/obj/item/pipe_dispenser,
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"vJK" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"vJU" = (
+/obj/structure/table/steel,
+/obj/random/technology_scanner,
+/obj/random/toolbox,
+/obj/random/maintenance/misc,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"vKc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"vKe" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"vKA" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"vLt" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"vMo" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 2;
+ name = "Maintenance Access"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"vMq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"vMF" = (
+/obj/machinery/power/grounding_rod,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"vMX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"vNa" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"vNs" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"vNx" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1445;
+ id = "engine_exhaust_output";
+ name = "Engine Exhaust";
+ power_rating = 30000;
+ use_power = 1;
+ volume_rate = 700;
+ dir = 8
+ },
+/obj/machinery/air_sensor{
+ frequency = 1445;
+ id_tag = "engine_exhaust_sensor"
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/engineering/cetus/meteor/enginewaste)
+"vNZ" = (
+/obj/structure/morgue/crematorium{
+ dir = 1;
+ id = "Chapelburn"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/chapel_morgue/cetus/crypt)
+"vOz" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/meteor/central)
+"vOP" = (
+/turf/simulated/floor/reinforced,
+/area/hangar/cetus/two)
+"vOX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"vPG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explolocker)
+"vPZ" = (
+/turf/simulated/wall/r_wall{
+ can_open = 1
+ },
+/area/maintenance/cetus/meteor/central)
+"vQe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"vQs" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"vQu" = (
+/obj/item/pickaxe,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/jrfore)
+"vQL" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"vRd" = (
+/obj/structure/salvageable/computer,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"vRE" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass2,
+/area/maintenance/cetus/meteor/pond)
+"vRJ" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/dronefab)
+"vSb" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/meteor/engineroom)
+"vSH" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"vTi" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 9
+ },
+/obj/machinery/alarm/nobreach{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"vTr" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"vTt" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/structure/railing/overhang/grey,
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/meteor/starsec)
+"vTv" = (
+/obj/structure/table/standard,
+/obj/item/tape_roll,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"vTz" = (
+/obj/machinery/portable_atmospherics/powered/scrubber/huge{
+ scrub_id = "Brig"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/brig)
+"vUi" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"vUq" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"vUZ" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/lounge)
+"vVd" = (
+/obj/structure/stairs/spawner/north,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"vVj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"vVK" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/meteor/hallway2)
+"vVN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"vVU" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/bed/chair,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"vVW" = (
+/obj/structure/table/marble,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/blast/gate{
+ dir = 8;
+ name = "Kitchen";
+ id = "Maintcook"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/ab_Kitchen)
+"vVX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"vWt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"vWA" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"vWI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"vWK" = (
+/obj/structure/railing,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"vXm" = (
+/mob/living/simple_mob/vore/pitcher,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/maintenance/cetus/meteor/pond)
+"vXq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway2)
+"vYa" = (
+/obj/machinery/vending/phoronresearch{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"vYk" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/aftmed)
+"vZs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"vZD" = (
+/obj/structure/salvageable/autolathe,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/tech)
+"vZH" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"vZY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ brightness_color = "#DA0205";
+ brightness_power = 1;
+ brightness_range = 5;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"waq" = (
+/obj/machinery/door/airlock{
+ id_tag = "visitdoor";
+ name = "Visitation Area";
+ req_access = list(63)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/brig)
+"waY" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxstorage)
+"wbh" = (
+/obj/random/pottedplant,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"wcx" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"wcD" = (
+/obj/structure/firedoor_assembly,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"wdb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/ab_StripBar)
+"wdc" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"wds" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"wdt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"wdA" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"wdE" = (
+/obj/structure/disposalpipe/tagger{
+ name = "Morgue";
+ sort_tag = "Morgue"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"wdJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"wea" = (
+/obj/item/entrepreneur/dentist_scaler,
+/obj/effect/decal/remains,
+/obj/effect/decal/cleanable/blood/drip{
+ pixel_y = 21
+ },
+/obj/item/clothing/suit/storage/toggle/labcoat,
+/obj/item/pda/medical,
+/obj/item/bone/skull,
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/dentist)
+"web" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"wee" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "6-10"
+ },
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/obj/random/trash,
+/obj/structure/ladder/up,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"weo" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/clean,
+/obj/random/toy,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"wet" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/space,
+/area/space)
+"wev" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"wff" = (
+/obj/structure/salvageable/console{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"wfi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"wfp" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"wfz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"wfA" = (
+/obj/structure/table/rack/shelf,
+/obj/random/unidentified_medicine/drug_den,
+/obj/random/maintenance/research,
+/obj/random/maintenance/misc,
+/obj/item/clothing/mask/gas/voice,
+/obj/random/contraband,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"wfP" = (
+/obj/structure/disposalpipe/tagger{
+ name = "Research";
+ sort_tag = "Research"
+ },
+/obj/machinery/door/window/northleft{
+ name = "Research Delivery"
+ },
+/obj/machinery/conveyor{
+ id = "explomail"
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"wfS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"wgi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/stack/rods,
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"wgk" = (
+/obj/item/tape_roll{
+ pixel_x = -7;
+ pixel_y = 12
+ },
+/obj/item/tool/wrench,
+/obj/effect/floor_decal/techfloor/hole,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/meteor/vr)
+"wgu" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/ripperdock)
+"wgA" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/cetus/meteor/hallway)
+"wgX" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/chemical_dispenser/bar_coffee/full{
+ dir = 8;
+ pixel_x = 7
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"whp" = (
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/table/darkglass,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/shuttle/spacebus)
+"wht" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/camera/network/engine{
+ c_tag = "ENG - SMES Room";
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/smes)
+"whx" = (
+/obj/structure/table/darkglass,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_StripBar)
+"whC" = (
+/obj/structure/closet/secure_closet/freezer/kitchen{
+ locked = 0;
+ req_access = null
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/brig)
+"whG" = (
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/structure/sign/department/shield{
+ pixel_y = -31
+ },
+/obj/structure/table/steel,
+/obj/item/paper{
+ info = "This stuff is pretty simple. The red wire is the Master grid. The yellow wire is direct engine output. The blue wire heads to the shield generator's SMES. By default, the shields will charge from master grid, but this breaker station is here for those folks that like to power the shields straight from the engine. One of these stays on, the other stays off. DO NOT HAVE BOTH ON AT ONCE, OR BAD THINGS WILL HAPPEN.";
+ name = "ShieldGen Bypass info"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"wii" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/research{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "xenostation2_airlock_interior";
+ locked = 1;
+ name = "Xenobiology Internal Airlock";
+ req_access = list(55)
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "xenostation2_airlock_control";
+ name = "Xenobiology Access Button";
+ req_access = list(55);
+ pixel_x = -30;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"wiv" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"wiH" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"wiV" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"wiW" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 1;
+ name = "Medbay Delivery chute"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/borderfloor/cee{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercee,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"wjq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"wjs" = (
+/obj/structure/sign/directions/evac{
+ dir = 8
+ },
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"wjF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"wkb" = (
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/pond)
+"wkk" = (
+/obj/machinery/power/emitter/antique,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"wkp" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/fishery)
+"wkr" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"wlk" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/meteor/ragecage)
+"wmm" = (
+/obj/structure/sign/directions/dorms{
+ dir = 9;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/pool,
+/obj/structure/sign/directions/bar{
+ dir = 4;
+ pixel_y = -8
+ },
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"wmt" = (
+/obj/structure/sink/kitchen{
+ dir = 4;
+ pixel_x = 12
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"wmv" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"wmG" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ color = "White"
+ },
+/turf/simulated/floor/water/deep/pool,
+/area/crew_quarters/cetus/meteor/pool)
+"wmM" = (
+/obj/item/tool/screwdriver{
+ pixel_y = 7;
+ pixel_x = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/meteor/vr)
+"wmQ" = (
+/obj/effect/floor_decal/industrial/warning/tile,
+/obj/effect/floor_decal/industrial/warning/color/tile/red,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"wmU" = (
+/obj/machinery/atmospherics/tvalve/mirrored,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/toxins)
+"wni" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(1);
+ name = "Ballistic Weapons"
+ },
+/obj/item/gun/projectile/shotgun/pump,
+/obj/item/gun/projectile/shotgun/pump,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/armory)
+"wny" = (
+/obj/structure/table/rack,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"wow" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"woz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/maintenance/ab_Kitchen)
+"woJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"woP" = (
+/obj/structure/window/plastitanium/full{
+ anchored = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"woX" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"wpD" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/stylist)
+"wpP" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxins)
+"wqy" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/handcuffs{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/storage/box/chemimp{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/storage/box/trackimp,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"wqG" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"wqS" = (
+/obj/structure/table/hardwoodtable,
+/obj/random/maintenance/security,
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/meteor/starsec)
+"wrd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance/engi{
+ req_one_access = list(11);
+ name = "Engine Room"
+ },
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"wrf" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/workshop)
+"wsd" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/lounge)
+"wsC" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"wsH" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"wsI" = (
+/obj/machinery/light/small/fluorescent{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"wsR" = (
+/obj/machinery/computer/operating{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_1)
+"wsX" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/brig)
+"wtp" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"wtu" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxstorage)
+"wty" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"wuJ" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"wuU" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"wuY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/purple,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"wvk" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medbay_primary_storage)
+"wvC" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/grass2,
+/area/maintenance/cetus/meteor/pond)
+"wvN" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/kit/paint/ripley/flames_blue{
+ pixel_y = -5
+ },
+/obj/item/kit/paint/ripley/flames_red{
+ pixel_y = 5
+ },
+/obj/item/kit/paint/ripley/death{
+ pixel_y = 16
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"wvO" = (
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"wwo" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"wwu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"wwL" = (
+/obj/structure/closet/athletic_swimwear,
+/obj/structure/window/reinforced,
+/obj/item/clothing/under/swimsuit/streamlined,
+/obj/item/clothing/under/swimsuit/striped,
+/obj/item/clothing/under/swimsuit/risque,
+/obj/item/clothing/under/swimsuit/stripper/mankini,
+/obj/item/clothing/under/swimsuit/stripper/stripper_green,
+/obj/item/clothing/under/swimsuit/stripper/stripper_pink,
+/obj/item/clothing/under/swimsuit/cowbikini,
+/obj/item/clothing/under/swimsuit/earth,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"wwN" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/item/storage/backpack/dufflebag/syndie/med,
+/obj/structure/closet/crate,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/aftmed)
+"wwY" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/closet{
+ name = "welding equipment"
+ },
+/obj/item/weldingtool/largetank,
+/obj/item/clothing/head/welding,
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/glasses/welding,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"wxa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"wxQ" = (
+/obj/structure/table,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/meteor/starsec)
+"wyn" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/light{
+ layer = 3
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"wyv" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"wyI" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"wyM" = (
+/obj/structure/table/rack/holorack,
+/obj/item/circuitboard/candymachine{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/candymachine{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/microwave{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/microwave{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/oven{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/oven{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/fryer{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/fryer{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/cerealmaker{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/cerealmaker{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/grill{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/obj/item/circuitboard/grill{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"wze" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ req_one_access = list(7, 9, 39, 55);
+ name = "Dangerous Specimens Testing"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"wzf" = (
+/obj/structure/table/woodentable,
+/obj/item/packageWrap,
+/obj/item/tool/screwdriver,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/bar)
+"wzo" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"wzS" = (
+/obj/structure/railing/overhang/grey,
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/ab_StripBar)
+"wzW" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1;
+ icon_state = "burst_r"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/shuttle/cryo/station)
+"wAx" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "6-10"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"wAF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"wAP" = (
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"wBA" = (
+/obj/structure/lattice,
+/obj/structure/closet/coffin,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/chapel/chapel_morgue/cetus/crypt)
+"wBB" = (
+/obj/structure/cable{
+ icon_state = "6-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Gravity Generator"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/gravsubstation)
+"wBC" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"wBQ" = (
+/obj/structure/disposaloutlet,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/toxtest)
+"wCc" = (
+/obj/structure/cable/yellow{
+ icon_state = "9-10"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engine Monitoring Room";
+ req_access = list(11)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/meteor/enginemonitor)
+"wCA" = (
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"wDc" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"wDF" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"wDL" = (
+/obj/structure/table/rack,
+/obj/item/inflatable_duck{
+ pixel_y = 10
+ },
+/obj/item/inflatable_duck{
+ pixel_y = 6
+ },
+/obj/item/inflatable_duck,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"wDM" = (
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"wEb" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/blood/AMinus,
+/obj/item/reagent_containers/blood/APlus,
+/obj/item/reagent_containers/blood/BMinus,
+/obj/item/reagent_containers/blood/BPlus,
+/obj/item/reagent_containers/blood/OPlus,
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"wEx" = (
+/obj/item/broken_bottle,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"wEC" = (
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/forensic)
+"wEN" = (
+/obj/structure/bed/chair,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/construction)
+"wFi" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravgen)
+"wFA" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/cozyobservatory)
+"wFW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"wGm" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"wGT" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/stool/padded{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"wHm" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"wHB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "Dorms6";
+ name = "Room 6"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"wHC" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/spacebus)
+"wHD" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/monotile,
+/area/hangar/cetus/two)
+"wHS" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"wHU" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/shoes/swimmingfins{
+ pixel_y = -5
+ },
+/obj/item/clothing/shoes/swimmingfins{
+ pixel_y = 4
+ },
+/obj/item/clothing/shoes/swimmingfins{
+ pixel_y = 15
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"wIb" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"wIg" = (
+/obj/structure/sign/directions/evac,
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"wIv" = (
+/obj/structure/table/steel,
+/obj/random/toolbox,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/machinery/recharger,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"wJd" = (
+/obj/structure/table/reinforced,
+/obj/random/mega_nukies,
+/obj/random/cigarettes,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Hallway 1";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"wJJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"wJO" = (
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"wJV" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/ab_StripBar)
+"wJW" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"wJY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"wKl" = (
+/turf/simulated/wall,
+/area/maintenance/abmedical)
+"wKr" = (
+/turf/simulated/mineral/cetus,
+/area/hangar/cetus/explolocker)
+"wKN" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"wKV" = (
+/obj/machinery/door/window/survival_pod{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/shuttle/spacebus)
+"wLv" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/machinery/button/remote/airlock{
+ id = "ward1";
+ name = "Ward A Bolts";
+ specialfunctions = 4;
+ pixel_x = 4
+ },
+/obj/machinery/button/flasher{
+ name = "Ward A Flasher";
+ id = "ward1";
+ pixel_y = 8;
+ pixel_x = -5
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = -12;
+ dir = 8
+ },
+/obj/machinery/button/windowtint/multitint{
+ id = "ward1";
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"wLx" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/machinery/atmospherics/portables_connector{
+ layer = 10.1;
+ dir = 4
+ },
+/obj/item/tool/wrench,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/hallway)
+"wLE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/ab_StripBar)
+"wMf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/meteor/jraft)
+"wMg" = (
+/turf/simulated/wall,
+/area/medical/cetus/dormfirstaid)
+"wMw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"wMB" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/item/material/fishing_net,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/fishery)
+"wNl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/armory)
+"wNn" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"wNq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"wNG" = (
+/obj/item/stool/padded{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"wNP" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "tox_airlock_control";
+ pixel_x = -24;
+ tag_airpump = "tox_airlock_pump";
+ tag_chamber_sensor = "tox_airlock_sensor";
+ tag_exterior_door = "tox_airlock_exterior";
+ tag_interior_door = "tox_airlock_interior"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"wNW" = (
+/obj/item/bodysnatcher{
+ pixel_y = 5
+ },
+/obj/item/gun/energy/sizegun,
+/obj/item/mindbinder{
+ pixel_y = -6
+ },
+/obj/structure/table/rack/steel,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/central)
+"wOi" = (
+/obj/machinery/vr_sleeper,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - VR";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/vr)
+"wOk" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"wOQ" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/black,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"wPa" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"wPd" = (
+/obj/machinery/atmospherics/valve/digital{
+ dir = 1;
+ name = "Emergency Cooling Valve 1"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"wPj" = (
+/obj/machinery/shield_diffuser,
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"wPo" = (
+/turf/simulated/wall,
+/area/medical/morgue/cetus)
+"wPq" = (
+/obj/machinery/dnaforensics,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/security/cetus/meteor/forensic)
+"wPE" = (
+/obj/effect/floor_decal/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"wQg" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D1 Utility Atrium 2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"wQk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/turcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm3)
+"wQN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ req_one_access = list(11);
+ name = "Engine Supplies"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"wQS" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/substation/central)
+"wQZ" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"wRh" = (
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "Old_Engine_Airlock";
+ req_access = list(13);
+ dir = 4;
+ pixel_x = -24;
+ pixel_y = 5
+ },
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -22;
+ req_access = list(13);
+ pixel_y = -7
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"wRo" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/table/rack/shelf,
+/obj/random/toolbox,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"wRH" = (
+/obj/machinery/door/window/northleft{
+ req_access = list(8)
+ },
+/obj/machinery/door/window/southleft{
+ req_access = list(8)
+ },
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/toxtest)
+"wRN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"wSg" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"wSz" = (
+/obj/structure/table/steel,
+/obj/item/sleevemate,
+/obj/item/storage/box/bodybags,
+/obj/item/autopsy_scanner,
+/obj/item/surgical/scalpel,
+/obj/item/surgical/cautery,
+/turf/simulated/floor/tiled/white,
+/area/medical/morgue/cetus)
+"wTg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"wTs" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/closet/secure_closet/medical2,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"wTy" = (
+/obj/random/forgotten_tram,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/meteor/starsec)
+"wUa" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"wUl" = (
+/obj/structure/stairs/spawner/south{
+ pixel_x = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"wUP" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"wVa" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/stairwelljr1)
+"wVq" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/structure/table/reinforced,
+/obj/effect/engine_setup/shutters,
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine control room blast doors.";
+ id = "EngineBlast";
+ name = "Engine Monitoring Room Blast Doors";
+ pixel_x = -6;
+ pixel_y = -3;
+ req_access = list(10)
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine charging port.";
+ id = "SupermatterPort";
+ name = "Reactor Blast Doors";
+ pixel_x = 4;
+ pixel_y = -3;
+ req_access = list(10)
+ },
+/obj/machinery/button/remote/emitter{
+ desc = "A remote control-switch for the engine emitter.";
+ id = "EngineEmitter";
+ name = "Engine Emitter";
+ pixel_x = -1;
+ pixel_y = 8;
+ req_access = list(10)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"wVB" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"wVH" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"wWb" = (
+/obj/structure/railing/overhang/grey,
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/meteor/starsec)
+"wWn" = (
+/obj/structure/bed/chair,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"wWG" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - D1 Hall 1";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"wXf" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"wXq" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"wXP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"wXX" = (
+/obj/structure/table/standard,
+/obj/item/deskbell{
+ pixel_y = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"wYb" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/nofail,
+/obj/random/tech_supply/nofail,
+/obj/random/tech_supply/nofail,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"wYm" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"wYp" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"wZd" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"wZj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"wZk" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"wZl" = (
+/obj/structure/table/rack/shelf,
+/obj/item/flash,
+/obj/random/forgotten_tram,
+/obj/random/maintenance/misc,
+/obj/random/mainttoyloot/nofail,
+/obj/random/fromList/TFGuns,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"wZn" = (
+/obj/machinery/light,
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/meteor/dorm4)
+"wZy" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/table/steel,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tool,
+/obj/random/tool/power,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"wZX" = (
+/obj/structure/table/rack,
+/obj/item/circuitboard/industrial_reagent_waste_processor{
+ pixel_y = 13
+ },
+/obj/item/circuitboard/industrial_reagent_waste_processor{
+ pixel_y = 11
+ },
+/obj/item/circuitboard/industrial_reagent_reactor{
+ pixel_y = 9
+ },
+/obj/item/circuitboard/industrial_reagent_reactor{
+ pixel_y = 7
+ },
+/obj/item/circuitboard/industrial_reagent_vat{
+ pixel_y = 5
+ },
+/obj/item/circuitboard/industrial_reagent_vat{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/industrial_reagent_pump{
+ pixel_y = 1
+ },
+/obj/item/circuitboard/industrial_reagent_hub{
+ pixel_y = -1
+ },
+/obj/item/circuitboard/industrial_reagent_furnace{
+ pixel_y = -3
+ },
+/obj/item/circuitboard/industrial_reagent_filter{
+ pixel_y = -5
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"xaf" = (
+/obj/machinery/floodlight{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/d1port)
+"xah" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"xat" = (
+/obj/machinery/atmospherics/pipe/simple/visible/purple{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"xaw" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"xaL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"xaT" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/maintenance/ab_Hydroponics)
+"xbb" = (
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/maintenance/cetus/tech)
+"xbo" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/item/surgical/surgicaldrill,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/dentist)
+"xbC" = (
+/turf/simulated/mineral/cetus/edge,
+/area/maintenance/cetus/meteor/jraft)
+"xcd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"xcJ" = (
+/obj/machinery/deployable/barrier,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ color = "#989898";
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/hallway)
+"xdj" = (
+/obj/machinery/computer/ship/engines,
+/turf/simulated/floor/tiled/dark,
+/area/shuttle/spacebus)
+"xdp" = (
+/obj/effect/floor_decal/industrial/warning/tile,
+/obj/effect/floor_decal/industrial/warning/color/tile/red,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"xdJ" = (
+/obj/structure/reagent_dispensers/foam,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"xec" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/turf/space,
+/area/space)
+"xek" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jrfore)
+"xel" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/recharge_station,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/maintenance/cetus/mechbay)
+"xeC" = (
+/obj/effect/floor_decal/industrial/warning/tile,
+/obj/effect/floor_decal/industrial/warning/color/tile/red,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"xeE" = (
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"xeX" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"xfa" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/meteor/carbonresearch)
+"xfe" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/grass,
+/area/crew_quarters/cetus/meteor/atrium)
+"xfm" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"xft" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"xfu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"xfN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"xfP" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/toxtest)
+"xgd" = (
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/cetus/atriumd1)
+"xge" = (
+/obj/machinery/floodlight{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/starsec)
+"xgn" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"xgN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"xgP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/workshop)
+"xgZ" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"xhd" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "6-10"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"xhg" = (
+/obj/effect/floor_decal/corner/pink/diagonal,
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"xhy" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/pool)
+"xhH" = (
+/turf/simulated/floor/tiled/airless,
+/area/rnd/test_area)
+"xiZ" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"xja" = (
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"xjx" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"xjI" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"xjJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-9"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"xjN" = (
+/obj/structure/lattice,
+/obj/structure/flora/lily1,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/pond)
+"xjW" = (
+/obj/structure/table/standard,
+/obj/item/surgical/hemostat,
+/obj/item/surgical/cautery,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/ripperdock)
+"xkv" = (
+/obj/effect/floor_decal/corner_techfloor_gray{
+ dir = 10
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/meteor/vr)
+"xkA" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/random/trash,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/star)
+"xkG" = (
+/obj/structure/salvageable/machine,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"xkZ" = (
+/obj/structure/table,
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/meteor/starsec)
+"xlf" = (
+/obj/machinery/vending/loadout/loadout_misc,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"xlh" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/crew_quarters/sleep/cetus/meteor/dorm10)
+"xlu" = (
+/obj/structure/table/standard,
+/obj/structure/sink/countertop{
+ pixel_y = 14
+ },
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"xlw" = (
+/obj/structure/bed/pillowpile/yellow,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/cozyobservatory)
+"xlG" = (
+/obj/structure/table/marble,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/blast/gate{
+ dir = 8;
+ name = "Kitchen";
+ id = "Maintcook"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/ab_Kitchen)
+"xlQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"xmi" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/meteor/stairwellf1)
+"xmp" = (
+/obj/machinery/papershredder,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/lounge)
+"xnj" = (
+/obj/structure/girder,
+/obj/structure/grille,
+/turf/simulated/floor/plating,
+/area/security/cetus/meteor/brig)
+"xnk" = (
+/obj/structure/table/bench/wooden,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/machinery/light_switch{
+ pixel_y = -13;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/machinery/button/remote/airlock{
+ id = "Dorms5";
+ name = "Bolt Control";
+ pixel_x = 24;
+ specialfunctions = 4;
+ dir = 8;
+ pixel_y = 12
+ },
+/obj/item/flashlight/lamp/green{
+ pixel_y = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"xno" = (
+/obj/effect/floor_decal/corner_techfloor_gray{
+ dir = 10
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/meteor/vr)
+"xnJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"xod" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 1
+ },
+/obj/item/radio/intercom/department/medbay{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"xol" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/toxins)
+"xoA" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/gun/projectile/garand,
+/obj/item/gun/projectile/automatic/p90,
+/obj/item/gun/projectile/automatic/p90,
+/obj/machinery/door/window/brigdoor/southright{
+ name = "Ballistics"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"xpE" = (
+/obj/random/trash,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"xql" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"xqt" = (
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = -9
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"xqF" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"xre" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"xru" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"xrv" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/purple,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxins)
+"xrx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/medical/cetus/atriumd1)
+"xrP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/security/cetus/meteor/hallway)
+"xsg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"xsi" = (
+/obj/structure/bed,
+/obj/item/bedsheet/cosmos,
+/turf/simulated/floor/carpet/retro,
+/area/crew_quarters/sleep/cetus/meteor/dorm8)
+"xsE" = (
+/obj/structure/ladder/up,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"xuz" = (
+/obj/structure/table/standard,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/chemical_dispenser/full{
+ pixel_y = 10;
+ pixel_x = -5
+ },
+/obj/item/reagent_containers/glass/beaker{
+ pixel_y = 3;
+ pixel_x = -15
+ },
+/obj/item/reagent_containers/glass/beaker{
+ pixel_y = 3;
+ pixel_x = 5
+ },
+/obj/item/reagent_containers/glass/beaker{
+ pixel_y = 3;
+ pixel_x = -5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"xuO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"xve" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"xwc" = (
+/obj/effect/floor_decal/industrial/warning/tile,
+/obj/effect/floor_decal/industrial/warning/color/tile/red,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"xwY" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/starsec)
+"xxd" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"xxg" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"xxz" = (
+/obj/machinery/oxygen_pump/anesthetic,
+/turf/simulated/wall,
+/area/medical/Surgery_Room_1)
+"xxP" = (
+/obj/machinery/vending/loadout/costume,
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"xxR" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"xyi" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"xym" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/borderfloor/cee{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercee,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"xzl" = (
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"xzn" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"xzK" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm5)
+"xzR" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"xzU" = (
+/obj/turbolift_map_holder/cetus/atrium,
+/turf/simulated/floor/plating/eris/under,
+/area/crew_quarters/cetus/meteor/hallway2)
+"xAc" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"xAk" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"xAO" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/stairwelljr1)
+"xAT" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"xBe" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"xBf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"xBz" = (
+/obj/structure/table/standard,
+/obj/machinery/light/small/yellowed,
+/obj/item/seeds/random,
+/obj/random/mega_nukies,
+/obj/random/maintenance/morestuff,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/item/clothing/glasses/meson/aviator,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"xBA" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/circuitboard/security{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/security{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/security{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/security{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/security{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/security{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/circuitboard/security/engineering{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/security/engineering{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/security/engineering{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/circuitboard/security/mining{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/security/mining{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/security/mining{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/security/xenobio{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/security/xenobio{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/security/xenobio{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/circuitboard/secure_data{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/secure_data{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/secure_data{
+ pixel_x = -2;
+ pixel_y = -5
+ },
+/obj/item/circuitboard/security/telescreen/entertainment{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/obj/item/circuitboard/security/telescreen/entertainment{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/obj/item/circuitboard/security/telescreen/entertainment{
+ pixel_x = -3;
+ pixel_y = -9
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"xBI" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Engineer"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/enginemonitor)
+"xBU" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/cetus/meteor/hallway1)
+"xCp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/cetus/meteor/forensic)
+"xCr" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/water/pool/station,
+/area/crew_quarters/cetus/meteor/pool)
+"xCL" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/boxing/gym,
+/area/security/cetus/meteor/brig)
+"xCP" = (
+/obj/structure/disposalpipe/junction/yjunction,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"xCS" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/sign/deathsposal{
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"xCU" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"xDA" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/access_button{
+ name = "exterior access button";
+ pixel_x = -28;
+ pixel_y = -8
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"xDE" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"xDT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"xDV" = (
+/obj/effect/overmap/visitable/sector/Cetus,
+/turf/space,
+/area/space)
+"xEp" = (
+/obj/structure/flora/underwater/grass1,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/ab_Hydroponics)
+"xEZ" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/research,
+/obj/random/tank,
+/obj/item/storage/briefcase/inflatable,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"xFe" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"xFl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"xFs" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"xFC" = (
+/obj/machinery/atmospherics/binary/circulator{
+ anchored = 1;
+ dir = 4
+ },
+/turf/simulated/floor/redgrid,
+/area/engineering/cetus/meteor/engineroom)
+"xGt" = (
+/obj/structure/table/rack/shelf,
+/obj/item/mecha_parts/part/ripley_right_leg{
+ pixel_x = 7;
+ pixel_y = -9
+ },
+/obj/random/forgotten_tram,
+/obj/random/tool/powermaint,
+/obj/random/tool,
+/obj/random/maintenance/security,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/morestuff,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"xGA" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/cetus/meteor/jraft)
+"xGC" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/up{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"xGI" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"xGW" = (
+/obj/effect/floor_decal/corner/pink/diagonal,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/ab_Kitchen)
+"xGZ" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/techstorage)
+"xHD" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"xIE" = (
+/obj/structure/lattice,
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"xIG" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"xIS" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"xJg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ pixel_x = 29;
+ name = "Security Access";
+ id = "secmaint";
+ req_access = list(63)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/starsec)
+"xJw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"xJO" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/dangerousspecimens)
+"xJP" = (
+/obj/random/junk,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/construction)
+"xKq" = (
+/obj/machinery/vr_sleeper,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/meteor/vr)
+"xLb" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/surgery_hallway)
+"xLj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"xLl" = (
+/obj/machinery/light/small/yellowed,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"xLt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"xLA" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Ammo"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/cetus/meteor/armory)
+"xMa" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ id_tag = "SC-ALCvirology2";
+ name = "Virology Access Console";
+ tag_exterior_door = "virology2_airlock_exterior";
+ tag_interior_door = "virology2_airlock_interior";
+ pixel_y = 23
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/meteor/carbonresearch)
+"xMn" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the test chamber.";
+ layer = 4;
+ name = "Test Chamber Telescreen";
+ network = list("Toxins Test Area");
+ pixel_y = 9
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxtest)
+"xMF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"xMH" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/yellow{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"xMQ" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"xNg" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/color/red{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"xND" = (
+/obj/structure/dummystairs,
+/obj/structure/barricade,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"xNW" = (
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the engine control room blast doors.";
+ id = "engineroomaccess";
+ name = "Engine Room Blast Doors";
+ req_one_access = list(11,24);
+ dir = 4;
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"xNZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"xOj" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_2)
+"xOm" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/sterile,
+/area/medical/Surgery_Room_1)
+"xOB" = (
+/obj/machinery/computer/ship/helm,
+/turf/simulated/floor/tiled/dark,
+/area/shuttle/spacebus)
+"xPi" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/meteor/portsec)
+"xPD" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"xPH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"xQm" = (
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"xQx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/surgery_storage)
+"xQz" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/atrium)
+"xQB" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/refinery)
+"xQD" = (
+/obj/machinery/button/windowtint{
+ id = "d1observatory";
+ pixel_x = -12;
+ pixel_y = -22
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 10;
+ pixel_y = -25;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/cozyobservatory)
+"xQN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 5
+ },
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/toxins)
+"xQX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway1)
+"xQZ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"xRd" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxstorage)
+"xRi" = (
+/obj/machinery/autolathe/armory,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/cetus/meteor/armory)
+"xRm" = (
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/cetus/meteor/ragecage)
+"xRu" = (
+/obj/random/trash,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"xRJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"xRU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/stairwelljr1)
+"xSa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/meteor/bar)
+"xSc" = (
+/obj/machinery/doppler_array,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/rnd/cetus/meteor/toxtest)
+"xSk" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/turf/simulated/floor/reinforced/airless,
+/area/rnd/cetus/meteor/toxins)
+"xSx" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/ab_StripBar)
+"xSC" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/mechbay)
+"xTp" = (
+/obj/machinery/atmospherics/binary/pump/high_power{
+ dir = 1
+ },
+/obj/effect/engine_setup/pump_max,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"xTC" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ dir = 8;
+ pixel_x = 29;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm7)
+"xUg" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/tech)
+"xUy" = (
+/obj/structure/cryofeed{
+ pixel_x = 32
+ },
+/obj/machinery/cryopod,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/cetus/meteor/brig)
+"xUT" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/brig)
+"xVm" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"xVB" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/white,
+/area/maintenance/abmedical)
+"xVM" = (
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/restrooms)
+"xWm" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/meteor/toxstorage)
+"xWp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"xWr" = (
+/obj/structure/ladder/up,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/tech)
+"xWu" = (
+/obj/machinery/disposal/wall/cleaner{
+ dir = 4;
+ name = "Resleeving lost & found bin";
+ pixel_x = -35
+ },
+/obj/structure/table/glass,
+/obj/random/soap,
+/obj/random/soap,
+/obj/random/soap,
+/obj/random/soap,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"xXp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Joint Research Substation";
+ req_one_access = list(11, 24, 47, 5)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"xXN" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel/random{
+ pixel_y = 13
+ },
+/obj/item/towel/random{
+ pixel_y = 17
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"xXV" = (
+/obj/structure/table/standard,
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/color{
+ color = "#00B8B2"
+ },
+/obj/machinery/vending/wallmed1{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Room_1)
+"xYb" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D1 Central Ring 8";
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/meteor/hallway2)
+"xYk" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/meteor/atriumdeck1)
+"xYn" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"xYu" = (
+/obj/structure/bed/chair/sofa/left/orange{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"xYL" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 21
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/engine)
+"xZK" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ dir = 8;
+ pixel_x = 29;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm9)
+"yad" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/atriumdeck1)
+"yal" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"yau" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/random/trash,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"yav" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/foremed)
+"yaQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+"ybb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/meteor/dorm6)
+"ybO" = (
+/obj/machinery/light/small/fluorescent{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm2)
+"yco" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/grey/diagonal,
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/meteor/laundry)
+"ycr" = (
+/obj/random/obstruction,
+/obj/random/trash,
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/random/mob/mouse,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/central)
+"ycM" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"ycP" = (
+/obj/machinery/computer/area_atmos/tag{
+ dir = 1;
+ scrub_id = "Toxins"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/toxstorage)
+"ycR" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/meteor/toxins)
+"ydi" = (
+/obj/structure/stairs/spawner/south,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/meteor/carbonresearch)
+"ydp" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -15;
+ pixel_y = -3
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -29;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"ydq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/shuttle/floor/black,
+/area/maintenance/cetus/meteor/pond)
+"ydu" = (
+/obj/machinery/atmospherics/unary/freezer{
+ icon_state = "freezer"
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/atriumd1)
+"ydF" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/engineroom)
+"ydL" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/cetus/meteor/brig)
+"yee" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"yer" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/meteor/barrestrooms)
+"yez" = (
+/obj/structure/table/steel,
+/obj/random/cash/big,
+/obj/item/storage/fancy/cigarettes/professionals{
+ pixel_y = 12;
+ pixel_x = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"yeN" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/meteor/enginewaste)
+"yeP" = (
+/obj/effect/landmark/event_spawn/morphspawn,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"yeV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "Dorms1";
+ name = "Room 1"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/meteor/dorm1)
+"yfi" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/two)
+"yfr" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/dronefab)
+"yfE" = (
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/maintenance/cetus/meteor/ragecage)
+"yfL" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/cetus/dormfirstaid)
+"yfZ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"ygU" = (
+/obj/random/trash,
+/obj/random/junk,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/portsec)
+"yhv" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/hallway)
+"yhT" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/meteor/laundry)
+"yhY" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd1)
+"yig" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/engine)
+"yip" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"yiw" = (
+/obj/structure/flora/underwater/plant1,
+/turf/simulated/floor/water/indoors/station,
+/area/maintenance/ab_Hydroponics)
+"yiC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/cetus/meteor/hallway)
+"yiF" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/random/mob/mouse,
+/turf/simulated/floor/lino,
+/area/maintenance/ab_GeneralStore)
+"yiM" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/floor/water/deep/indoors/station,
+/area/maintenance/cetus/meteor/central)
+"yiT" = (
+/obj/structure/table/steel,
+/obj/random/contraband,
+/obj/random/maintenance/research,
+/obj/random/fromList/TFGuns,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d1port)
+"yjO" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/meteor/jraft)
+"yke" = (
+/obj/machinery/pointdefense{
+ id_tag = "PD Main"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"ykq" = (
+/obj/structure/lattice,
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/pond)
+"ykH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/meteor/showers)
+"ykI" = (
+/turf/simulated/wall,
+/area/maintenance/ab_Hydroponics)
+"ykO" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/cetus/meteor/gravsubstation)
+"yli" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/asteroid/cetus/d1)
+"ylp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/meteor/cafeteriaf1)
+"ylK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/meteor/jraft)
+
+(1,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+xDV
+"}
+(2,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(3,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(4,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(5,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+vBs
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(6,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(7,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(8,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(9,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(10,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(11,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(12,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+suH
+cAo
+cAo
+oDF
+xhH
+xhH
+cAo
+cAo
+suH
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(13,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+suH
+suH
+cAo
+jty
+jUX
+xhH
+xhH
+dzr
+cAo
+suH
+suH
+suH
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(14,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+vBs
+lyH
+qFw
+qFw
+qFw
+suH
+xhH
+xhH
+jAm
+cnX
+dwj
+xhH
+xhH
+suH
+qFw
+qFw
+qFw
+lyH
+vBs
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(15,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+lyH
+qFw
+qFw
+qFw
+suH
+xhH
+xhH
+jUX
+thr
+xhH
+xhH
+xhH
+suH
+qFw
+qFw
+qFw
+lyH
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(16,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+vBs
+lyH
+qFw
+qFw
+qFw
+suH
+xhH
+xhH
+xfu
+cGK
+iKd
+xhH
+xhH
+suH
+qFw
+qFw
+qFw
+lyH
+vBs
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(17,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+suH
+suH
+cAo
+cFZ
+jUX
+cGK
+xhH
+ktO
+cAo
+suH
+suH
+suH
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(18,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+suH
+cAo
+cAo
+kKU
+taz
+dTc
+cAo
+cAo
+suH
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(19,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+suH
+suH
+len
+suH
+suH
+suH
+suH
+suH
+suH
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(20,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(21,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(22,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(23,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+hSz
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(24,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(25,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(26,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(27,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(28,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(29,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(30,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(31,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(32,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(33,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(34,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(35,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(36,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+wPj
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(37,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+vBs
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(38,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+kps
+kps
+kps
+pdN
+wPj
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+wPj
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(39,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+vBs
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(40,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+kps
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+kps
+pdN
+suH
+suH
+suH
+suH
+hSz
+suH
+suH
+suH
+suH
+suH
+vBs
+pdN
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+rep
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(41,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+kps
+kps
+lUm
+lUm
+qFw
+qFw
+hSz
+qFw
+qFw
+qFw
+suH
+qFw
+dEC
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(42,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+kps
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+kps
+pdN
+lUm
+lUm
+lUm
+lUm
+hSz
+qFw
+qFw
+qFw
+jDV
+jDV
+jDV
+pdN
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+kps
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(43,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+qHL
+qHL
+qHL
+kps
+kps
+pBy
+rvt
+lUm
+lUm
+tNA
+lUm
+wPj
+ycR
+rFZ
+rFZ
+rFZ
+ycR
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(44,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+csJ
+qHL
+qHL
+deV
+sxi
+deV
+lxw
+lxw
+xfP
+deV
+elx
+ycR
+tQE
+xSk
+vGe
+xQN
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(45,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+qHL
+lzr
+dvK
+qbI
+deV
+viF
+deV
+xMn
+ldP
+lQC
+xSc
+lQv
+ycR
+slC
+xSk
+vGe
+ruM
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(46,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+clf
+wvO
+qbI
+deV
+szx
+deV
+adz
+hBs
+sLm
+wRH
+gil
+ycR
+thU
+ezp
+qKf
+hSg
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(47,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+qHL
+nxZ
+xek
+qbI
+deV
+vFm
+fdT
+rML
+xBf
+uEs
+wBQ
+agQ
+ycR
+cLT
+aSK
+cLT
+hSg
+ycR
+ycR
+ycR
+ycR
+ycR
+ycR
+ycR
+ycR
+ycR
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(48,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+pFv
+xek
+qbI
+deV
+rfj
+lDe
+jDN
+owJ
+dzh
+deV
+deV
+axO
+gji
+qhX
+okx
+uaB
+dQg
+sQq
+wpP
+fTQ
+ojW
+osY
+lJU
+kgj
+ycR
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(49,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+qHL
+lJx
+exN
+qbI
+qHL
+qHL
+qHL
+deV
+uvx
+ckz
+hyW
+afH
+ycR
+xol
+vpE
+rsH
+hSg
+rsm
+vEp
+iDf
+vfY
+fEw
+cny
+urm
+gnS
+ycR
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(50,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+qHL
+pCK
+qHL
+jUR
+qHL
+qHL
+sBC
+kvz
+kPw
+rYM
+jPU
+uQR
+nOW
+pEg
+fDQ
+nPZ
+wNP
+ilV
+mqs
+hWd
+hza
+pQF
+sxP
+dmC
+iGx
+igZ
+ycR
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(51,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+qHL
+exN
+exN
+clf
+exN
+exN
+exN
+wvO
+lca
+deV
+deV
+deV
+ycR
+rwY
+nQy
+kIe
+jqk
+vgf
+xat
+lox
+jgn
+bXO
+xrv
+pZn
+uNN
+iGx
+uPw
+ycR
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(52,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+xek
+pCK
+qHL
+qHL
+qHL
+qHL
+qHL
+lSA
+ezx
+qHL
+kHT
+ycR
+vYa
+deA
+maL
+iag
+mDF
+gGd
+imK
+wmU
+fBk
+kNP
+aST
+hWQ
+iGx
+lwg
+ycR
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(53,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+pCK
+pCK
+pCK
+pCK
+qHL
+jUR
+qHL
+qHL
+cvn
+rCc
+nNR
+qHL
+qHL
+qHL
+qHL
+qHL
+ycR
+ycR
+ycR
+ycR
+ycR
+ycR
+ffY
+uUH
+hVL
+uYo
+rma
+uPr
+jon
+mJa
+nqH
+ycR
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(54,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+pCK
+cHD
+iUi
+awK
+awK
+awK
+sEP
+awK
+qHL
+sRV
+cSs
+xfa
+hfB
+kav
+gJw
+oey
+hfB
+fHv
+rOj
+wBC
+uoQ
+ydi
+ycR
+dYc
+uds
+vHd
+uRL
+rpn
+hwW
+aZb
+tkK
+uug
+ycR
+sVO
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(55,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+skw
+iNU
+awK
+awK
+pCK
+qHL
+qHL
+qHL
+qHL
+hfB
+ldg
+hfB
+hfB
+hfB
+hfB
+iOS
+hfB
+hfB
+nBy
+aKV
+aKV
+aKV
+ycR
+ycR
+bRs
+ycR
+ycR
+hyW
+mbf
+ycR
+ycR
+ycR
+ycR
+sVO
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(56,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+pCK
+lRe
+vQu
+awK
+pCK
+pCK
+qHL
+oSC
+jLC
+fbC
+wLv
+vJK
+heX
+nIW
+cRm
+vnZ
+oPd
+hfB
+xMa
+sev
+aKV
+xdJ
+vkD
+qng
+eYH
+qfy
+kST
+gBV
+kYx
+wVa
+xAO
+gBV
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(57,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+awK
+cHD
+pCK
+awK
+awK
+pCK
+qHL
+tWO
+dBP
+mwI
+jEJ
+uoQ
+uoQ
+jSa
+uoQ
+uoQ
+vum
+nqx
+tGO
+mRG
+aKV
+hVe
+hiH
+rvM
+hiH
+ylK
+tJh
+gBV
+dyp
+xRU
+pMx
+gBV
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(58,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+awK
+pCK
+pCK
+pCK
+awK
+pCK
+qHL
+hfB
+hfB
+hfB
+rqR
+gRX
+dPw
+gIk
+pOn
+hfB
+aKV
+aKV
+aKV
+aKV
+aKV
+vmG
+hJd
+aKV
+aKV
+aKV
+aKV
+gBV
+dRJ
+edW
+hgU
+gBV
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(59,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+cqh
+pCK
+pCK
+awK
+awK
+awK
+qHL
+prW
+jLC
+sUk
+tES
+xCP
+oLj
+tdT
+agX
+qTv
+njO
+gnL
+fUR
+gnL
+qkP
+jKP
+uJn
+aKV
+gDI
+mBx
+ycP
+gBV
+uKy
+nBg
+cPV
+gBV
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(60,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+awK
+awK
+awK
+awK
+pCK
+awK
+qHL
+tWO
+dyd
+jXC
+ieO
+tqa
+tAs
+pSQ
+eII
+hfB
+aKV
+aKV
+aKV
+bVe
+jYG
+dhU
+ukd
+aKV
+gDI
+mBx
+uZV
+lgX
+lgX
+lgX
+fnX
+lgX
+lgX
+sVO
+sVO
+sVO
+sVO
+sVO
+pdN
+pdN
+kps
+kps
+suH
+suH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+suH
+suH
+vBs
+dmn
+vBs
+suH
+suH
+suH
+suH
+suH
+suH
+lyH
+lyH
+lyH
+lyH
+suH
+suH
+suH
+suH
+lyH
+lyH
+lyH
+lyH
+suH
+suH
+suH
+suH
+suH
+suH
+vBs
+dmn
+vBs
+lyH
+lyH
+lyH
+lyH
+suH
+lyH
+lyH
+lyH
+lyH
+vBs
+dmn
+vBs
+suH
+suH
+suH
+suH
+dmn
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(61,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+awK
+iUi
+awK
+qHL
+qHL
+qHL
+hfB
+hfB
+hfB
+qxo
+gaT
+meC
+wdE
+lrz
+aKp
+mCn
+ojk
+aKV
+dXs
+dXs
+lWQ
+lUQ
+aKV
+nas
+vod
+bhg
+frt
+pYo
+hdb
+jIK
+xRd
+lgX
+sVO
+sVO
+sVO
+sVO
+sVO
+pdN
+pdN
+pdN
+pdN
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+dmn
+dmn
+dmn
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+dmn
+dmn
+dmn
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+dmn
+dmn
+dmn
+qFw
+qFw
+qFw
+qFw
+qFw
+dmn
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(62,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+awK
+awK
+awK
+qHL
+eHJ
+hpf
+lxd
+bas
+sex
+jvn
+dVI
+xuz
+pSQ
+jvO
+taa
+bof
+iHy
+aKV
+bPE
+oap
+mzH
+aVJ
+aKV
+tko
+cOe
+hXj
+cOe
+cOe
+waY
+cOe
+ocI
+lgX
+sVO
+sVO
+sVO
+sVO
+sVO
+pdN
+pdN
+pdN
+pdN
+dmn
+dmn
+dmn
+suH
+suH
+dmn
+dmn
+suH
+suH
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+suH
+suH
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+suH
+suH
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+suH
+suH
+dmn
+dmn
+dmn
+suH
+suH
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(63,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+qHL
+jUR
+qHL
+qHL
+qFg
+gwW
+dkl
+rjn
+nNP
+mdv
+rDX
+bit
+nai
+kXb
+hbQ
+cfV
+goP
+aKV
+utd
+kll
+saI
+tNM
+aKV
+xWm
+xWm
+fbI
+fbI
+uyn
+npF
+fbY
+wtu
+lgX
+sVO
+sVO
+sVO
+sVO
+sVO
+pdN
+pdN
+pdN
+pdN
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+dmn
+dmn
+dmn
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+dmn
+dmn
+dmn
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+dmn
+dmn
+dmn
+qFw
+qFw
+qFw
+dmn
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(64,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+exN
+duy
+qHL
+xQZ
+reH
+ePc
+nFT
+dxL
+bBb
+gij
+jvX
+ibF
+pVY
+fnd
+uDH
+wTs
+aKV
+wIv
+qvE
+tnz
+vsG
+aKV
+xWm
+kQp
+fbI
+fbI
+uyn
+vBH
+fbY
+wtu
+lgX
+sVO
+sVO
+sVO
+sVO
+sVO
+pdN
+pdN
+kps
+kps
+suH
+suH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+suH
+suH
+suH
+dmn
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+lyH
+lyH
+lyH
+lyH
+suH
+suH
+suH
+suH
+lyH
+lyH
+lyH
+lyH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+dmn
+suH
+lyH
+lyH
+lyH
+lyH
+suH
+lyH
+lyH
+lyH
+lyH
+suH
+dmn
+suH
+suH
+dmn
+qFw
+dmn
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(65,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+qHL
+exN
+wJO
+qHL
+cEy
+cEy
+cEy
+cEy
+cEy
+cEy
+wze
+cEy
+cEy
+cEy
+hfB
+aKV
+aKV
+aKV
+ukd
+buO
+xVm
+ukd
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+aKV
+ezY
+aKV
+ezY
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+dmn
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(66,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+exN
+exN
+qHL
+cEy
+bcr
+bZv
+mAK
+cUR
+oks
+phP
+vra
+szq
+xCS
+aKV
+qzw
+lYv
+oda
+esG
+khk
+lDt
+mkY
+wiH
+rAx
+wiH
+oxA
+nVc
+ruU
+wiH
+ruU
+oda
+wny
+ioI
+wiH
+wiH
+aKV
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(67,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+qHL
+clf
+xek
+qHL
+mWL
+bcr
+pyf
+veg
+qeA
+bqE
+wZk
+gDD
+bUA
+qxn
+aKV
+wiH
+gMW
+gly
+gly
+hcR
+ubF
+cjm
+gly
+gly
+gly
+gly
+gly
+gly
+hcR
+gly
+gly
+cjm
+gly
+gly
+nfC
+ezY
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(68,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+exN
+sdI
+qHL
+dAS
+bcr
+brM
+crw
+ixT
+oyU
+oXp
+mBV
+tdN
+gen
+aKV
+lYH
+oBH
+lYH
+lYH
+lYH
+oDh
+lYH
+aKV
+ezY
+aKV
+ezY
+aKV
+ezY
+aKV
+ezY
+aKV
+ezY
+aKV
+ezY
+gvj
+aKV
+sVO
+sVO
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+dmn
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(69,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+qHL
+exN
+pjM
+qHL
+mLO
+bcr
+voC
+wUP
+qeA
+izq
+rFB
+woJ
+dXQ
+udH
+aKV
+vzJ
+xDT
+gKq
+jlA
+lYH
+kKY
+wiH
+wiH
+aKV
+ezY
+aKV
+ezY
+lCw
+lCw
+lCw
+lCw
+lCw
+sVO
+aKV
+sFw
+ezY
+sVO
+sVO
+kps
+kps
+nvC
+ods
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+dmn
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(70,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+exN
+sdI
+qHL
+cEy
+lhi
+fdw
+bcr
+pPB
+kCC
+xJO
+mBM
+vls
+lQV
+aKV
+dRw
+eYt
+pgQ
+aUm
+lYH
+rOQ
+txC
+wiH
+kST
+tJh
+ruU
+ruU
+lCw
+kdL
+kdL
+mIm
+lCw
+sVO
+ezY
+nnw
+hAr
+hAr
+hAr
+hAr
+aKV
+bcn
+aKV
+qFw
+suH
+suH
+suH
+qFw
+suH
+suH
+suH
+qFw
+suH
+suH
+suH
+qFw
+suH
+suH
+suH
+qFw
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+dmn
+qFw
+suH
+qFw
+wPj
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(71,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+qHL
+exN
+qHL
+qHL
+cEy
+cEy
+cEy
+cEy
+cEy
+cEy
+hHv
+cEy
+aKV
+aKV
+aKV
+dRw
+fHw
+pgQ
+uLq
+aKV
+oZK
+mor
+rvW
+gLa
+gLa
+pLn
+nyS
+rLe
+aIe
+aIe
+kYW
+lCw
+sVO
+aKV
+kEK
+hAr
+eSR
+kKN
+wQZ
+aKV
+sgm
+aKV
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+qFw
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+dmn
+qFw
+lyH
+qFw
+vBs
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(72,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+sUb
+qHL
+kin
+fhn
+jyz
+wii
+dzw
+bSr
+cEy
+ubu
+umc
+aKV
+vRd
+xGA
+dRw
+fHw
+mOI
+aKV
+ezY
+aKV
+fsa
+aKV
+ezY
+aKV
+ezY
+aKV
+lCw
+rNY
+cvc
+xGC
+lCw
+sVO
+ezY
+wJY
+xXp
+bWc
+hAr
+hAr
+aKV
+pnC
+aKV
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+suH
+suH
+suH
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+suH
+lyH
+suH
+lyH
+lyH
+lyH
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(73,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+qHL
+exN
+qHL
+qHL
+qHL
+qHL
+qHL
+oMv
+tYl
+tll
+ttw
+hom
+aKV
+xkG
+xGA
+gvj
+fHw
+gMh
+ezY
+sVO
+ezY
+aDC
+ezY
+sVO
+ezY
+ezY
+ezY
+lCw
+lCw
+lCw
+lCw
+lCw
+sVO
+aKV
+mWy
+hAr
+hAr
+hAr
+qFw
+aKV
+anA
+aKV
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+qFw
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+suH
+lyH
+qFw
+qFw
+suH
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(74,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+exN
+dfE
+dfE
+xek
+dfE
+qHL
+qHL
+qHL
+qHL
+qHL
+qHL
+qHL
+qnf
+pLI
+pbt
+fHw
+edQ
+aKV
+sVO
+aKV
+bMu
+aKV
+ezY
+ezY
+nUi
+nUi
+nUi
+nUi
+ezY
+sVO
+sVO
+sVO
+ezY
+nTu
+xbC
+kps
+kps
+qFw
+aKV
+xRJ
+aKV
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+dmn
+qFw
+lyH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(75,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+qHL
+pnU
+exN
+exN
+exN
+exN
+exN
+xek
+exN
+exN
+exN
+clf
+bQc
+eOh
+eDP
+dRw
+fHw
+ahD
+ezY
+sVO
+ezY
+ezY
+ezY
+ezY
+nUi
+tbB
+uEP
+myU
+nUi
+ezY
+ezY
+aKV
+ezY
+aKV
+vcL
+aKV
+aKV
+aKV
+aKV
+aKV
+xRJ
+aKV
+suH
+suH
+dmn
+suH
+suH
+suH
+dmn
+suH
+suH
+suH
+dmn
+suH
+suH
+suH
+dmn
+suH
+suH
+suH
+dmn
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+dmn
+qFw
+suH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(76,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+qHL
+pCK
+qHL
+pCK
+qHL
+sdI
+sNE
+sNE
+sNE
+sdI
+qHL
+pCK
+qHL
+atf
+dRw
+akc
+aKV
+ezY
+sVO
+sVO
+sVO
+sVO
+ezY
+nUi
+tbB
+smt
+myU
+nUi
+bNC
+fAP
+wzo
+ruU
+ruU
+yaQ
+uTR
+rkB
+wfz
+sLn
+vZs
+wjF
+aKV
+suH
+suH
+dmn
+suH
+suH
+suH
+dmn
+suH
+suH
+suH
+dmn
+suH
+suH
+suH
+dmn
+suH
+suH
+suH
+dmn
+suH
+suH
+suH
+suH
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+suH
+qFw
+qFw
+qFw
+qFw
+mzI
+mzI
+mzI
+mzI
+mzI
+mzI
+mzI
+mzI
+mzI
+mzI
+mzI
+qFw
+uGJ
+fWU
+fWU
+lqB
+qFw
+dmn
+qFw
+suH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(77,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+pCK
+qHL
+pCK
+qHL
+pCK
+qHL
+pCK
+sVO
+ezY
+aKV
+dRw
+aKV
+ezY
+sVO
+sVO
+sVO
+sVO
+sVO
+ezY
+ezY
+nUi
+nUi
+nUi
+nUi
+jQz
+ezY
+aKV
+ezY
+aKV
+xbC
+aKV
+aKV
+aKV
+aKV
+aKV
+ruU
+aKV
+suH
+suH
+dmn
+suH
+suH
+suH
+dmn
+suH
+suH
+suH
+dmn
+suH
+suH
+suH
+dmn
+suH
+suH
+suH
+dmn
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+hnf
+tXf
+qBX
+pMs
+cLp
+iey
+dBF
+dBF
+vtX
+vtX
+mzI
+mzI
+mzI
+lhJ
+bNb
+mzI
+qFw
+dmn
+qFw
+suH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(78,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+ezY
+dRw
+ezY
+sVO
+sVO
+sVO
+sVO
+sVO
+pdN
+pdN
+ezY
+ezY
+otD
+nUi
+ezY
+ezY
+ezY
+sVO
+kps
+kps
+kps
+kps
+qFw
+qFw
+qFw
+aKV
+nti
+aKV
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+mzI
+tXf
+dBF
+gvp
+htW
+iey
+cLp
+pMs
+sAU
+tSt
+jZl
+fHj
+yip
+dQs
+jcM
+mzI
+qFw
+dmn
+qFw
+suH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(79,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+lYH
+lYH
+aKV
+oBH
+aKV
+lYH
+lYH
+lYH
+lYH
+lYH
+sVO
+pdN
+pdN
+ezY
+ezY
+ezY
+ezY
+sVO
+sVO
+kps
+kps
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+aKV
+lpa
+aKV
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+qFw
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+mzI
+yeP
+xEZ
+cLp
+tXf
+iey
+xYn
+nDk
+ekn
+snS
+lzd
+lpe
+oGN
+pqx
+rln
+mzI
+qFw
+dmn
+qFw
+suH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(80,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+lYH
+vRd
+qoW
+bVx
+gKq
+iCw
+eDz
+sIa
+sIa
+lYH
+sVO
+sVO
+pdN
+pdN
+sVO
+sVO
+sVO
+sVO
+kps
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+aKV
+lmV
+aKV
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+suH
+suH
+suH
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+suH
+qFw
+qFw
+qFw
+qFw
+hnf
+pMs
+qWy
+dBF
+kJe
+iey
+iey
+vbh
+aeF
+aeF
+aeF
+gKo
+iey
+iey
+iey
+mzI
+nEr
+mzI
+hnf
+hnf
+mzI
+hnf
+hnf
+mzI
+mzI
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(81,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+lYH
+ttA
+lVO
+jwT
+pgQ
+qYx
+wMf
+yjO
+aHU
+lYH
+sVO
+sVO
+sVO
+pdN
+pdN
+sVO
+sVO
+kps
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+aKV
+nLL
+aKV
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+suH
+dmn
+suH
+qFw
+qFw
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+mzI
+tXf
+cLp
+dBF
+tXf
+iey
+msi
+tXf
+aeF
+cvA
+aeF
+nsH
+dBF
+cLp
+dBF
+cLp
+hwf
+tzk
+cLp
+cLp
+loH
+gcK
+lSn
+mtY
+mzI
+mzI
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(82,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+sVO
+lYH
+rnn
+pgQ
+wRN
+rJZ
+rqJ
+lYH
+oMz
+cnq
+lYH
+sVO
+sVO
+sVO
+sVO
+pdN
+pdN
+sVO
+kps
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+aKV
+aKV
+aKV
+qFw
+suH
+suH
+suH
+qFw
+suH
+suH
+suH
+qFw
+suH
+suH
+suH
+qFw
+suH
+suH
+suH
+qFw
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+mzI
+tXf
+dBF
+cLp
+pMs
+iey
+lSn
+tXf
+aeF
+rXc
+ews
+qyo
+ixE
+ixE
+cAN
+ixE
+kFi
+iuU
+ixE
+ixE
+cAN
+ixE
+ixE
+fcq
+nCd
+mzI
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(83,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+sVO
+lYH
+uGg
+quq
+quq
+pgQ
+wRN
+kef
+oni
+vzY
+lYH
+sVO
+sVO
+sVO
+sVO
+sVO
+pdN
+pdN
+kps
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+hnf
+tXf
+cLp
+spi
+ddS
+iey
+qtu
+tXf
+aeF
+qfp
+aeF
+iey
+sVh
+sVh
+sVh
+sVh
+sVh
+sVh
+sVh
+sVh
+sVh
+sVh
+sVh
+sVh
+ujf
+mzI
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+suH
+suH
+suH
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(84,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+kps
+aKV
+ceG
+asc
+hPN
+hPN
+pgQ
+ctC
+bFf
+kuU
+lYH
+kps
+kps
+kps
+kps
+kps
+kps
+pdN
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+suH
+qFw
+qFw
+qFw
+qFw
+mzI
+tXf
+gcK
+yiT
+mQk
+aTB
+vUi
+htW
+aeF
+aeF
+aeF
+cLp
+sVh
+pnK
+avt
+uLd
+pnK
+avt
+avt
+avt
+pnK
+vjA
+mhb
+sVh
+qCm
+mzI
+mzI
+hnf
+mzI
+mzI
+hnf
+mzI
+mzI
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(85,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+kps
+kps
+aKV
+cnq
+cnq
+cnq
+cnq
+cnq
+aKV
+dFX
+sGX
+aKV
+kps
+kps
+kps
+qFw
+kps
+kps
+suH
+dmn
+dmn
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+mzI
+dSE
+iey
+iey
+hnf
+iey
+hnf
+iey
+iey
+fUf
+htW
+tXf
+sVh
+avt
+pnK
+pnK
+pnK
+avt
+lYK
+avt
+pnK
+avt
+avt
+qRL
+qCm
+poB
+cLp
+imc
+pPU
+pPU
+cLp
+cLp
+mzI
+mzI
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(86,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+wDM
+aiQ
+aiQ
+wDM
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+dmn
+dmn
+dmn
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+hnf
+tXf
+iey
+tXf
+tXf
+tXf
+cKn
+dBF
+iey
+quH
+tjM
+tXf
+sVh
+cys
+oKc
+tFH
+lPf
+iEv
+avt
+avt
+bIJ
+pnK
+kbh
+sVh
+gTF
+pjY
+sjE
+mRy
+vul
+olE
+tXf
+htW
+nRl
+mzI
+qFw
+suH
+qFw
+qFw
+qTy
+bTo
+bTo
+bTo
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(87,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+dmn
+dmn
+dmn
+dmn
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+mzI
+mzI
+mzI
+mzI
+mzI
+mzI
+mzI
+mzI
+mzI
+tXf
+hnf
+tXf
+tXf
+cLp
+nDk
+cLp
+iey
+cLp
+iwP
+htW
+sVh
+pnK
+wEN
+tFH
+omn
+rqP
+pnK
+xJP
+xJP
+pnK
+rdB
+sVh
+mTu
+wrf
+wrf
+wrf
+wrf
+wrf
+asQ
+asQ
+jMy
+rwp
+rwp
+rwp
+rwp
+rwp
+rwp
+qww
+xEp
+bTo
+qTy
+qTy
+qTy
+qTy
+qTy
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(88,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+dmn
+dmn
+dmn
+dmn
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+dmn
+mzI
+vVd
+tXf
+tXf
+tXf
+pMs
+tXf
+tXf
+hmX
+tXf
+iey
+tXf
+cLp
+iey
+cLp
+cLp
+iey
+gcK
+iwP
+tXf
+sVh
+pnK
+dso
+oQU
+ijC
+cjo
+wZj
+rnC
+xJP
+avt
+ccR
+sVh
+hoE
+eyg
+abP
+tTe
+wRo
+hyr
+asQ
+kBq
+aaC
+asQ
+kjK
+qDo
+kcI
+syN
+asQ
+rGz
+qww
+lst
+qyU
+aIl
+nET
+bTC
+qTy
+qTy
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(89,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+suH
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+dmn
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+suH
+mzI
+mzI
+mzI
+mzI
+mzI
+mzI
+mzI
+mzI
+mzI
+tXf
+hnf
+htW
+cLp
+tXf
+jFO
+tMF
+iey
+nQH
+jlk
+vDi
+nIS
+fPS
+lhT
+oQU
+omn
+iEv
+uMw
+pnK
+uLd
+avt
+hBG
+sVh
+qVd
+wsC
+hNE
+kKq
+hNE
+qjw
+asQ
+mDY
+uRl
+uuA
+tKZ
+uwE
+guh
+eMO
+asQ
+rGz
+qww
+xEp
+mbD
+bZL
+ouG
+haN
+nGu
+qTy
+qTy
+suH
+suH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(90,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+suH
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+vBs
+vBs
+dmn
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+mzI
+htW
+iey
+tXf
+tXf
+tXf
+tXf
+xaf
+iey
+iey
+iey
+iey
+sVh
+vKc
+rQO
+bHw
+rPN
+qhR
+dyr
+pnK
+pnK
+avt
+hBG
+sVh
+ktd
+hNE
+qHv
+opa
+qRB
+xgP
+asQ
+jGf
+gtY
+asQ
+fJp
+nJN
+qga
+sid
+asQ
+yiw
+qww
+mhi
+xEp
+xaT
+pHf
+qLf
+eXx
+jvo
+qTy
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(91,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+ubK
+mvZ
+mvZ
+mvZ
+mvZ
+mvZ
+tXf
+utH
+utH
+htW
+tXf
+tXf
+sVh
+avt
+pnK
+pnK
+pnK
+tVc
+sKj
+loz
+pnK
+vJz
+cVT
+sVh
+eLU
+uyj
+ebu
+rug
+cPK
+lAL
+asQ
+kkY
+woz
+asQ
+xhg
+avg
+vta
+xGW
+asQ
+aWu
+rkc
+qRr
+qvl
+lZn
+qiT
+aPS
+eXx
+mNi
+qTy
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(92,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+dmn
+dmn
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+ubK
+ubK
+ahM
+rrk
+uTZ
+gmP
+mvZ
+hmX
+hmX
+npi
+iey
+iey
+aTB
+sVh
+sVh
+guK
+guK
+guK
+sVh
+dCP
+sVh
+guK
+guK
+guK
+sVh
+wrf
+vBJ
+qSS
+iWm
+wrf
+ejr
+asQ
+asQ
+kqO
+asQ
+asQ
+xlG
+vVW
+rGJ
+asQ
+ykI
+ykI
+ykI
+ykI
+ykI
+bTo
+akk
+bTo
+ykI
+qTy
+suH
+suH
+hjQ
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(93,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+dmn
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+ubK
+ahM
+ahM
+qEQ
+bDW
+xBz
+mvZ
+yee
+jRG
+gnm
+dLP
+cEI
+jCy
+asH
+cLy
+asH
+asH
+asH
+asH
+nnd
+vGF
+asH
+asH
+vzQ
+mnQ
+kxq
+fjt
+gMo
+lfy
+rZl
+lph
+dpC
+nOC
+sqE
+rPV
+yau
+gVP
+mhx
+vsa
+flE
+iPH
+rxG
+jKr
+fFj
+hHm
+lqT
+jMa
+xzl
+fXd
+hbe
+pUz
+nvC
+suH
+suH
+suH
+suH
+suH
+vBs
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(94,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+lyH
+qFw
+qFw
+lyH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+ubK
+mvE
+ahM
+yiF
+ixo
+nDZ
+aDM
+ipd
+uBt
+cqb
+dJm
+yhv
+dIC
+dIC
+dIC
+rWh
+mQV
+dIC
+dIC
+lby
+jfY
+dIC
+dIC
+bsU
+dIC
+dIC
+dIC
+qqV
+mva
+wdJ
+llO
+ctf
+lPS
+xzl
+xzl
+gaG
+bHT
+xzl
+xzl
+jJD
+xzl
+gvz
+foQ
+imr
+pUa
+nwG
+rDD
+xzl
+xzl
+hbe
+nvC
+nvC
+ljO
+eBA
+eJq
+suH
+laT
+suH
+mgM
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(95,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+ubK
+nOl
+ahM
+pDj
+hEc
+xLl
+mvZ
+lLp
+kJW
+rFz
+cUM
+vOX
+xFs
+beu
+beu
+aXO
+loh
+fFj
+pse
+czU
+ude
+fFj
+fFj
+eVW
+nJd
+xzl
+xzl
+hpD
+qFh
+rZl
+yal
+fCZ
+fam
+xzl
+cMW
+qSr
+iba
+iba
+iba
+iba
+qSr
+cuN
+oIS
+uMB
+mRV
+asH
+aTr
+xzl
+xzl
+hbe
+eBA
+toy
+toy
+nvC
+aiQ
+nvC
+hjQ
+vBs
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(96,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+ubK
+mJo
+ahM
+xGt
+xaw
+jEy
+cUW
+rlJ
+jxd
+egf
+niP
+uIX
+niP
+mqv
+mqv
+niP
+tFg
+lit
+lit
+lit
+lit
+lit
+lit
+rgE
+wKl
+aQt
+aQt
+fVN
+aQt
+tmp
+axn
+tPc
+fJD
+axn
+bxe
+qSr
+icp
+kap
+haV
+bre
+qSr
+cwI
+cHy
+loi
+cHy
+uCA
+mlG
+cUr
+cUr
+cZO
+cUr
+cUr
+nvC
+toy
+rHj
+suH
+qcL
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(97,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+ubK
+wfA
+ahM
+igh
+ahM
+nKO
+cUW
+rlJ
+jxd
+xzl
+niP
+lDT
+fbQ
+gau
+gau
+jzc
+mJT
+lit
+nXa
+fms
+eBr
+dsV
+kiA
+hZc
+wKl
+bkW
+tsO
+eZF
+tiR
+tmp
+jGe
+hIO
+gah
+nXy
+bxe
+nWw
+qQg
+qQg
+dTl
+bdk
+eHp
+sOv
+rSK
+bZZ
+hFK
+uCA
+fPk
+pYS
+whx
+pPS
+kqr
+cUr
+cUr
+nvC
+suH
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(98,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+jXN
+jXN
+jXN
+jAx
+jAx
+qFw
+qFw
+qFw
+qFw
+qFw
+ubK
+wZl
+jGb
+fhr
+ahM
+cUW
+cUW
+rlJ
+jxd
+xzl
+niP
+fKf
+bMI
+gej
+xPD
+qQQ
+pLq
+lit
+vja
+hOs
+iLO
+iLO
+gtm
+ugu
+wKl
+pSk
+ipb
+tzI
+sUI
+tmp
+aql
+cdD
+tAu
+siV
+bxe
+qLS
+bdk
+lqg
+qCC
+bdk
+fmS
+sOv
+lks
+jQt
+geY
+uCA
+uee
+jhB
+pca
+elu
+elu
+qaj
+cUr
+cUr
+suH
+toy
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(99,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+suH
+suH
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+suH
+jXN
+jXN
+gwd
+fPQ
+lil
+jAx
+cwI
+hbe
+cwI
+hbe
+cwI
+ubK
+ubK
+mvZ
+mvZ
+cUW
+cUW
+xzl
+uqt
+jxd
+xzl
+niP
+xel
+gXD
+gtS
+jjV
+jBM
+wvN
+lit
+gjh
+tJJ
+lit
+bNI
+bNI
+bNI
+wKl
+klN
+wKl
+wXX
+fCB
+tmp
+hra
+qYK
+wpD
+kUO
+bxe
+gaL
+gaJ
+vjW
+bJk
+jGF
+kLS
+sOv
+fFQ
+oNF
+phr
+uCA
+puR
+ixe
+pth
+uFI
+ufr
+ufr
+uxi
+cUr
+qFw
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(100,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+suH
+suH
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+jXN
+iGU
+iNf
+iMJ
+wFA
+det
+fFj
+fFj
+fFj
+fFj
+hHm
+xNZ
+tVT
+kdp
+klZ
+bAe
+nOq
+nOq
+xJw
+lqE
+rHm
+niP
+iPG
+cNP
+chT
+uSL
+sDz
+dNf
+lit
+yav
+wgi
+lit
+ugm
+eau
+msH
+wKl
+ieK
+fQx
+xVB
+eGi
+tmp
+qGT
+giw
+pOH
+eVG
+bxe
+fOy
+vHR
+riZ
+oai
+wvk
+bBc
+sOv
+tgJ
+dWn
+hIo
+uCA
+aRI
+jjS
+qbP
+dnv
+rLg
+rLg
+jUW
+cZO
+qFw
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(101,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+wPj
+suH
+suH
+dmn
+dmn
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+jXN
+xlw
+vIh
+mzs
+xQD
+obg
+dIC
+dIC
+dIC
+dIC
+vWt
+nCi
+ckD
+rXV
+rZl
+yal
+cHl
+xzl
+vKA
+xzl
+xzl
+niP
+iMR
+edc
+oXF
+oXF
+qOE
+afQ
+lit
+eaf
+vHf
+lit
+hZw
+wea
+aDn
+wKl
+ccn
+olB
+cNj
+rms
+tmp
+tmp
+tmp
+bxe
+bxe
+bxe
+sGp
+lps
+nnc
+mqc
+lps
+iMM
+hkD
+hkD
+vYk
+tPI
+uCA
+sEW
+wLE
+jWJ
+cdm
+msB
+upw
+wdb
+cZO
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(102,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+lyH
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+jXN
+lea
+mac
+pTj
+qvK
+jRr
+asH
+hGH
+asH
+qgf
+vVN
+asH
+hJC
+one
+dLP
+lmm
+pUV
+udu
+cMW
+gvD
+niP
+niP
+aYz
+bMI
+doZ
+xSC
+qQQ
+ccc
+lit
+nXa
+oic
+lit
+huk
+eIR
+edk
+iWc
+vaJ
+sKS
+eJo
+uxH
+xND
+uxH
+hyp
+aFD
+pEX
+voJ
+pEh
+szw
+eAp
+pdj
+jNX
+mtm
+aYC
+qZe
+dWR
+mIA
+uCA
+wJV
+dzQ
+cAg
+jxG
+oLw
+fTm
+dBB
+cZO
+qFw
+qFw
+suH
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(103,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+lyH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+suH
+jXN
+jXN
+stH
+pEG
+aFB
+aSR
+oYw
+kdN
+kdN
+kdN
+kdN
+leg
+rQb
+jGJ
+leg
+sur
+pyC
+sur
+pPc
+pPc
+niP
+nuz
+kLt
+vuD
+htU
+htU
+qQQ
+oTJ
+lit
+ihn
+nwY
+lit
+eKa
+rTK
+xbo
+wKl
+pkC
+aFD
+aFD
+aFD
+aFD
+aFD
+jaE
+aFD
+lDo
+rCh
+fkG
+oQf
+nwB
+rfd
+jdl
+aGZ
+aLk
+axT
+vYk
+sBl
+uCA
+wJV
+aou
+uLM
+pUW
+hUe
+dhn
+xSx
+cZO
+suH
+suH
+suH
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(104,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+jXN
+jXN
+jXN
+jAx
+aSR
+kye
+qlS
+nYe
+eMl
+kdN
+nrr
+wkp
+tFV
+bND
+sur
+oGx
+sur
+rAt
+iTF
+niP
+wwY
+htU
+htU
+htU
+qQQ
+dGG
+wVH
+lit
+ihn
+vmn
+lit
+lit
+lit
+lit
+lit
+wgu
+urq
+pKI
+tIM
+qpr
+mHm
+qPv
+knJ
+bHY
+uuu
+umG
+sJa
+rfd
+rfd
+ujw
+aGZ
+voA
+bct
+vYk
+oHm
+uCA
+usT
+lbu
+bjB
+wJV
+wzS
+mHP
+mHP
+cZO
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(105,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uuP
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+fUz
+ykq
+ooZ
+ocA
+ocA
+jXP
+fUz
+tXd
+gBO
+jqH
+iJS
+iII
+jPT
+xru
+vuq
+dgG
+niP
+niP
+fPq
+uwq
+niP
+niP
+niP
+niP
+lit
+eMB
+oic
+hev
+ihn
+nXa
+nXa
+lit
+kVY
+gSe
+wPE
+oUs
+qpr
+eJu
+qQb
+rkg
+bHY
+pII
+eLV
+dZJ
+nMc
+nMc
+wow
+xDE
+fOD
+qgd
+vYk
+dff
+uCA
+lbu
+gzS
+pZg
+dOH
+hqA
+dhn
+biI
+cZO
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(106,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+dmn
+dmn
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+fUz
+cyp
+uGu
+fUz
+fUz
+fUz
+fUz
+wMB
+eKW
+bzB
+fgx
+xPi
+sac
+xPi
+wuU
+xIE
+xIE
+vuq
+vuq
+vuq
+fhs
+iTF
+kgw
+fBW
+lit
+aDQ
+wjq
+sGm
+lEA
+sGm
+cms
+lit
+iZJ
+apz
+epA
+hUG
+qpr
+cLD
+xrx
+qnR
+gJj
+yhY
+qCB
+mgq
+rEv
+rvL
+igG
+aGZ
+uMs
+wEb
+vYk
+jPG
+uCA
+qPz
+lJt
+nYb
+dOH
+hqA
+dhn
+mHP
+cZO
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(107,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+dmn
+dmn
+dmn
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+fUz
+fUz
+rYj
+fUz
+cpp
+iOT
+fUz
+bNw
+hRk
+bNw
+hRk
+dif
+lew
+dif
+vbb
+fhG
+qMH
+wlk
+pwg
+dqU
+iTF
+iTF
+rEU
+iTF
+lit
+lit
+lit
+dfc
+uYs
+dfc
+czZ
+lit
+tPe
+eYF
+txM
+trp
+qpr
+ydu
+pwL
+pJm
+ayi
+nJV
+iBK
+gHS
+nnA
+dqW
+igG
+aGZ
+jTu
+qlJ
+vYk
+oxC
+uCA
+uCA
+uCA
+uCA
+uCA
+uCA
+uCA
+uCA
+cZO
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(108,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+dmn
+dmn
+dmn
+dmn
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+tDP
+bbN
+pDI
+shZ
+cpp
+nEt
+uYx
+uYx
+bNw
+bNw
+bNw
+xPi
+ygU
+xPi
+wlk
+bsy
+fpr
+bsy
+iTF
+iTF
+iTF
+iTF
+iTF
+iTF
+iTF
+iTF
+dHN
+dHN
+dHN
+oTC
+oic
+lit
+lJB
+epp
+eYF
+aaG
+qpr
+eJu
+oUh
+tdH
+bHY
+rDU
+ttS
+qWm
+hbp
+wVB
+nfp
+dYs
+reR
+rLM
+vYk
+jPG
+rRc
+cFg
+qOt
+lHh
+fuS
+eEu
+jgV
+rmh
+vYk
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(109,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+dmn
+dmn
+dmn
+dmn
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+dIu
+ivh
+bWh
+uhb
+ydq
+cpp
+mXO
+bNw
+uYx
+bNw
+bNw
+dif
+tqS
+dif
+bsy
+wlk
+oSP
+wlk
+lxR
+dHN
+dHN
+dHN
+iTF
+iTF
+iTF
+iTF
+ubV
+dHN
+bsy
+dfc
+oic
+lit
+vTv
+jwY
+xjW
+kFe
+qpr
+kBd
+mzf
+aTx
+bHY
+mTd
+wtp
+opK
+aDs
+gSz
+xgd
+ugS
+ncE
+crH
+vYk
+ksi
+jGh
+tkp
+jgV
+lHh
+ctd
+jgV
+jgV
+mKN
+sUV
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(110,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+dmn
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+dIu
+bUv
+jRJ
+cFw
+ddJ
+cpp
+bQd
+uYx
+wff
+aNh
+bNw
+xPi
+tqS
+xPi
+bsy
+dHN
+aAJ
+aAA
+iTF
+dHN
+wEx
+hLY
+gqe
+iTF
+iTF
+jmi
+yfE
+gQD
+bsy
+oTC
+oic
+lit
+lit
+lit
+lit
+lit
+dfc
+dfc
+dfc
+dfc
+iNo
+fgO
+joG
+vhk
+vit
+gSz
+eap
+ugS
+aLk
+llR
+vYk
+jPG
+vYk
+vYk
+vYk
+vYk
+vYk
+vYk
+jgV
+vWA
+vYk
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(111,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+vBs
+vBs
+dmn
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+jNq
+vnk
+lbw
+ddJ
+fua
+xjN
+bWR
+lrI
+gfG
+mWJ
+bNw
+bNw
+dif
+tqS
+dif
+bsy
+dHN
+dHN
+xft
+xft
+dHN
+dHN
+dHN
+yez
+iTF
+iTF
+iTF
+rEU
+dHN
+bsy
+dfc
+jar
+sGm
+sGm
+aMr
+sGm
+sGm
+orx
+aMr
+cms
+dfc
+pEX
+npk
+utx
+bbD
+djb
+ksZ
+dIQ
+qwB
+bkS
+kiw
+vYk
+qeK
+vYk
+lSm
+cHz
+rRX
+wcx
+vYk
+jgV
+adS
+vYk
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(112,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+jNq
+jNq
+fUz
+vRE
+kev
+fua
+bWR
+qVu
+mem
+lrI
+uLa
+eai
+bNw
+xPi
+tqS
+xPi
+bsy
+bsy
+cKu
+vDL
+hLY
+dHN
+tju
+dHN
+aqK
+iTF
+iTF
+rEU
+iTF
+dHN
+bsy
+oTC
+aDQ
+nhn
+xRu
+gLJ
+dfc
+dfc
+dfc
+dfc
+gVF
+dfc
+dAH
+dAH
+iuw
+ouv
+aUV
+iRx
+pdC
+iuw
+dAH
+dAH
+vYk
+bqb
+vYk
+ics
+mZo
+xQx
+hfP
+vYk
+jgV
+jgV
+sUV
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(113,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+uAV
+rSb
+wvC
+ksd
+cZT
+lUn
+vXm
+bWR
+ksd
+uLa
+rOd
+bNw
+dif
+vcJ
+dif
+bsy
+bsy
+bsy
+bsy
+gUL
+dHN
+dHN
+glP
+iTF
+iTF
+iTF
+iTF
+yfE
+tWQ
+bsy
+dfc
+oTC
+dfc
+yav
+xAT
+dfc
+wSz
+hMj
+fgl
+fRG
+tcd
+kKv
+tBW
+aLa
+wDF
+oDl
+gfE
+kKg
+qFa
+nAi
+qBW
+hWR
+tGJ
+ctX
+dgd
+jqJ
+ela
+sOA
+vYk
+jgV
+ota
+vYk
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(114,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+uAV
+uAV
+uAV
+uAV
+fUz
+fUz
+nBZ
+bWR
+aNt
+eai
+bWR
+rJM
+aNh
+aNh
+bNw
+xPi
+vUq
+xPi
+dif
+xPi
+bsy
+wlk
+lxR
+cJZ
+bJT
+dHN
+iTF
+rEU
+iTF
+iTF
+dHN
+bsy
+bsy
+oTC
+oTC
+oTC
+rIv
+jQU
+dfc
+iVr
+jeO
+fgl
+cgZ
+pWS
+kEW
+rTT
+oum
+xLb
+tpx
+wWG
+qJt
+jtD
+eFH
+rfR
+gRH
+bJm
+tUi
+wKN
+ryg
+nRC
+ljx
+vYk
+iBq
+lhB
+vYk
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(115,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+dmn
+dmn
+suH
+suH
+qFw
+qFw
+uAV
+uAV
+uAV
+uAV
+uAV
+uAV
+slB
+slB
+bNw
+lrI
+bWR
+bWR
+bWR
+rjy
+ksd
+lrI
+lpd
+aNh
+aNh
+dif
+cgs
+hyN
+rUt
+heO
+dHN
+aAA
+iTF
+iTF
+iTF
+iTF
+iTF
+rEU
+xRm
+lWC
+dHN
+bsy
+bsy
+oTC
+ddn
+dfc
+nXa
+xja
+dfc
+pro
+jMg
+urd
+jkb
+wPo
+nlX
+nlX
+ngj
+evw
+ngj
+nlX
+htS
+tid
+ijw
+kfS
+ijw
+mNa
+mNa
+njX
+vgZ
+vgZ
+hHn
+vYk
+rRK
+nJq
+vYk
+qFw
+qFw
+qFw
+qFw
+lyH
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(116,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+dmn
+dmn
+suH
+qFw
+uAV
+uAV
+uAV
+uAV
+slB
+slB
+slB
+slB
+slB
+bNw
+pVv
+hue
+ovd
+bWR
+eOX
+kVj
+bZx
+olJ
+qVU
+fqX
+xPi
+tqS
+xPi
+dif
+xPi
+dHN
+dHN
+iTF
+iTF
+iTF
+uIW
+wlk
+bsy
+wlk
+bsy
+bsy
+oTC
+oTC
+ddn
+ddn
+ddn
+yav
+tub
+dfc
+ubl
+aIa
+hQi
+fwd
+rqd
+nlX
+jDi
+mrV
+pLe
+kuP
+hEM
+tid
+duC
+tjl
+bxX
+pRM
+hos
+mNa
+fBa
+wmt
+eMN
+eMN
+vYk
+wwN
+vYk
+vYk
+suH
+suH
+suH
+suH
+suH
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(117,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+vBs
+vBs
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+suH
+qFw
+qFw
+qFw
+suH
+suH
+dmn
+kzW
+uAV
+uAV
+uAV
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+bNw
+wkb
+fUz
+aNh
+kVj
+kVj
+sUa
+ocA
+ocA
+rJw
+qrO
+dif
+gMI
+dif
+dif
+bsy
+vDL
+dHN
+xft
+xft
+xft
+xft
+vmS
+oSP
+bsy
+bsy
+bsy
+ddn
+gHH
+bpm
+oTC
+ddn
+ddn
+loF
+dfc
+qCa
+tjj
+kPB
+uba
+qMe
+nlX
+bcO
+iYh
+qmo
+uKb
+xod
+tid
+noa
+bSx
+tYb
+qgV
+iOh
+mNa
+sLP
+sLP
+sLP
+sLP
+vYk
+vYk
+vYk
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(118,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+kzW
+kzW
+uAV
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+bNw
+bNw
+aNh
+eaZ
+eaZ
+aNh
+aNh
+bNw
+djd
+nmG
+bNw
+xPi
+lmR
+xPi
+jPN
+jPN
+jPN
+jPN
+jPN
+mVe
+mVe
+mVe
+mVe
+cij
+wlk
+bsy
+oTC
+ddn
+rnK
+oTC
+oTC
+afX
+jdq
+dUG
+dfc
+jeF
+tjj
+fib
+uba
+nGC
+nlX
+xOj
+uGN
+vwS
+aNB
+eSc
+tid
+cvq
+xOm
+wsR
+cas
+kQe
+mNa
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(119,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+lyH
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+uAV
+uAV
+uAV
+uAV
+slB
+kzW
+kzW
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+dif
+suy
+iFy
+dif
+pxX
+lpd
+woP
+bNw
+bNw
+dif
+cYT
+dif
+jPN
+iyr
+mUj
+kcx
+jPN
+xXN
+ydp
+dJa
+mVe
+uKa
+oTC
+oTC
+ddn
+lmj
+qfv
+ddn
+ddn
+ddn
+yav
+yav
+dfc
+jeF
+tjj
+cTB
+tDd
+rqd
+nlX
+oEd
+daD
+mKQ
+guc
+dHm
+tid
+xXV
+sBp
+ebq
+cKK
+wxa
+mNa
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(120,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+suH
+suH
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+uAV
+uAV
+uAV
+uAV
+slB
+slB
+slB
+kzW
+kzW
+slB
+slB
+slB
+slB
+slB
+slB
+xPi
+dif
+xPi
+dif
+xPi
+iFy
+xPi
+dif
+xPi
+dif
+xPi
+dif
+xPi
+tqS
+xPi
+jPN
+qYM
+ybO
+ouY
+jPN
+gee
+fdR
+tyY
+mVe
+iXY
+dfc
+ddn
+ddn
+jdq
+lit
+lit
+lit
+lit
+yav
+tub
+dfc
+jeF
+eam
+aPc
+kcV
+rqd
+nlX
+iaB
+enB
+fBJ
+alF
+fnO
+tid
+qGO
+oIW
+xxz
+kMh
+aIm
+mNa
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+suH
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(121,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+uGJ
+xPi
+xPi
+xPi
+xPi
+xPi
+xPi
+xPi
+xPi
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+kzW
+kzW
+slB
+slB
+slB
+dif
+xPi
+wAP
+kYn
+kYn
+ewl
+eNB
+knW
+gMI
+nLq
+rXB
+xpE
+tqS
+tqS
+jrY
+tqS
+tqS
+jPN
+rrV
+jPN
+jPN
+jPN
+vkz
+mVe
+mVe
+mVe
+jQU
+yav
+tub
+lit
+lit
+lit
+kjr
+udU
+lit
+lit
+dfc
+dfc
+urd
+urd
+hAq
+urd
+urd
+fDO
+fDO
+fDO
+fDO
+fDO
+fDO
+mNa
+mNa
+mNa
+mNa
+mNa
+mNa
+mNa
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+suH
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(122,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+eqX
+eLO
+ooG
+aFc
+smc
+aQd
+sPg
+dny
+dif
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+kzW
+kzW
+slB
+slB
+xPi
+qLs
+qUo
+tmF
+sPg
+gKm
+gKm
+eIz
+tBj
+qaJ
+obc
+ptB
+dny
+gvO
+ycM
+nSj
+vUq
+jPN
+liq
+bxd
+hTN
+jPN
+gkV
+fiu
+ilk
+mVe
+wMg
+hbg
+wMg
+lit
+mGP
+xno
+wgk
+wmM
+qqZ
+mGP
+fMv
+irA
+jpp
+jmU
+rQy
+oNw
+oga
+nDs
+jgL
+oNw
+lBi
+vNZ
+irA
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+suH
+lyH
+lyH
+suH
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(123,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+eqX
+bdC
+eSW
+pFF
+pZK
+lSf
+tqS
+qLs
+xPi
+dif
+xPi
+dif
+xPi
+dif
+xPi
+dif
+xPi
+dif
+xPi
+dif
+xPi
+dif
+dny
+sie
+oLx
+oLx
+oLx
+oLx
+oLx
+spl
+spl
+spl
+spl
+nYI
+nYI
+nYI
+nYI
+tqS
+jPN
+hST
+pVR
+sNK
+jPN
+lFC
+nuX
+tXn
+mVe
+bxv
+qyc
+vmv
+kFL
+uBi
+dwP
+iLL
+jDl
+ngD
+xKq
+uZG
+ret
+ldt
+szY
+uEv
+daj
+oNw
+bpX
+oSJ
+nrV
+oNw
+sYs
+oTh
+uAV
+uAV
+uAV
+uAV
+uAV
+uAV
+uAV
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(124,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+fcC
+xPi
+bvI
+bvI
+xPi
+jok
+xyi
+stF
+bNs
+pJL
+pJL
+pJL
+edl
+pJL
+pJL
+pJL
+pJL
+wTg
+noe
+pJL
+pJL
+lso
+pJL
+aKT
+oLx
+acE
+hod
+njy
+oLx
+otf
+eze
+rVV
+spl
+rrH
+oZD
+bWM
+nYI
+tqS
+jPN
+vqJ
+cdQ
+ewZ
+jPN
+nYU
+sFM
+ldS
+mVe
+bax
+uYy
+fpC
+kFL
+wOi
+dwP
+htO
+jRT
+ngD
+uBi
+fMv
+irA
+fuP
+gTK
+mmK
+fQl
+wBA
+jkM
+qIm
+bpX
+oNw
+fvN
+irA
+uAV
+kzW
+uAV
+kzW
+uAV
+kzW
+uAV
+kzW
+suH
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(125,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+suH
+qFw
+qFw
+qFw
+xPi
+amF
+nWn
+kOB
+sWa
+tqS
+hoI
+xPi
+dif
+xPi
+dVQ
+sPg
+tka
+euC
+sPg
+mEg
+dOg
+tqS
+tqS
+sPg
+mYS
+cbm
+fec
+oLx
+tKL
+oNH
+qgF
+oLx
+qXs
+wsI
+nQB
+spl
+ckd
+pmO
+sgW
+nYI
+cgs
+jPN
+mHj
+uhk
+sEK
+jPN
+xCU
+wuY
+goR
+mVe
+noV
+jyB
+nLw
+kFL
+uBi
+xkv
+cYh
+uYi
+sSc
+kGD
+uZG
+ret
+irA
+ret
+irA
+ret
+irA
+ret
+pRN
+qIm
+mCs
+hPY
+dwA
+qFw
+ods
+qFw
+ods
+qFw
+ods
+qFw
+ods
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(126,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+xPi
+amF
+rAC
+frS
+xPi
+dif
+bxt
+hXw
+bxt
+hXw
+bxt
+dif
+xPi
+dif
+xPi
+dif
+xPi
+dif
+xPi
+dif
+xPi
+nSj
+iBg
+oLx
+tFb
+oLx
+oLx
+oLx
+aRL
+spl
+spl
+spl
+sBa
+nYI
+nYI
+nYI
+oMd
+jPN
+tzT
+tVP
+jGA
+jPN
+nKD
+cXl
+oUB
+mVe
+rDx
+gkT
+yfL
+kFL
+kFL
+kFL
+jDA
+neb
+kFL
+uZG
+fMv
+ret
+ret
+ret
+ret
+ret
+jkM
+kZp
+fIH
+mXr
+mCs
+hPY
+dwA
+qFw
+ods
+qFw
+ods
+qFw
+ods
+qFw
+ods
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(127,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+mmY
+mmY
+mmY
+mmY
+qUy
+tqS
+tqS
+dif
+kzW
+biQ
+rvk
+aUK
+pVn
+dug
+qfZ
+rWw
+qfZ
+rWw
+qfZ
+rWw
+qfZ
+rWw
+slB
+dif
+jxf
+lZf
+oLx
+kah
+wbh
+qcD
+oLx
+dUt
+snO
+gQu
+spl
+mgn
+qNt
+cHM
+nYI
+tqS
+jPN
+aYq
+jPN
+jPN
+jPN
+yeV
+mVe
+mVe
+mVe
+gxv
+rwe
+ggY
+afh
+sTV
+iXW
+gll
+hYv
+ngN
+rRk
+tWj
+tqL
+tWj
+tWj
+tqL
+ret
+ret
+ret
+fIH
+gPA
+dFL
+irA
+irA
+qFw
+ods
+qFw
+ods
+qFw
+ods
+syg
+ods
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(128,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+suH
+mmY
+qKk
+uec
+hPT
+qUy
+eRW
+sPg
+xPi
+slB
+bxt
+eUv
+pAe
+bxt
+bxt
+rWw
+wgA
+qDB
+cby
+nuG
+cby
+sFG
+qfZ
+bCp
+bCp
+bCp
+tlO
+oLx
+xzK
+elM
+hAx
+oLx
+irp
+gYT
+uAY
+spl
+iOK
+iqB
+tYq
+nYI
+xxR
+sur
+ohe
+sDl
+llp
+nfI
+qaw
+vJl
+qQn
+eIr
+wkr
+lWa
+euU
+hgB
+sPN
+erw
+kqP
+xjI
+iqC
+iqC
+uPu
+obn
+dVS
+ugs
+tqL
+ret
+jkM
+kZp
+fIH
+pRN
+ktS
+jqh
+ebz
+qFw
+ods
+qFw
+ods
+qFw
+ods
+qFw
+ods
+wPj
+wPj
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(129,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+mmY
+ftb
+rFI
+xUg
+xbb
+aKK
+xPi
+dif
+slB
+hBD
+bxt
+eoX
+hJp
+hBD
+qfZ
+hcQ
+cby
+blO
+iVh
+npu
+feb
+qfZ
+ulc
+wwu
+bCp
+cKy
+oLx
+vwE
+ouO
+rFl
+oLx
+pJW
+lxU
+aEt
+spl
+pQz
+wQk
+pXt
+nYI
+hQa
+nps
+goS
+mJc
+bAz
+bwg
+oWj
+wiV
+glT
+lCQ
+vob
+qfc
+lYY
+awI
+ujT
+ovZ
+rCW
+aVT
+dwC
+dwC
+nvd
+uUK
+knl
+wfi
+ssh
+tWj
+ret
+ret
+kZp
+ret
+kZp
+ret
+irA
+uAV
+kzW
+uAV
+kzW
+uAV
+kzW
+uAV
+kzW
+uAV
+kzW
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(130,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+mmY
+fRB
+rFI
+uVC
+mmY
+slB
+slB
+slB
+slB
+bxt
+wPq
+qsd
+bLw
+bxt
+rWw
+smI
+qbK
+cby
+oXX
+auo
+sUi
+qfZ
+cZy
+uPU
+ejG
+usm
+oLx
+uIj
+xsg
+iNV
+oLx
+sIz
+bdR
+wZn
+spl
+owC
+swI
+amW
+nYI
+xBe
+uyr
+pPJ
+vhl
+vhl
+vhl
+vhl
+vhl
+vhl
+vhl
+vhl
+vhl
+vhl
+jec
+fmj
+sGM
+xql
+sLd
+aCm
+jhV
+fKd
+hwq
+fuf
+rHD
+hUx
+xLt
+tqL
+irA
+jkM
+ret
+jkM
+ret
+slB
+uAV
+uAV
+uAV
+uAV
+uAV
+uAV
+uAV
+uAV
+uAV
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(131,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+suH
+mmY
+fKV
+rFI
+txV
+svJ
+slB
+slB
+slB
+kzW
+biQ
+ukQ
+hsj
+xCp
+ukV
+bxt
+hXw
+bxt
+hBD
+fmk
+auo
+mWF
+qfZ
+jMo
+muu
+bCp
+vMX
+oLx
+pke
+xnk
+rNo
+oLx
+dRY
+hkh
+lWc
+spl
+iMG
+vkd
+aGk
+nYI
+hQa
+cZE
+aAa
+vhl
+xWu
+uUa
+veR
+eMb
+iJy
+qki
+aYn
+cGJ
+mtp
+qki
+qki
+qki
+qki
+qki
+iUx
+dPd
+aLU
+uZS
+qki
+bGw
+oSU
+hUx
+xfN
+ret
+ret
+ret
+ret
+ret
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(132,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+lyH
+qFw
+qFw
+qFw
+mmY
+kON
+rFI
+hUL
+mmY
+slB
+slB
+slB
+slB
+bxt
+iEN
+pvg
+ktY
+gfm
+wEC
+fKs
+pkV
+pIg
+ebr
+auo
+qNO
+qfZ
+bCp
+bCp
+bCp
+ddC
+oLx
+eJv
+oLx
+oLx
+oLx
+eML
+spl
+spl
+spl
+qRP
+nYI
+nYI
+wIg
+klR
+obI
+xre
+vhl
+sST
+kiZ
+pRi
+lhE
+cMQ
+qki
+kqQ
+ecI
+ecI
+tmW
+qiF
+wDL
+gBD
+gBD
+gtq
+vuC
+eJw
+gpz
+qki
+qki
+lfO
+ixz
+kFv
+qAh
+sQY
+qMl
+sQY
+qMl
+sQY
+qMl
+sQY
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(133,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+mmY
+xWr
+piK
+vZD
+svJ
+slB
+slB
+slB
+kzW
+biQ
+bOr
+jgH
+gET
+sEB
+vAk
+bxt
+fvo
+bxt
+uai
+lJe
+tWw
+rWw
+kzW
+hcE
+txS
+kiv
+obb
+tGG
+amw
+ocz
+tjv
+eYg
+nKR
+gZc
+sCG
+eYg
+hUN
+euU
+hvn
+mDs
+euz
+lzk
+vhl
+kDS
+qwd
+rgF
+wwL
+kpg
+qki
+iUj
+leW
+ukk
+qki
+wqG
+xhy
+thS
+lkV
+bGc
+oEf
+pAx
+egv
+wHU
+gfb
+oSU
+xlQ
+mon
+nFR
+mwj
+qtL
+kSo
+iVq
+nOa
+vxO
+qMl
+mDZ
+gFI
+mDZ
+gFI
+mDZ
+gFI
+mDZ
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(134,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+suH
+tNR
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+qfZ
+wLx
+nKd
+dne
+cVI
+cVg
+qfZ
+slB
+hcE
+giO
+jgZ
+cCA
+vgu
+kBp
+onj
+qfc
+lCQ
+wiV
+xPH
+wty
+oWj
+wiV
+lYY
+iaW
+pEP
+mpg
+qIl
+vhl
+ykH
+brV
+brV
+brV
+aij
+qki
+aYV
+nmd
+nmd
+lto
+lto
+cRO
+nEB
+flM
+uZW
+ken
+gyd
+lto
+oNa
+gfb
+oSU
+bHy
+xQX
+aHO
+uqh
+uqh
+lNW
+fzO
+sNu
+sNu
+sQY
+gFI
+oAk
+cVt
+uGt
+nqq
+beQ
+gFI
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(135,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+jEe
+tkG
+tFJ
+qOX
+awx
+bFX
+lgF
+hgJ
+hgJ
+hgJ
+vsE
+qHs
+gpv
+iTy
+qHs
+wWn
+jUk
+iTy
+pvk
+uqI
+dYP
+reZ
+qfZ
+rWw
+rWw
+kzW
+hcE
+abr
+hcE
+uGf
+wHS
+lRQ
+hNy
+hNy
+hNy
+hNy
+lEK
+hNy
+yhT
+yhT
+yhT
+yhT
+dLh
+bKA
+ryc
+vhl
+nTt
+qki
+hMb
+uVq
+dCZ
+lYR
+wmv
+byH
+pRt
+bGc
+mPH
+iUx
+vnx
+nDI
+ckY
+uZW
+ken
+gyd
+sml
+gfb
+oSU
+hdL
+hTf
+tZb
+oFm
+oFm
+wsH
+ien
+xmi
+dHB
+qMl
+mDZ
+lJr
+lXA
+hIQ
+nqq
+xmp
+mDZ
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(136,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+sqD
+whC
+uXq
+uHv
+aDy
+khF
+tsM
+mSj
+mSj
+mSj
+doi
+qPN
+bVk
+bID
+qPN
+bVk
+bSX
+mSQ
+vuR
+cCe
+iXF
+maS
+rWw
+rWw
+kzW
+cCA
+hcE
+she
+hcE
+npC
+pNw
+vcI
+hNy
+tdg
+pSa
+clN
+mwo
+rex
+yhT
+jCr
+xQm
+jOe
+bgb
+wXf
+uKQ
+lLc
+wdt
+aTz
+wyv
+xcd
+qaI
+lVB
+qkB
+bwH
+oIP
+flM
+rSB
+izN
+afp
+rWr
+gZn
+ckY
+uZW
+lZu
+jVP
+gfb
+oSU
+tsi
+uHO
+nFR
+tXO
+uRv
+uRv
+hYu
+uCB
+fYJ
+sQY
+gFI
+jNs
+bKa
+wsd
+sRQ
+gFI
+mDZ
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(137,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+uuc
+fhj
+hUl
+mpk
+edb
+nax
+fGU
+tmf
+fop
+raR
+akW
+iYt
+hZN
+iTy
+ill
+bFQ
+icg
+iTy
+gML
+xrP
+qJC
+dUd
+orI
+qfZ
+qfZ
+cCA
+cYW
+gSy
+cCA
+uGf
+lpJ
+bxz
+hNy
+hNy
+hNy
+qXD
+rpf
+jZY
+yhT
+xlf
+xQm
+jsv
+vyO
+uhd
+hQa
+esj
+hQa
+qki
+qWW
+pVC
+okp
+qki
+jeY
+nEB
+flM
+nDI
+rWr
+rWr
+rWr
+rWr
+qsI
+cMs
+ifi
+lZu
+lxQ
+gfb
+oSU
+tsi
+ntl
+qGm
+nWV
+jBG
+cuU
+ozV
+qMl
+sQY
+qMl
+mDZ
+jER
+vUZ
+qAA
+dLE
+mDZ
+wzW
+cpM
+oYU
+qOU
+oYU
+qOU
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(138,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+iTy
+iTy
+iTy
+iTy
+ltT
+llb
+ici
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+tfp
+aBA
+ujU
+maS
+kqp
+qfZ
+cCA
+jjh
+cCA
+uGf
+sks
+rqH
+gvA
+hNy
+tdg
+iQJ
+xaL
+kXd
+clH
+yhT
+caQ
+xQm
+bGh
+pkJ
+uhd
+esj
+hQa
+dOu
+qki
+qki
+qki
+qki
+qki
+gfb
+rSB
+nDI
+gZn
+rWr
+rWr
+rWr
+rWr
+wmG
+ifi
+wUa
+hIk
+fOk
+gfb
+lRq
+gpE
+cQl
+qGm
+jyb
+fWd
+hNu
+nYA
+sQY
+sQY
+sQY
+gFI
+qLP
+hyy
+nsJ
+gFI
+mDZ
+cpM
+cpM
+lnu
+lnu
+lnu
+cpM
+qOU
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(139,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+iTy
+sYS
+izi
+rmP
+far
+oCU
+oDY
+sNV
+pdf
+oRQ
+uUe
+sNV
+axe
+anu
+mtt
+hbB
+blL
+ewO
+piM
+sNV
+syv
+aBA
+dgq
+maS
+egK
+qfZ
+cCA
+she
+hcE
+npC
+veD
+cqu
+tfG
+hNy
+hNy
+hNy
+gRw
+xVM
+oJr
+yhT
+hcX
+xQm
+hQm
+kRV
+tdJ
+mfV
+rxu
+vhl
+sND
+sND
+sND
+sND
+xzU
+gfb
+gZn
+gZn
+gZn
+rWr
+rWr
+rWr
+rWr
+aPE
+wUa
+jbH
+lto
+lxQ
+gfb
+fuf
+hiY
+uMT
+wmm
+qGm
+qGm
+qGm
+qGm
+qMl
+sQY
+tWj
+frb
+sQU
+oSU
+sZl
+kzK
+tWj
+cpM
+oSo
+sIj
+sIj
+sIj
+oYU
+oYU
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(140,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+vBs
+lyH
+qFw
+qFw
+iTy
+tBS
+uwC
+iTy
+hZR
+iOx
+mHR
+sNV
+jzL
+gZw
+nBc
+lAh
+gYy
+tAR
+tAR
+gZw
+pdi
+wNl
+lxD
+kiL
+eZL
+iXF
+dgq
+sZO
+ebM
+qfZ
+cCA
+dNH
+cCA
+uGf
+hGh
+cqu
+aKW
+hNy
+uWE
+muC
+uJz
+hOH
+uXA
+yhT
+lDb
+xQm
+oCO
+tge
+hQa
+mfV
+hQa
+vVK
+sND
+sND
+sND
+sND
+sND
+gfb
+aiM
+gZn
+rWr
+rWr
+rWr
+rWr
+rWr
+aPE
+lZu
+tjq
+fSx
+ixl
+uZS
+hwq
+pZv
+hXR
+aCm
+auQ
+rnc
+xeX
+awX
+oYv
+sdR
+huI
+oSU
+oSU
+hIg
+vVj
+hYA
+bxY
+pbe
+jxw
+mNH
+mNH
+mNH
+crL
+qOU
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(141,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+suH
+suH
+suH
+iTy
+iTy
+iTy
+iTy
+knQ
+cuq
+mol
+sNV
+hWb
+ewu
+qJO
+qZU
+hIn
+wni
+umP
+pkm
+fAR
+xRi
+uAF
+sNV
+kEp
+ucb
+yiC
+eqr
+qXM
+klC
+xJg
+uQj
+hcE
+npC
+gjn
+cqu
+nBM
+hNy
+hNy
+hNy
+nGz
+yhT
+yhT
+yhT
+xxP
+xQm
+lei
+gYu
+hQa
+mfV
+hQa
+vVK
+sND
+sND
+sND
+sND
+sND
+gfb
+fwq
+pVA
+kNf
+rWr
+rWr
+rWr
+rWr
+cVN
+lZu
+qwe
+dOE
+kPN
+gpy
+qkA
+ftk
+onJ
+svB
+xBU
+svB
+eUf
+piu
+kBb
+opl
+rII
+heW
+qVl
+giN
+rgw
+obG
+tWj
+cpM
+rIx
+jxw
+jxw
+dxt
+cpM
+qOU
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(142,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+vBs
+lyH
+qFw
+qFw
+iTy
+cXE
+cXE
+iTy
+uJQ
+ani
+lWF
+sNV
+bOg
+fJx
+dSj
+iDj
+qHC
+tAR
+tAR
+fJx
+tAR
+tAR
+nRL
+viv
+uOF
+aBA
+ieV
+iZd
+aPv
+qfZ
+cCA
+eCj
+cCA
+uGf
+grn
+cqu
+mOO
+hNy
+kjx
+clN
+hIH
+yhT
+jku
+xQm
+xIS
+kOG
+tNX
+bQA
+wJJ
+mfV
+hQa
+vVK
+sND
+sND
+sND
+sND
+sND
+gfb
+tqY
+jEW
+bJD
+aiM
+igf
+gZn
+gZn
+cVN
+lZu
+tjq
+rUY
+tAn
+odw
+lGH
+vJi
+nlU
+lRq
+dfs
+kIk
+tHl
+vSH
+pJi
+rHD
+jtY
+bVf
+vhI
+xgn
+sYK
+hkT
+bxY
+pbe
+jxw
+mNH
+mNH
+hBK
+cpM
+qOU
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(143,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+iTy
+sqm
+mKC
+blu
+hgJ
+hwp
+vWI
+sNV
+xoA
+hYB
+cIk
+sNV
+hVN
+xLA
+jdm
+cmg
+wqy
+gry
+otT
+sNV
+hcW
+eDh
+dgq
+maS
+rlK
+qfZ
+cCA
+xwY
+hcE
+npC
+jdY
+dXt
+cid
+hNy
+kjx
+koi
+dbX
+yhT
+cmy
+xQm
+cBR
+fXe
+xQm
+pXT
+oor
+mfV
+rxu
+vhl
+sND
+sND
+sND
+sND
+sND
+vOz
+eOO
+eOO
+tqY
+aiM
+igf
+viK
+gZn
+cVN
+ken
+nDP
+lto
+vsJ
+iUx
+uUS
+kVz
+jQp
+rMw
+ylp
+jId
+rMw
+rMw
+juL
+iab
+bBI
+eIc
+bBI
+tqL
+tWj
+tqL
+tWj
+cpM
+oSo
+dxd
+dxd
+dxd
+oYU
+oYU
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(144,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+iTy
+iTy
+iTy
+iTy
+idJ
+fPe
+uir
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+sNV
+mPy
+aBA
+dgq
+maS
+sfm
+qfZ
+cCA
+xwY
+cCA
+uGf
+msx
+cqu
+pIM
+hNy
+kjx
+kQS
+lom
+yhT
+qDK
+cjp
+yco
+yco
+xQm
+nhj
+oor
+hQa
+jUE
+bJu
+vPZ
+eOO
+vPZ
+eOO
+vOz
+eOO
+eAT
+eOO
+eOO
+kwv
+duF
+viK
+rWr
+ckY
+uZW
+ken
+jDX
+qvL
+dnc
+qvL
+kVz
+nNx
+aML
+pIV
+pVp
+bKv
+jIg
+kVz
+iab
+tuZ
+hDH
+ebo
+saO
+wdA
+wdA
+wdA
+cpM
+cpM
+oDm
+oDm
+oDm
+cpM
+qOU
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(145,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+jEe
+vTz
+xnj
+gcG
+xCL
+sww
+oSd
+esX
+emM
+lrM
+hgJ
+rsK
+mkr
+qmB
+hKX
+xUT
+syc
+eLq
+gRk
+gxK
+rVg
+dgq
+maS
+sZW
+qfZ
+cCA
+xwY
+hcE
+npC
+lgn
+bES
+oyJ
+hNy
+kjx
+mmF
+qeg
+yhT
+hBi
+lBX
+psZ
+sbr
+sbr
+gvk
+bEy
+otz
+vPZ
+eOO
+eOO
+qgO
+ube
+eOO
+eOO
+edq
+jdA
+rdr
+eOO
+pbg
+duF
+viK
+rWr
+rWr
+ckY
+rSB
+tqY
+dnc
+qvL
+dnc
+juL
+tHc
+mnH
+fIZ
+fAF
+wAF
+tLI
+kVz
+kVz
+bBI
+yer
+uuC
+qdy
+bBI
+xqF
+wdA
+wzW
+cpM
+oYU
+qOU
+oYU
+qOU
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(146,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+sqD
+acf
+iKO
+pjs
+eCQ
+acT
+mwB
+bon
+kpC
+wFW
+mwB
+mwB
+lWt
+ddy
+szl
+ydL
+jri
+wwo
+maS
+maS
+maS
+sBW
+maS
+nUv
+qfZ
+cCA
+nPx
+cCA
+hcE
+npC
+fpg
+xMF
+hNy
+kjx
+clN
+clN
+yhT
+cxc
+iun
+bez
+eHF
+rxI
+tMs
+vMq
+hQa
+mHK
+ePw
+eAT
+ePw
+ePw
+ewM
+vPZ
+ocy
+sCy
+ePw
+eOO
+frH
+uoD
+viK
+rWr
+rWr
+gZn
+aDJ
+dnc
+qvL
+aiP
+dhT
+rTm
+dym
+aML
+iJM
+cHq
+nua
+aML
+muw
+pvu
+dfp
+fBn
+gZo
+cGi
+mFC
+kWp
+bBI
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(147,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+uuc
+mLV
+sWz
+mJI
+ePD
+nLT
+orD
+mJU
+oOO
+xUy
+raR
+iTy
+tEP
+iTy
+iTy
+iTy
+iTy
+qjp
+eoA
+hLC
+eoA
+xcJ
+maS
+evY
+qfZ
+cCA
+xwY
+xwY
+hcE
+uGf
+pSF
+vdh
+hNy
+hNy
+hNy
+gpA
+yhT
+yhT
+yhT
+yhT
+yhT
+yhT
+gQm
+oSZ
+kbt
+vPZ
+ePw
+iii
+ePw
+eAT
+nHa
+eOO
+cxj
+qAm
+qAm
+eOO
+knr
+eOO
+hny
+rWr
+gZn
+aDJ
+xCr
+hWC
+lwj
+tSA
+aZL
+wNG
+uUc
+aML
+cbV
+iiR
+pfN
+aML
+xHD
+oaZ
+dfp
+cpl
+gZo
+cGi
+bBI
+rAJ
+wdA
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(148,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+suH
+tNR
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+bVy
+oLR
+jJk
+nxc
+waq
+jKm
+rWw
+qfZ
+rWw
+qfZ
+rWw
+qfZ
+qfZ
+hcE
+xwY
+xwY
+hcE
+cCA
+qnV
+cTW
+gAs
+gNb
+gAs
+vtv
+ozQ
+wOk
+aTu
+gAs
+mzV
+srZ
+qZZ
+lmX
+hQa
+eOO
+eOO
+iHZ
+xsE
+ePw
+sAH
+vOz
+vOz
+qAm
+knr
+knr
+knr
+eOO
+gVG
+dSJ
+aDJ
+xCr
+hWC
+hWC
+tSA
+cXg
+aZL
+wNG
+tZO
+aML
+gsW
+xYu
+oNE
+aML
+aML
+aML
+dfp
+cpl
+gZo
+cGi
+bfo
+kWp
+bBI
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(149,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+cCA
+iQn
+hau
+mxs
+kCG
+oHX
+uJX
+iNR
+cCA
+iTy
+tVq
+voh
+wsX
+uut
+iTy
+rWw
+qfZ
+slB
+kzW
+slB
+kzW
+kzW
+hcE
+hcE
+xwY
+xwY
+jmb
+vVX
+haX
+vkW
+mSu
+sSa
+ugl
+vkW
+agI
+uCt
+joN
+ojg
+hgk
+vpe
+itT
+vXq
+eLE
+iVM
+eOO
+eOO
+eOO
+eOO
+eOO
+eOO
+qAm
+knr
+eOO
+eOO
+eOO
+eOO
+dnc
+dnc
+dnc
+hLy
+hWC
+tSA
+kHr
+tSA
+aZL
+wNG
+tZO
+aML
+iZE
+fiz
+hQJ
+cAu
+aML
+qpA
+dfp
+xlu
+ihh
+cGi
+bBI
+rAJ
+wdA
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(150,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+qFw
+lyH
+qFw
+qFw
+cCA
+iQn
+bHs
+wev
+wev
+uJX
+wxQ
+iQn
+hcE
+iTy
+iTy
+iTy
+iTy
+iTy
+iTy
+kzW
+slB
+slB
+slB
+slB
+slB
+hcE
+hcE
+xwY
+xwY
+xwY
+rRa
+aRi
+aRi
+wHB
+aRi
+cDg
+cDg
+mQB
+cDg
+pRO
+pRO
+qlE
+pRO
+wjs
+upF
+ahU
+hRr
+pAK
+mNl
+eOO
+vOz
+eOO
+vOz
+vOz
+eOO
+knr
+eOO
+dnc
+qvL
+dnc
+qvL
+dnc
+qvL
+wNq
+mzS
+mzS
+xSa
+tSA
+aZL
+wNG
+tZO
+aML
+cbV
+kUb
+hQJ
+aML
+cAu
+qpA
+dfp
+wDc
+kml
+peu
+pIW
+ftI
+bBI
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(151,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+cCA
+iQn
+dwv
+mxs
+rfO
+jNI
+wxQ
+orH
+cCA
+hcE
+hcE
+hcE
+hcE
+hcE
+hcE
+hcE
+hcE
+hcE
+hcE
+hcE
+hcE
+hcE
+xge
+xwY
+tFU
+xwY
+she
+aRi
+urS
+lAA
+sqv
+cDg
+rks
+ltZ
+mOu
+pRO
+wGm
+wNn
+orK
+pRO
+ivA
+shA
+pPl
+ptU
+vVU
+aSC
+wJW
+xFl
+eOO
+eOO
+knr
+knr
+eOO
+qvL
+rAk
+eaj
+aEG
+iMN
+kdO
+qob
+dBl
+dBl
+lZj
+dBl
+fAZ
+wGT
+jpg
+aML
+ppN
+ppN
+hQJ
+aML
+aML
+mgV
+bBI
+ftc
+jSg
+rAV
+bBI
+fWK
+wdA
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(152,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+cCA
+qij
+vAn
+vTt
+qSp
+poK
+iQn
+wTy
+hcE
+hcE
+icw
+hcE
+hcE
+qfC
+tFU
+xwY
+xwY
+hcE
+hcE
+xwY
+xwY
+xwY
+xwY
+iHt
+kfQ
+xwY
+mCk
+aRi
+nZz
+nNw
+nQM
+cDg
+ldm
+fzy
+bSP
+pRO
+pdl
+rRx
+gIP
+pRO
+kwc
+jFe
+eSC
+lcy
+apd
+sBL
+eSC
+gNZ
+vOz
+eOO
+dNw
+knr
+eOO
+dnc
+wzf
+rzm
+pAl
+gwQ
+mGn
+jOZ
+gON
+wgX
+olI
+oJD
+qvL
+akw
+tvH
+kwK
+kwK
+xgN
+aRh
+ohT
+abi
+hnk
+kgv
+pns
+hMX
+syf
+wdA
+eOO
+eOO
+eOO
+eOO
+eOO
+eOO
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(153,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+cCA
+iQn
+wqS
+mxs
+toU
+wev
+xkZ
+iQn
+cCA
+hcE
+xwY
+hcE
+hcE
+hcE
+xwY
+xwY
+xwY
+xwY
+xwY
+xwY
+xwY
+hcE
+xwY
+xwY
+xwY
+xwY
+she
+aRi
+bpK
+dtj
+mCB
+cDg
+pDb
+rPa
+bzG
+pRO
+vNa
+fEa
+pUl
+pRO
+mfm
+xYb
+kFd
+nnl
+wPa
+swr
+vah
+nBl
+pGL
+qrF
+yiM
+sWg
+eOO
+qvL
+tnt
+gkc
+teF
+jtF
+dnc
+qvL
+dnc
+qvL
+dnc
+qvL
+dnc
+xFe
+eTJ
+jMd
+lZE
+epS
+iUI
+fRu
+dYF
+kWu
+bBI
+oRO
+bBI
+wYp
+bBI
+eOO
+eOO
+gWd
+eOO
+ePw
+eOO
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(154,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+cCA
+toU
+kQt
+rfO
+rfO
+rfO
+rfO
+rfO
+oEV
+xwY
+tFU
+xwY
+hcE
+xwY
+xwY
+hcE
+xwY
+xwY
+xwY
+tFU
+xwY
+xwY
+xwY
+hcE
+xwY
+xwY
+she
+aRi
+nHL
+lxB
+dWI
+cDg
+dsr
+kCE
+jFR
+pRO
+uQs
+csu
+dwS
+pRO
+svP
+hHz
+hHz
+kmq
+hHz
+fCw
+fCw
+fQu
+fCw
+oZE
+yiM
+sWg
+eOO
+dnc
+bTi
+inQ
+kQR
+hko
+qvL
+dnc
+vOz
+eOO
+vOz
+eOO
+vOz
+iab
+iab
+juL
+iab
+juL
+kDq
+juL
+iab
+juL
+tuZ
+kcO
+xqt
+bUN
+nxy
+bBI
+eOO
+wCA
+eAT
+ePw
+eOO
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(155,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+cCA
+wev
+wWb
+iQn
+puC
+vIL
+puC
+puC
+cCA
+hcE
+hcE
+xwY
+hcE
+xwY
+hcE
+hcE
+icw
+xwY
+hcE
+hcE
+hcE
+xwY
+tFU
+xwY
+xwY
+xwY
+she
+aRi
+ybb
+aRR
+uLh
+cDg
+gAc
+dUL
+rla
+pRO
+sOC
+coK
+xsi
+pRO
+wev
+hHz
+kio
+eoS
+bJo
+fCw
+siC
+nUy
+sUf
+oZE
+yiM
+mRP
+eOO
+qvL
+aFl
+qvL
+dnc
+qvL
+dnc
+vOz
+spH
+wNW
+owA
+weo
+eCn
+eOO
+vOz
+eOO
+vOz
+oaO
+kNm
+eOO
+eOO
+eOO
+tuZ
+aeY
+pzd
+lMo
+jxP
+vaG
+eOO
+ePw
+bui
+eOO
+eOO
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(156,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+cCA
+wev
+wHm
+iOm
+vIL
+puC
+vIL
+oix
+hcE
+hcE
+hcE
+xwY
+xwY
+kkR
+hcE
+hcE
+hcE
+xwY
+xwY
+hcE
+hcE
+xwY
+hcE
+hcE
+hcE
+xwY
+mCk
+aRi
+itP
+aRi
+aRi
+cDg
+jFA
+cDg
+cDg
+pRO
+aow
+pRO
+pRO
+pRO
+xeE
+hHz
+huB
+deU
+fDg
+fCw
+nzS
+vst
+hFW
+oZE
+ePw
+yiM
+yiM
+qZp
+ktm
+mMB
+oQE
+uko
+oQE
+tAA
+oQE
+oQE
+aEp
+aEp
+qTr
+kSh
+uIy
+uIy
+uIy
+aJD
+oUD
+vOz
+eOO
+eOO
+wdA
+bBI
+aNc
+smQ
+tOD
+bBI
+fwY
+eAT
+ePw
+eOO
+eOO
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(157,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+cCA
+oEV
+bsG
+bsG
+bsG
+bsG
+bsG
+bsG
+cCA
+hcE
+cCA
+wev
+qiG
+cCA
+hcE
+slB
+hcE
+hcE
+xwY
+xwY
+xwY
+xwY
+xwY
+xwY
+hcE
+xwY
+she
+aRi
+cmJ
+bXj
+dsJ
+cDg
+tiA
+gPW
+aag
+pRO
+qou
+dtI
+enf
+pRO
+wdc
+hHz
+xxg
+caR
+oqW
+fCw
+ihQ
+dEz
+ddK
+oZE
+ksN
+alf
+alf
+alf
+eOO
+vOz
+eOO
+vOz
+eOO
+vOz
+eOO
+vOz
+eOO
+vOz
+eCn
+kmc
+crs
+lQw
+vru
+mJX
+mim
+sMS
+sMS
+sMS
+nqP
+eOO
+vOz
+mia
+vOz
+eOO
+ePw
+ePw
+eOO
+eOO
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(158,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+cCA
+wev
+wev
+wev
+wev
+wev
+wev
+kCG
+wev
+wev
+gws
+wev
+xwY
+hcE
+slB
+slB
+slB
+hcE
+hcE
+hcE
+hcE
+hcE
+hcE
+xwY
+xwY
+xwY
+she
+aRi
+jkZ
+cvF
+nFk
+cDg
+gQL
+xTC
+nQo
+pRO
+kFB
+dBt
+sfb
+pRO
+hrL
+hHz
+grT
+kpl
+ufF
+fCw
+jjU
+qFj
+lYE
+oZE
+ePw
+tob
+knr
+knr
+eOO
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+eOO
+vOz
+eOO
+vOz
+eOO
+vOz
+pvs
+npX
+ycr
+uvm
+qpT
+bjw
+hri
+icE
+iks
+aoL
+ePw
+ePw
+eOO
+sxS
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(159,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+cCA
+epR
+kjN
+hsb
+lPi
+aXt
+aRH
+lbU
+bcc
+bcc
+lPi
+wcD
+lbU
+cCA
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+hcE
+hcE
+xwY
+xwY
+she
+aRi
+aRi
+aRi
+aRi
+cDg
+cDg
+cDg
+cDg
+pRO
+pRO
+pRO
+pRO
+pRO
+wdc
+hHz
+prE
+ajK
+fsq
+fCw
+bhV
+uTV
+gGu
+oZE
+ksN
+tob
+eOO
+knr
+qAm
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+eOO
+eOO
+eOO
+eOO
+fZQ
+ePw
+iHZ
+slA
+ksN
+ckl
+eOO
+vOz
+eOO
+vOz
+eOO
+eOO
+sxS
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(160,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+suH
+cCA
+iMH
+twE
+cCA
+cCA
+cCA
+pQE
+cCA
+cCA
+pQE
+cCA
+cCA
+pQE
+cCA
+kzW
+kzW
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+hcE
+hcE
+xwY
+hkl
+gZm
+gZm
+bsM
+erY
+hcE
+hcE
+hcE
+xwY
+xwY
+xwY
+xwY
+xwY
+xwY
+wdc
+hHz
+xiZ
+hHz
+hHz
+fCw
+xlh
+fCw
+fCw
+oZE
+fwY
+eOO
+eOO
+knr
+qAm
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+eOO
+eOO
+eOO
+eOO
+eOO
+vOz
+sCy
+vMo
+vOz
+ePw
+fSN
+sPx
+eOO
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(161,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+lyH
+lyH
+cCA
+cCA
+cCA
+cCA
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+uAV
+uAV
+uAV
+slB
+slB
+slB
+slB
+slB
+slB
+hcE
+xwY
+xwY
+xwY
+xwY
+xwY
+rRa
+cCA
+hcE
+hcE
+hcE
+xwY
+kfQ
+xwY
+xwY
+xwY
+xwY
+hHz
+oiH
+oBi
+gEw
+fCw
+gLL
+vZY
+mtx
+oZE
+ePw
+eOO
+knr
+knr
+eOO
+eOO
+slB
+slB
+eOO
+eOO
+eOO
+eOO
+ePw
+ePw
+ePw
+eAT
+ePw
+ePw
+ePw
+ePw
+ePw
+eOO
+eOO
+eOO
+eOO
+eOO
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(162,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+lyH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+uAV
+uAV
+uAV
+uAV
+slB
+slB
+slB
+slB
+hcE
+hcE
+hcE
+hcE
+hcE
+xwY
+mCk
+twV
+xwY
+hcE
+hcE
+hcE
+xwY
+iHt
+tFU
+xwY
+xwY
+hHz
+jID
+xZK
+hqR
+fCw
+nRw
+acC
+rvu
+oZE
+ksN
+knr
+knr
+qAm
+eOO
+slB
+slB
+slB
+eOO
+eOO
+vgM
+eAT
+ePw
+qrH
+ePw
+ePw
+ePw
+ePw
+ePw
+ePw
+ePw
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(163,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+vBs
+vBs
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+suH
+qFw
+qFw
+qFw
+uAV
+uAV
+uAV
+uAV
+slB
+slB
+slB
+slB
+slB
+slB
+hcE
+hcE
+she
+bsG
+xwY
+xwY
+xwY
+hcE
+xwY
+xwY
+xwY
+xwY
+vrv
+hHz
+hHz
+hHz
+hHz
+fCw
+fCw
+fCw
+fCw
+oZE
+cui
+knr
+knr
+qAm
+eOO
+slB
+slB
+eOO
+eOO
+eOO
+ePw
+ePw
+ePw
+iaJ
+ePw
+ePw
+tFK
+ePw
+ksN
+ePw
+eOO
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(164,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+uAV
+slB
+slB
+slB
+slB
+slB
+wQS
+bTZ
+bEI
+bTZ
+wQS
+hcE
+xwY
+xwY
+xwY
+xwY
+xwY
+hcE
+hcE
+hcE
+slB
+slB
+slB
+slB
+slB
+slB
+eOO
+eOO
+mmR
+sWg
+qAm
+qAm
+eOO
+eOO
+slB
+eOO
+ePw
+eAT
+ePw
+eOO
+eOO
+ePw
+ePw
+ePw
+shC
+rli
+eAT
+ePw
+ePw
+eOO
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(165,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+uAV
+slB
+slB
+slB
+slB
+bTZ
+hJz
+ojR
+sGU
+bTZ
+hcE
+hcE
+xwY
+tFU
+xwY
+xwY
+hcE
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+eOO
+eOO
+vnr
+mmR
+rsG
+qAm
+ePw
+tob
+eOO
+eOO
+eOO
+wCA
+ePw
+ePw
+eOO
+eOO
+ePw
+ePw
+ePw
+ePw
+iii
+ePw
+ePw
+ePw
+ePw
+eOO
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(166,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+slB
+slB
+slB
+slB
+wQS
+vZH
+kfl
+cTG
+wQS
+cCA
+xwY
+xwY
+xwY
+xwY
+xwY
+hcE
+slB
+slB
+slB
+slB
+eOO
+eOO
+eOO
+eOO
+knr
+knr
+lXK
+sCy
+ePw
+ePw
+ePw
+eOO
+eOO
+vOz
+nDg
+uMS
+sCy
+vOz
+eOO
+ePw
+dNl
+ePw
+ePw
+ksN
+cMA
+eOO
+eOO
+ePw
+ePw
+eOO
+eOO
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(167,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+uAV
+uAV
+slB
+slB
+bTZ
+xfm
+adU
+gxf
+bTZ
+hcE
+xwY
+eOO
+eOO
+ePw
+ePw
+hcE
+slB
+slB
+slB
+eOO
+eOO
+knr
+knr
+knr
+knr
+eOO
+lXK
+vAz
+ePw
+ePw
+ePw
+eOO
+eOO
+sYl
+sCy
+sCy
+civ
+vAz
+ePw
+ePw
+shC
+ePw
+ePw
+ePw
+ePw
+eOO
+eOO
+eOO
+ePw
+iaJ
+eOO
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(168,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+uAV
+uAV
+uAV
+slB
+wQS
+bTZ
+wQS
+bTZ
+wQS
+cCA
+fwY
+eOO
+qAm
+qAm
+eOO
+hcE
+slB
+slB
+eOO
+eOO
+knr
+knr
+knr
+eOO
+eOO
+eOO
+ePw
+ePw
+eOO
+eOO
+ePw
+ePw
+ePw
+cyR
+sCy
+sCy
+nAM
+sCy
+otF
+ePw
+uZN
+ePw
+eOO
+eOO
+ePw
+ePw
+eOO
+eOO
+ePw
+ePw
+eOO
+slB
+slB
+slB
+uAV
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(169,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+qFw
+uAV
+uAV
+uAV
+slB
+slB
+slB
+slB
+slB
+hcE
+ePw
+qAm
+qAm
+qAm
+eOO
+hcE
+eOO
+eOO
+eOO
+knr
+knr
+knr
+eOO
+eOO
+slB
+eOO
+eOO
+ePw
+eOO
+eOO
+ePw
+ePw
+eAT
+sCy
+nAM
+sCy
+vAz
+vAz
+ePw
+ePw
+ePw
+ePw
+eOO
+eOO
+eOO
+ePw
+ePw
+ePw
+ePw
+ePw
+eOO
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(170,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+slB
+slB
+slB
+slB
+slB
+hcE
+eOO
+qAm
+qAm
+qAm
+eOO
+vOz
+eOO
+knr
+knr
+knr
+eOO
+eOO
+eOO
+slB
+slB
+eOO
+iii
+ePw
+ePw
+ePw
+ePw
+ePw
+ePw
+vOz
+sCy
+sCy
+ovL
+vOz
+ePw
+ePw
+ePw
+eOO
+eOO
+slB
+eOO
+eOO
+eOO
+eOO
+ePw
+ePw
+eOO
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(171,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+slB
+slB
+slB
+slB
+slB
+eOO
+qAm
+qAm
+knr
+knr
+lcY
+knr
+knr
+knr
+eOO
+eOO
+slB
+slB
+slB
+slB
+eOO
+eOO
+ePw
+ePw
+ePw
+eOO
+oGo
+ePw
+ePw
+ePw
+eOO
+eOO
+eOO
+eOO
+eOO
+ePw
+eOO
+slB
+slB
+slB
+slB
+slB
+eOO
+eOO
+ePw
+eOO
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(172,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+slB
+slB
+slB
+slB
+slB
+eOO
+qAm
+knr
+knr
+eOO
+vOz
+eOO
+eOO
+eOO
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+eOO
+eOO
+eOO
+eOO
+eOO
+eOO
+eOO
+eOO
+eOO
+eOO
+slB
+slB
+slB
+eOO
+eOO
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+vOz
+loV
+vOz
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(173,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+slB
+slB
+slB
+eOO
+eOO
+eOO
+knr
+eOO
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+iQm
+iGr
+iQm
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(174,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+uAV
+slB
+slB
+eOO
+lLw
+lLw
+knr
+knr
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+lZX
+eXe
+lZX
+eXe
+lZX
+eXe
+lZX
+eXe
+lZX
+eXe
+lZX
+eXe
+lZX
+eXe
+lZX
+eXe
+lZX
+eXe
+lZX
+eXe
+slB
+slB
+slB
+slB
+idC
+hkJ
+idC
+slB
+slB
+uAV
+uAV
+suH
+suH
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(175,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+uAV
+slB
+eOO
+lLw
+lLw
+knr
+eOO
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+eXe
+wHD
+kGW
+ruJ
+hWE
+pQP
+njU
+pLC
+njU
+pLC
+njU
+pLC
+njU
+vhe
+bDJ
+lHf
+njU
+jmW
+jdX
+lZX
+slB
+slB
+slB
+slB
+iQm
+iGr
+iQm
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(176,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+slB
+eOO
+lLw
+knr
+knr
+lLw
+eOO
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+lZX
+kGW
+hLl
+xAk
+gKh
+jUT
+xAk
+xAk
+xAk
+xAk
+xAk
+xAk
+xAk
+xAk
+gKh
+jUT
+xAk
+crA
+jFz
+mtM
+lZX
+slB
+slB
+slB
+idC
+iGr
+idC
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(177,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+slB
+eOO
+lLw
+knr
+knr
+lLw
+eiV
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+eXe
+rqN
+svo
+vOP
+vOP
+vOP
+vOP
+vOP
+vOP
+vOP
+vOP
+pDL
+shc
+kIa
+cdr
+pDL
+vOP
+gxw
+tUq
+xym
+eXe
+slB
+slB
+slB
+iQm
+iGr
+iQm
+slB
+uAV
+uAV
+suH
+suH
+suH
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(178,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+slB
+eOO
+lLw
+knr
+knr
+lLw
+eOO
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+lZX
+kGW
+svo
+vOP
+vOP
+vOP
+pDL
+pDL
+iAX
+iAX
+pDL
+pDL
+eEx
+vfr
+lDQ
+vfj
+fsi
+sLT
+omh
+uFo
+lZX
+slB
+slB
+slB
+idC
+iGr
+idC
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(179,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+slB
+eOO
+eOO
+knr
+knr
+lLw
+lLw
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+eXe
+qMY
+svo
+pDL
+jrA
+pDL
+pDL
+hlc
+lTf
+lTf
+wHC
+pDL
+cun
+fwC
+lDQ
+vfj
+vfj
+uzg
+dCR
+tgq
+dyT
+slB
+slB
+slB
+iQm
+iGr
+iQm
+uAV
+uAV
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(180,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+wPj
+lyH
+lyH
+suH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+suH
+uAV
+uAV
+slB
+slB
+eOO
+knr
+knr
+knr
+lLw
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+lZX
+kGW
+svo
+pDL
+ntX
+dPX
+pDL
+cPW
+bwS
+dOz
+vzu
+pDL
+aVU
+lII
+kpI
+pDL
+vOP
+aJI
+wfP
+fry
+lZX
+slB
+slB
+slB
+idC
+iGr
+idC
+uAV
+uAV
+suH
+suH
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(181,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+lyH
+lyH
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+uAV
+uAV
+slB
+slB
+eOO
+eOO
+knr
+knr
+lLw
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+eXe
+mFU
+svo
+eVS
+xOB
+jKi
+pDL
+mHk
+mHk
+mHk
+dOz
+ofj
+dOz
+egz
+azB
+mpN
+mpN
+skn
+hFQ
+wiW
+leL
+slB
+slB
+slB
+iQm
+gma
+iQm
+uAV
+uAV
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(182,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+lyH
+lyH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+uAV
+uAV
+slB
+slB
+slB
+eOO
+knr
+knr
+knr
+eOO
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+lZX
+kGW
+svo
+cxM
+irW
+bKQ
+hoY
+dOz
+dOz
+dOz
+dOz
+uIY
+dOz
+dOz
+lMP
+vOP
+vOP
+nsu
+jmS
+mtM
+idC
+idC
+idC
+idC
+idC
+iGr
+idC
+uAV
+uAV
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(183,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+uAV
+uAV
+uAV
+slB
+slB
+eOO
+eOO
+knr
+knr
+knr
+eOO
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+eXe
+rBv
+svo
+orc
+tqU
+jKi
+pDL
+oLm
+oLm
+oLm
+bmN
+pDL
+lad
+jgD
+kpI
+tmq
+vOP
+alN
+qaQ
+ieM
+hyT
+iGr
+iGr
+iGr
+iGr
+iGr
+iQm
+uAV
+uAV
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(184,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+dgo
+euF
+cez
+dgo
+euF
+cez
+dgo
+euF
+cez
+dgo
+euF
+euF
+jUM
+uAV
+uAV
+slB
+slB
+slB
+eOO
+eOO
+knr
+knr
+knr
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+lZX
+kGW
+svo
+pDL
+xdj
+whp
+pDL
+dOz
+sIl
+dOz
+nUO
+pDL
+btz
+wKV
+kpI
+pDL
+vOP
+alN
+ntB
+eXe
+idC
+idC
+idC
+idC
+idC
+iGr
+idC
+uAV
+uAV
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(185,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+suH
+hhG
+kBV
+jKv
+hhG
+kBV
+jKv
+hhG
+kBV
+jKv
+hhG
+kBV
+ojJ
+kKC
+jNq
+uAV
+uQv
+uQv
+uQv
+uQv
+uQv
+eOO
+knr
+knr
+eOO
+slB
+slB
+slB
+slB
+slB
+slB
+eXe
+qMY
+svo
+pDL
+jrA
+pDL
+pDL
+uYQ
+pQb
+pQb
+rRS
+pDL
+rzd
+pyB
+lDQ
+vfj
+fsi
+alN
+qPj
+lZX
+slB
+slB
+slB
+slB
+iQm
+iGr
+iQm
+uAV
+uAV
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(186,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+dgo
+huo
+jKv
+dgo
+huo
+jKv
+dgo
+huo
+jKv
+dgo
+lVf
+ogE
+aPd
+jNq
+uAV
+uQv
+hWI
+rbs
+hWI
+uQv
+eOO
+eOO
+knr
+eOO
+eOO
+slB
+slB
+slB
+slB
+slB
+lZX
+kGW
+svo
+vOP
+vOP
+vOP
+pDL
+pDL
+iAX
+iAX
+pDL
+pDL
+mMW
+uKt
+mXW
+vfj
+vfj
+alN
+vQs
+eXe
+slB
+slB
+slB
+slB
+idC
+axU
+idC
+uAV
+uAV
+qFw
+qFw
+qFw
+suH
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(187,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+hhG
+kBV
+jKv
+hhG
+kBV
+jKv
+hhG
+kBV
+jKv
+hhG
+hHR
+ojJ
+kKC
+jNq
+uAV
+uQv
+dlt
+sFb
+oWU
+uQv
+slB
+eOO
+knr
+knr
+eOO
+eOO
+slB
+slB
+slB
+slB
+eXe
+rqN
+svo
+vOP
+vOP
+vOP
+vOP
+vOP
+vOP
+vOP
+vOP
+pDL
+iAX
+pDL
+pDL
+pDL
+vOP
+alN
+qPj
+lZX
+slB
+slB
+slB
+slB
+iQm
+gma
+bSB
+uAV
+uAV
+suH
+suH
+suH
+lyH
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(188,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+lyH
+qFw
+qFw
+qFw
+dgo
+huo
+jKv
+dgo
+huo
+jKv
+dgo
+huo
+jKv
+ojJ
+lVf
+ogE
+aPd
+jNq
+uAV
+uQv
+hWI
+uAz
+hWI
+uQv
+slB
+eOO
+eOO
+knr
+knr
+eOO
+slB
+slB
+slB
+slB
+lZX
+kGW
+gkW
+fJb
+iys
+qxv
+fJb
+fJb
+fJb
+fJb
+swB
+pXP
+pXP
+pXP
+qjO
+cWE
+pXP
+yfi
+rba
+eXe
+slB
+slB
+slB
+slB
+idC
+iGr
+idC
+uAV
+qFw
+qFw
+qFw
+qFw
+lyH
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(189,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+lyH
+qFw
+qFw
+qFw
+hhG
+kBV
+jKv
+hhG
+kBV
+jKv
+hhG
+kBV
+fhR
+ogE
+hHR
+ojJ
+kKC
+jNq
+uAV
+uQv
+eNT
+kRK
+lHH
+uQv
+slB
+slB
+eOO
+eOO
+knr
+eOO
+eOO
+slB
+slB
+slB
+eXe
+rqN
+kGW
+aqB
+eVZ
+cDP
+qIC
+fGl
+ogp
+pNA
+xMQ
+pfm
+fTC
+vjF
+onZ
+gVj
+mwq
+xAc
+wXq
+lZX
+slB
+slB
+slB
+slB
+iQm
+iGr
+bSB
+uAV
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(190,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+lyH
+qFw
+qFw
+qFw
+dgo
+huo
+jKv
+dgo
+huo
+jKv
+dgo
+huo
+fhR
+ojJ
+lVf
+ogE
+aPd
+uAV
+uAV
+uQv
+aom
+kYM
+siy
+uQv
+slB
+slB
+slB
+eOO
+knr
+knr
+eOO
+slB
+slB
+slB
+eXe
+kzp
+eXe
+eXe
+eXe
+eXe
+eXe
+kzp
+eXe
+aDG
+iUX
+hGJ
+hBX
+eXe
+lZX
+eXe
+lZX
+eXe
+lZX
+eXe
+slB
+slB
+slB
+slB
+idC
+iGr
+idC
+uAV
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(191,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+hhG
+kBV
+jKv
+hhG
+kBV
+jKv
+hhG
+hHR
+fhR
+ogE
+hHR
+ojJ
+kKC
+uAV
+uAV
+uQv
+qoe
+adF
+siy
+uQv
+slB
+slB
+slB
+eOO
+knr
+knr
+eOO
+slB
+slB
+slB
+amz
+ghG
+ghG
+ghG
+ghG
+ghG
+ghG
+ghG
+fbs
+oDP
+fvl
+vPG
+hRu
+wKr
+slB
+slB
+slB
+slB
+slB
+iQm
+iQm
+iQm
+slB
+slB
+iQm
+mYz
+bSB
+uAV
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(192,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+dgo
+huo
+jKv
+dgo
+huo
+jKv
+dgo
+lVf
+fhR
+ojJ
+lVf
+ogE
+aPd
+uAV
+uAV
+uQv
+uQv
+eSB
+uQv
+uQv
+slB
+slB
+slB
+eOO
+eOO
+knr
+eOO
+slB
+slB
+slB
+amz
+ghG
+nIZ
+nIZ
+nIZ
+nIZ
+nIZ
+ghG
+oNR
+rCp
+rXy
+lcp
+voG
+fbs
+slB
+iQm
+iQm
+idC
+iQm
+tiw
+tiw
+fnG
+iQm
+iQm
+idC
+cte
+idC
+uAV
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(193,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+hhG
+kBV
+jKv
+hhG
+kBV
+jKv
+ogE
+hHR
+fhR
+ogE
+hHR
+ojJ
+kKC
+uAV
+uAV
+slB
+uQv
+oBI
+uQv
+slB
+slB
+slB
+slB
+slB
+vOz
+lcY
+vOz
+slB
+slB
+slB
+amz
+ghG
+ibK
+kiP
+kwg
+ktk
+nIZ
+ghG
+fbs
+bCl
+rKr
+lqe
+iUT
+wKr
+iQm
+iQm
+tiw
+mrH
+tiw
+tiw
+iPN
+jUP
+foz
+tiw
+dkx
+iGr
+bSB
+uAV
+suH
+suH
+suH
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(194,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+suH
+suH
+oNM
+geT
+suH
+oNM
+bZI
+vhP
+hSi
+bZI
+vhP
+hSi
+bZI
+uAV
+uAV
+slB
+slB
+uQv
+ngx
+uQv
+slB
+slB
+slB
+slB
+bIj
+bIj
+dCQ
+bIj
+slB
+slB
+slB
+amz
+ghG
+rbm
+bUi
+rNN
+lzh
+nIZ
+ghG
+fbs
+cEX
+tPS
+sAp
+cYE
+fbs
+iQm
+tiw
+tiw
+idC
+tiw
+tiw
+hzd
+klu
+tiw
+tiw
+idC
+iGr
+idC
+uAV
+qFw
+qFw
+suH
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(195,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+suH
+tvx
+kXr
+iBc
+kzO
+alg
+hBk
+jXm
+qdP
+lqJ
+oRs
+qdP
+uAV
+uAV
+slB
+slB
+uQv
+qaW
+uQv
+slB
+slB
+bIj
+bIj
+bIj
+dCQ
+dCQ
+bIj
+bIj
+bIj
+bIj
+amz
+ghG
+nIZ
+odR
+gec
+uOv
+itJ
+ghG
+fbs
+bOU
+kjv
+kdm
+oDL
+wKr
+iQm
+tiw
+tiw
+iQm
+iQm
+iQm
+tiw
+sRw
+iQm
+iQm
+iQm
+idC
+bSB
+uAV
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(196,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+jOt
+fMe
+nCX
+cJV
+jOt
+fMe
+nCX
+cJV
+jOt
+uAV
+uAV
+slB
+slB
+slB
+uQv
+lKz
+uQv
+slB
+bIj
+bIj
+dCQ
+fSR
+pjv
+svQ
+bIj
+bIj
+tXR
+iyF
+amz
+ghG
+nIZ
+viM
+uFt
+wFi
+eJa
+ghG
+fbs
+eBm
+kjv
+kdm
+oDL
+fbs
+iQm
+iQm
+hzd
+tiw
+iQm
+iQm
+iQm
+iQm
+slB
+slB
+slB
+uAV
+uAV
+uAV
+suH
+suH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(197,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+jOt
+ueW
+lRA
+tgB
+eWJ
+vwN
+pMZ
+cOl
+jOt
+uAV
+uAV
+slB
+slB
+slB
+uQv
+iVY
+uQv
+slB
+bIj
+svQ
+uqe
+rHv
+rHv
+oPx
+svQ
+dxk
+cBb
+bXV
+amz
+ghG
+qlU
+ghG
+kGm
+ghG
+qlU
+ghG
+fbs
+bVl
+jVk
+fDI
+sIp
+wKr
+iQm
+iQm
+tiw
+tiw
+tiw
+iQm
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(198,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+suH
+suH
+suH
+jOt
+sKe
+aEz
+xFC
+uYf
+avc
+enx
+hTa
+vRJ
+vRJ
+vRJ
+vRJ
+vRJ
+vRJ
+uQv
+eUG
+uQv
+jhE
+lvM
+qZO
+pLP
+rHv
+rHv
+oPx
+sIo
+eIp
+gkC
+nmY
+bOb
+bIp
+swA
+bww
+xGI
+izw
+sNv
+tZT
+fbs
+kRB
+kRB
+htL
+kRB
+fbs
+iQm
+tiw
+tiw
+iQm
+iQm
+iQm
+iQm
+iQm
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(199,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+jOt
+vqm
+vKe
+xnJ
+bje
+cvs
+isU
+cOl
+vRJ
+fKy
+hmv
+sFA
+bWs
+vRJ
+liE
+nTO
+ghs
+mte
+lvM
+wZX
+lBf
+gEQ
+lCa
+oPx
+dxk
+eIp
+mLv
+tSC
+bOb
+hoG
+bgL
+bbd
+hjR
+ykO
+tzx
+kGM
+sdl
+emN
+tjr
+jSB
+tiw
+tiw
+tiw
+tiw
+fVH
+iQm
+tiw
+tiw
+jkO
+iQm
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(200,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+uAV
+jOt
+jHG
+tkh
+qya
+pJS
+owf
+pMZ
+cOl
+vRJ
+uIG
+lcT
+pxa
+niU
+vRJ
+lyJ
+uhi
+pVD
+whG
+lvM
+joK
+aJh
+aJh
+aJh
+hGq
+aJh
+eIp
+rVZ
+eIp
+fNe
+fNe
+fNe
+fNe
+yfZ
+qdd
+uHc
+oGO
+idC
+iQm
+hEe
+tiw
+tiw
+tiw
+tiw
+iQm
+tiw
+iQm
+tiw
+hzd
+tiw
+iQm
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(201,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+jOt
+sKe
+iYm
+xFC
+fcO
+avc
+enx
+hTa
+vRJ
+ugY
+tlN
+lnI
+rpW
+mhp
+kMX
+neI
+xMH
+coA
+lvM
+beZ
+cBb
+aJh
+aJh
+nxE
+gkC
+aJh
+aJh
+rdp
+cST
+tKM
+tKM
+fNe
+nGZ
+rPJ
+wIb
+dOh
+idC
+iQm
+cAb
+tiw
+pjz
+iQm
+iQm
+iQm
+tiw
+tiw
+tiw
+tiw
+iQm
+iQm
+slB
+slB
+slB
+uAV
+uAV
+suH
+suH
+suH
+suH
+suH
+fkY
+fkY
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(202,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+jOt
+jOt
+qmD
+lJF
+eTh
+vNs
+cvs
+xTp
+cOl
+vRJ
+cdS
+kGu
+cmM
+mll
+vRJ
+bED
+sXo
+lvM
+lvM
+lvM
+vqp
+fMY
+uja
+aJh
+nCj
+qLF
+dsn
+wuJ
+aJh
+cST
+rqw
+rqw
+fNe
+jYZ
+rLI
+iOO
+dOt
+idC
+sRw
+jqB
+tiw
+tiw
+tiw
+iQm
+iQm
+tiw
+tiw
+iQm
+iQm
+iQm
+slB
+slB
+slB
+slB
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+fkY
+fkY
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(203,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+uAV
+uAV
+uAV
+jOt
+rRz
+wSg
+iQh
+ydF
+ntG
+gHh
+uHu
+vTi
+vRJ
+lGv
+rqF
+vaX
+yfr
+vRJ
+xhd
+feX
+lvM
+cuh
+vCj
+bAW
+gjZ
+cBb
+uJf
+xQB
+wuJ
+cST
+cST
+cST
+aBT
+iLm
+pSj
+qEP
+wBB
+kkP
+caD
+bOb
+idC
+nzC
+tiw
+tiw
+iQm
+tiw
+skU
+lhG
+skU
+lhG
+skU
+lhG
+skU
+lhG
+lhG
+slB
+slB
+uAV
+uAV
+fKl
+fKl
+fKl
+fKl
+fKl
+qFw
+qFw
+fkY
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(204,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+lyH
+qFw
+qFw
+uAV
+uAV
+uAV
+uAV
+jOt
+rRz
+lsN
+uHu
+kiR
+cOl
+ntG
+aQE
+eQd
+vRJ
+vRJ
+vRJ
+vRJ
+vRJ
+vRJ
+ntp
+hvI
+huY
+hiV
+tiD
+uDs
+lvM
+lvM
+qkf
+qkf
+qkf
+fNe
+bnX
+ahn
+nlb
+coI
+coI
+oXi
+uCU
+vAK
+pgu
+eVo
+ctD
+nzC
+nzC
+tiw
+tiw
+hzd
+lhG
+oaa
+faP
+nKn
+lMg
+lyK
+jLZ
+edn
+skU
+dmn
+dmn
+dmn
+dmn
+lDB
+lDB
+lDB
+lDB
+lDB
+vei
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(205,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+lyH
+suH
+suH
+vSb
+uPi
+uPi
+uPi
+uPi
+hcS
+sKe
+aQE
+cZe
+hTa
+hTa
+pbC
+eQd
+dmb
+rnf
+lFJ
+bEW
+vDn
+eQd
+wAx
+kDA
+jhE
+jhE
+jhE
+jhE
+qkf
+dtn
+wZy
+qwy
+hfN
+fNe
+nCT
+iLm
+bBA
+qoa
+gHk
+xve
+wMw
+jKQ
+kco
+pyx
+mgT
+jRM
+nzC
+nzC
+tiw
+tiw
+skU
+bzO
+gFO
+bqX
+uwt
+mhA
+jhA
+pho
+mji
+uXG
+aiQ
+aiQ
+aiQ
+wDM
+wDM
+wDM
+lDB
+lDB
+vei
+qFw
+lyH
+qFw
+vBs
+vBs
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(206,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+suH
+lyH
+qFw
+qFw
+jOt
+aQE
+obe
+aEz
+oOC
+enx
+sKe
+aQE
+cZe
+hTa
+hTa
+aEz
+mcY
+pfa
+lve
+egr
+aLl
+wht
+eQd
+nxj
+ciT
+fyH
+tym
+wUl
+jhE
+rxL
+aPG
+aPG
+aPG
+nxD
+fNe
+bUG
+gEz
+epI
+iXG
+wYm
+wYm
+klD
+kru
+kru
+acg
+pyx
+uEK
+ctD
+nzC
+flI
+iQm
+lhG
+qtv
+xYL
+saF
+lMg
+oOf
+vpb
+mCw
+hOF
+xjJ
+fFR
+juO
+juO
+csG
+vHL
+wDM
+lDB
+lDB
+suH
+suH
+suH
+suH
+suH
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(207,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+suH
+lyH
+qFw
+qFw
+jOt
+ocx
+fXV
+qbT
+uPi
+cyH
+lGr
+vQL
+cZe
+hTa
+hTa
+dXc
+fFm
+fFm
+fFm
+fFm
+twf
+fFm
+eTf
+wAx
+pLs
+tLf
+tym
+tRk
+jhE
+ofd
+aPG
+aPG
+aPG
+knz
+fNe
+fCK
+rqw
+fQv
+lWi
+vvH
+xfe
+aMw
+aId
+vvH
+jzE
+acg
+pyx
+vvH
+nzC
+hzd
+iQm
+skU
+lMg
+lMg
+lMg
+lMg
+vzz
+sCh
+tBn
+skU
+vMF
+aiQ
+pXl
+kVN
+pXl
+vzZ
+hwg
+lDB
+lDB
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(208,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+lyH
+suH
+suH
+vSb
+dmP
+jOt
+dmP
+jOt
+uPi
+uPi
+oEs
+cZe
+hTa
+hTa
+aQE
+kNo
+vBl
+gvZ
+naG
+hIY
+tPv
+fFm
+vpy
+qPr
+jhE
+jhE
+jhE
+jhE
+vDj
+trW
+xGZ
+igJ
+mdA
+fNe
+oEt
+adq
+xQz
+vvH
+tsa
+vvH
+cfT
+aKf
+tsa
+vvH
+moc
+vom
+jUQ
+nzC
+tiw
+iQm
+lhG
+lhG
+eIW
+gpo
+crb
+cBX
+jqv
+tsm
+pMP
+cPd
+aYk
+rVl
+rVl
+rVl
+okG
+wDM
+lDB
+lDB
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+ijJ
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(209,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+vBs
+qFw
+qFw
+jOt
+pcU
+uFS
+aUk
+fgb
+nrq
+fgb
+elq
+eOU
+fMn
+hsm
+qGc
+kNo
+sKa
+xBI
+muj
+qAi
+sRn
+fFm
+erj
+eSY
+qkf
+qxP
+qWY
+kzl
+ocC
+gZl
+sDW
+krG
+ufy
+fNe
+mdc
+rqw
+tId
+ruy
+eVo
+gpb
+cfT
+gpb
+vvH
+rur
+moc
+cOW
+vLt
+nzC
+tiw
+iQm
+idC
+qQE
+xgZ
+suR
+yig
+fQL
+tci
+xdp
+eYG
+wmQ
+bSU
+lLN
+lLN
+lLN
+qDu
+wDM
+lDB
+lDB
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+ijJ
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(210,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+ciQ
+rCL
+mbR
+eLN
+vBE
+xwc
+njh
+xeC
+sMj
+dZD
+pXB
+udr
+vuk
+kNN
+wVq
+kcg
+jJb
+lOm
+wCc
+bbp
+jWz
+qkf
+pNZ
+gyn
+mrC
+pTA
+gZl
+oGF
+fxH
+rfG
+pEH
+itl
+qjJ
+hUm
+vvH
+tEv
+gpb
+skG
+gpb
+vvH
+vvH
+moc
+cOW
+oMk
+nzC
+tiw
+iQm
+iQm
+dTH
+aHH
+gYa
+hkn
+muQ
+pbU
+xdp
+eYG
+wmQ
+bSU
+lLN
+lLN
+lLN
+qDu
+wDM
+lDB
+lDB
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+ijJ
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(211,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+vBs
+qFw
+gAm
+jOt
+uTr
+tbT
+tOS
+eyo
+xIG
+eyo
+ceL
+gRy
+wPd
+mkA
+hOE
+kNo
+dwg
+xBI
+eQY
+qAi
+dns
+fFm
+qEi
+hlV
+qkf
+vFk
+hbR
+kzl
+pZq
+gZl
+iws
+qGD
+tSP
+fNe
+wQg
+rqw
+tId
+vvH
+aKf
+gpb
+cfT
+jQE
+mgT
+vvH
+moc
+cOW
+uQq
+nzC
+tiw
+iQm
+idC
+qQE
+rZh
+aRz
+aRz
+eXk
+tci
+xdp
+eYG
+wmQ
+bSU
+lLN
+lLN
+lLN
+qDu
+wDM
+lDB
+lDB
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+ijJ
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(212,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+lyH
+suH
+suH
+vSb
+dmP
+jOt
+dmP
+jOt
+uPi
+uPi
+ubX
+aAu
+lyY
+aAu
+cZe
+kNo
+cds
+cOg
+aOJ
+ush
+pDN
+fFm
+sov
+bNO
+qkf
+qkf
+qkf
+qkf
+xBA
+mjN
+okz
+woX
+wyM
+fNe
+ivV
+kKI
+tId
+vvH
+lSr
+tsa
+cfT
+sgN
+aKf
+mgT
+moc
+toI
+iuA
+idC
+tiw
+idC
+iQm
+qQE
+pHI
+qQE
+qQE
+sCN
+gnf
+pef
+rkR
+cPd
+lxk
+vTr
+vTr
+vTr
+sMg
+kbl
+lDB
+lDB
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+ijJ
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(213,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+suH
+lyH
+qFw
+qFw
+jOt
+bOZ
+mPp
+exO
+uPi
+hZQ
+aQE
+moy
+fmy
+der
+der
+uyu
+fFm
+fFm
+fFm
+fFm
+iAT
+fFm
+eTf
+uBZ
+bNO
+oPi
+kzW
+slB
+qkf
+eHu
+aPG
+ieZ
+aPG
+wYb
+fNe
+cks
+jzE
+edD
+pyx
+vvH
+jNg
+qfj
+bzM
+vvH
+nbX
+jWo
+lWi
+cbC
+iQm
+tiw
+iQm
+idC
+lhG
+pHI
+qQE
+qQE
+dTH
+tci
+tBn
+skU
+aiQ
+aiQ
+kLN
+kLN
+kLN
+pYK
+wDM
+lDB
+lDB
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(214,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+suH
+lyH
+qFw
+qFw
+jOt
+aQE
+rfH
+aEz
+oOC
+dEF
+dEc
+aQE
+iGe
+aQE
+aQE
+trt
+vIN
+voj
+ihv
+rcx
+iGA
+ldj
+bCK
+ocr
+qwc
+jhE
+slB
+slB
+qkf
+iIf
+tCj
+aPG
+aPG
+jjE
+fNe
+bfI
+vvH
+fUb
+bId
+rwN
+rwN
+oTz
+cfh
+cfh
+jWo
+lWi
+tEv
+ctD
+idC
+tiw
+tiw
+iQm
+skU
+jqw
+haQ
+uaF
+qQE
+uYz
+spF
+hOF
+fuy
+xNg
+tBv
+tBv
+jdZ
+sdU
+wDM
+lDB
+lDB
+suH
+suH
+suH
+suH
+suH
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(215,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+lyH
+suH
+suH
+vSb
+uPi
+uPi
+uPi
+uPi
+mBr
+ewq
+uUT
+iGe
+aQE
+aQE
+bsx
+fBw
+eOM
+rwC
+few
+jHN
+qVL
+fBw
+huA
+bNO
+oPi
+nng
+dba
+nng
+nng
+kFo
+dqN
+nHJ
+nng
+nng
+deH
+uRs
+hpV
+jzE
+jTY
+dHE
+aqy
+jKQ
+ibJ
+lWi
+uEK
+uRs
+idC
+iQm
+iQm
+tiw
+iQm
+lhG
+uwK
+miE
+qQE
+qQE
+pFO
+bzO
+nJs
+mCD
+aiQ
+aiQ
+wDM
+wDM
+wDM
+wDM
+lDB
+lDB
+vei
+qFw
+lyH
+qFw
+vBs
+vBs
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(216,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+lyH
+qFw
+qFw
+uAV
+uAV
+slB
+slB
+jOt
+hDT
+ntH
+uUT
+iGe
+aQE
+aQE
+ixR
+fBw
+fBw
+fBw
+fBw
+fBw
+fBw
+fBw
+ukG
+bGJ
+jhE
+dba
+fXm
+uJs
+nng
+nng
+nng
+nng
+nng
+fXm
+deH
+deH
+hSh
+wds
+oQC
+crY
+oAg
+kvp
+nqC
+lfP
+ctD
+nng
+nng
+nng
+iQm
+tiw
+hzd
+skU
+pHI
+qQE
+qQE
+qQE
+pFO
+fRh
+skU
+skU
+skU
+aiQ
+wDM
+lDB
+lDB
+lDB
+lDB
+lDB
+vei
+qFw
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(217,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+uAV
+uAV
+slB
+slB
+jOt
+ntH
+ntH
+uUT
+iGe
+xLj
+ffn
+sLi
+xNW
+hHs
+aEr
+qVN
+tym
+hoR
+cRM
+txF
+uPP
+oPi
+nng
+uTi
+hHK
+fXm
+fXm
+fXm
+fXm
+fXm
+fXm
+fXm
+deH
+wfp
+nng
+fNe
+nXi
+nXi
+nXi
+fNe
+nng
+nng
+nng
+feQ
+dba
+nng
+iQm
+uIF
+skU
+uwK
+vEK
+mml
+kbA
+cin
+wiv
+fzZ
+wRh
+xDA
+aiQ
+wDM
+wet
+kIb
+kIb
+kIb
+kIb
+qFw
+qFw
+fkY
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(218,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+uAV
+uAV
+slB
+slB
+jOt
+jOt
+slk
+uUT
+iGe
+cXA
+ttm
+wyI
+jAE
+irY
+tym
+rio
+xYk
+eTt
+voy
+jpI
+kRx
+jhE
+dba
+fXm
+fXm
+fXm
+fXm
+hHK
+fXm
+oJe
+fXm
+gJA
+gnO
+cvo
+nng
+mMj
+mMj
+mMj
+mMj
+uUC
+nng
+dba
+nng
+mkt
+myf
+nng
+nng
+vDw
+skU
+tYL
+dTH
+qQE
+bSj
+laY
+vzo
+skU
+sNe
+skU
+aiQ
+wDM
+vei
+qFw
+qFw
+qFw
+qFw
+qFw
+fkY
+fkY
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(219,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+suH
+lyH
+lyH
+lyH
+lyH
+suH
+suH
+uAV
+uAV
+slB
+slB
+jOt
+iUO
+kqq
+dvr
+qrJ
+msy
+fFy
+tMb
+irY
+tym
+tym
+tym
+sDp
+sih
+txF
+bNO
+oPi
+nng
+dba
+dba
+fXm
+fXm
+fXm
+fXm
+fXm
+abG
+gfC
+vDX
+uXC
+nng
+mMj
+mMj
+mMj
+mMj
+mMj
+nng
+dba
+erh
+wkk
+jYz
+wQN
+phe
+wfS
+wrd
+xWp
+skU
+skU
+skU
+skU
+skU
+skU
+skU
+skU
+wDM
+wDM
+vei
+qFw
+qFw
+suH
+fkY
+fkY
+fkY
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(220,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+uAV
+mZU
+mZU
+mZU
+jOt
+vSb
+jOt
+bqU
+ePm
+jOt
+jOt
+vSb
+jhE
+mZu
+tym
+tym
+sDp
+gIx
+txF
+wyn
+jhE
+dba
+dba
+dba
+dba
+dba
+dba
+dba
+pUr
+drg
+dba
+nng
+dba
+nng
+mMj
+mMj
+mMj
+mMj
+mMj
+nng
+nng
+erh
+erh
+nng
+nng
+nxV
+hys
+skU
+skU
+skU
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+suH
+kIb
+qFw
+qFw
+suH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(221,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+lyH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+uAV
+mZU
+fHp
+fUK
+tyG
+hmQ
+ffr
+nLb
+tkJ
+hZx
+sla
+mcx
+mZU
+tym
+tym
+tym
+sDp
+swO
+yad
+bNO
+oPi
+nng
+dba
+nng
+dba
+nng
+dba
+nng
+deH
+bfj
+nng
+dba
+dba
+nng
+mMj
+mMj
+mMj
+mMj
+mMj
+nng
+nng
+dba
+nng
+dba
+bAC
+tla
+usH
+nng
+nng
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+fkY
+fkY
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(222,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+suH
+suH
+suH
+dgo
+euF
+euF
+euF
+euF
+euF
+euF
+pYr
+pJh
+uNe
+mJn
+aMd
+ubR
+aaj
+mrI
+oAw
+gvc
+qVy
+fUK
+mZU
+utB
+tLX
+jYC
+uRa
+jCL
+qnB
+sdh
+jhE
+bqa
+maf
+mBh
+byG
+aoQ
+ibM
+teW
+eSJ
+euE
+wXP
+nng
+dba
+nng
+mMj
+mMj
+mMj
+mMj
+mMj
+nng
+dba
+nng
+dba
+nng
+bIv
+aJt
+nng
+nng
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+fkY
+fkY
+suH
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(223,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+lyH
+qFw
+qFw
+hhG
+xec
+xec
+xec
+euF
+xec
+xec
+ibf
+pJh
+qJR
+nXT
+gBb
+blU
+nXT
+qBk
+cZF
+fBo
+hhB
+rgO
+mZU
+rva
+abH
+dUA
+ouA
+tpE
+jiS
+xxd
+eJW
+gfC
+cIc
+fNB
+ufO
+rCA
+ufO
+gfC
+gfC
+uEm
+jfW
+dba
+nng
+nng
+nng
+nng
+nng
+nng
+nng
+nng
+dba
+nng
+bAC
+tla
+xkA
+nng
+nng
+qFw
+qFw
+qFw
+qFw
+suH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+suH
+fkY
+suH
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(224,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+dgo
+xec
+xec
+xec
+euF
+xec
+xec
+ibf
+nnE
+pJh
+nXT
+gBb
+blU
+nXT
+wOQ
+qao
+osg
+pvb
+luv
+cNZ
+ixv
+lEH
+tym
+qJm
+uFc
+jwE
+jLT
+jhE
+dba
+nng
+dba
+nng
+dba
+nng
+dba
+nng
+wZd
+mpJ
+gQO
+cec
+kEE
+vJU
+htp
+dmS
+eNX
+jvF
+cif
+sOW
+idX
+iti
+vFr
+nng
+nng
+qFw
+qFw
+qFw
+qFw
+lyH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(225,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+suH
+suH
+hhG
+euF
+euF
+euF
+euF
+euF
+euF
+pYr
+nnE
+pJh
+dbC
+rqZ
+blU
+yeN
+sTw
+lpG
+gFW
+pby
+sdC
+mZU
+crN
+kpt
+tym
+tym
+tym
+web
+cUt
+oPi
+kzW
+slB
+slB
+slB
+slB
+slB
+slB
+dba
+bAC
+vlD
+euf
+uSY
+qjq
+qjq
+jQs
+paX
+jti
+qjq
+qjq
+tmO
+aLf
+jNM
+nng
+nng
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(226,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+vfX
+rzi
+mZU
+mZU
+mZU
+mZU
+mZU
+iAi
+hhe
+cjX
+njz
+mZU
+bCZ
+xzn
+tym
+tym
+tym
+web
+rvJ
+jhE
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+buk
+buk
+aTo
+buk
+buk
+nng
+nng
+nng
+nng
+nng
+nng
+nng
+nng
+nng
+nng
+nng
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(227,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+eqX
+gEn
+pRA
+aOM
+clJ
+eKH
+cNd
+xuO
+kIJ
+mZU
+tym
+iDm
+oji
+nYf
+oji
+vQe
+utn
+oPi
+kzW
+slB
+slB
+slB
+slB
+slB
+slB
+buk
+wee
+iNZ
+tuh
+buk
+uAV
+uAV
+uAV
+uAV
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+lyH
+lyH
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(228,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+suH
+lyH
+lyH
+suH
+suH
+suH
+suH
+suH
+suH
+qFw
+eqX
+hyl
+auO
+sKo
+qrd
+heq
+mXE
+sfe
+dts
+mZU
+xjx
+xah
+iGG
+xzR
+jUS
+sNl
+cJL
+jhE
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+buk
+uPR
+kqc
+qDp
+buk
+uAV
+uAV
+uAV
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+lyH
+lyH
+wPj
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(229,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+qFw
+qFw
+qFw
+suH
+qFw
+fcC
+mZU
+hRQ
+akN
+mZU
+mZU
+qhH
+eDf
+mZU
+mZU
+jhE
+nSZ
+hVA
+oPi
+jhE
+oPi
+jhE
+oPi
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+buk
+rVm
+mSn
+kLw
+buk
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(230,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+lyH
+lyH
+qFw
+qFw
+suH
+qFw
+qFw
+rzi
+mZU
+mZU
+mZU
+uAV
+fvO
+uok
+jhE
+jhE
+pmu
+mFv
+jhE
+kzW
+slB
+kzW
+slB
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+uAV
+buk
+buk
+buk
+buk
+buk
+qFw
+suH
+qFw
+suH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+suH
+lyH
+lyH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(231,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+lyH
+lyH
+qFw
+suH
+suH
+suH
+suH
+uAV
+uAV
+uAV
+uAV
+fvO
+uok
+jhE
+sIT
+ePM
+skI
+jhE
+slB
+slB
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+uAV
+uAV
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+lyH
+lyH
+lyH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(232,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+wPj
+lyH
+lyH
+suH
+qFw
+qFw
+qFw
+suH
+uAV
+uAV
+fmt
+yli
+uok
+jhE
+vWK
+iNi
+wJd
+jhE
+slB
+slB
+slB
+slB
+slB
+uAV
+uAV
+uAV
+uAV
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(233,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+fvO
+uAV
+aLV
+meR
+gXd
+ryS
+aWB
+jhE
+uAV
+uAV
+uAV
+uAV
+uAV
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(234,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+lyH
+lyH
+lyH
+lyH
+suH
+qFw
+qFw
+iIF
+uAV
+uAV
+jhE
+jhE
+jhE
+jhE
+jhE
+uAV
+uAV
+uAV
+uAV
+uAV
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(235,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+vNx
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(236,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+lyH
+lyH
+lyH
+lyH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+aBf
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(237,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(238,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+suH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+lyH
+suH
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(239,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+vBs
+yke
+vBs
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(240,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+wPj
+vBs
+wPj
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(241,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(242,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(243,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(244,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+syg
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(245,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(246,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(247,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(248,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(249,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(250,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(251,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(252,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(253,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(254,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(255,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
+(256,1,1) = {"
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+qFw
+"}
diff --git a/modular_chomp/maps/cetus/cetus-2.dmm b/modular_chomp/maps/cetus/cetus-2.dmm
new file mode 100644
index 0000000000..4a4153f3ac
--- /dev/null
+++ b/modular_chomp/maps/cetus/cetus-2.dmm
@@ -0,0 +1,136881 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aaf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm1)
+"aak" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hottubtint"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/sauna)
+"aaq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Upper Atrium 1"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"aat" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"aau" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/structure/dummystairs/hazardledge{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/storage/primary)
+"aav" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/medical/Virology)
+"aaG" = (
+/obj/structure/table/bench/wooden{
+ pixel_y = 9
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/jrlounge)
+"aaT" = (
+/turf/simulated/wall,
+/area/security/Internal_Affairs_Office)
+"abm" = (
+/obj/structure/railing/overhang/hazard,
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"abu" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/cargo,
+/obj/random/toolbox,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"abN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"acn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"acp" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"acv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"acU" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"acX" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Reception)
+"acZ" = (
+/obj/machinery/vending/wardrobe/atmosdrobe,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"adc" = (
+/turf/simulated/wall/r_wall,
+/area/hangar/three)
+"adm" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"adE" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobio6station";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"adI" = (
+/turf/simulated/open,
+/area/rnd/cetus/jrhall)
+"adJ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/table/rack/shelf,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"adR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"adY" = (
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm1)
+"aeH" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/item/radio/beacon,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/atrium/primary)
+"aeS" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"aeY" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Evidence_Storage)
+"aeZ" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/machinery/button/remote/blast_door{
+ id = "xenobio6station";
+ name = "Containment Blast Doors";
+ pixel_y = 2;
+ req_access = list(55);
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"afg" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"afy" = (
+/obj/structure/bed/chair/sofa/right/blue{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"afM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"aga" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/jrhallway)
+"agd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"agq" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"agv" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"agE" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"agN" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/teleporter/arrivals)
+"agV" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/cetus/chem)
+"agW" = (
+/turf/simulated/wall,
+/area/crew_quarters/Gym)
+"agY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"ahb" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"ahe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"ahi" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"ahj" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"ahu" = (
+/obj/structure/table/standard,
+/obj/machinery/photocopier/faxmachine{
+ department = "Quartermaster's Office"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"ahT" = (
+/obj/random/maintenance/research,
+/obj/random/mainttoyloot,
+/obj/random/mainttoyloot,
+/obj/structure/closet/crate,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"ahU" = (
+/obj/item/gun/energy/floragun{
+ pixel_y = 8
+ },
+/obj/item/multitool{
+ pixel_y = 3
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/analyzer/plant_analyzer,
+/obj/item/analyzer/plant_analyzer{
+ pixel_y = -4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"aig" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering Workshop";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/Engineering_Workshop)
+"ais" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Internal Affairs Agent"
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"aiZ" = (
+/obj/structure/table/steel,
+/obj/structure/railing/overhang/grey,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/item/storage/box/syringegun,
+/obj/item/gun/launcher/syringe,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Distillery";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"ajb" = (
+/obj/structure/table/steel,
+/obj/random/drinkbottle,
+/obj/random/junk,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"ajr" = (
+/obj/machinery/computer/card{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/checkpoint2)
+"ajx" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small/fluorescent,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"ajB" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"ajJ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"ajY" = (
+/obj/structure/closet/emcloset,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"akd" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"akr" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/bed/chair/sofa/corp/left{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/rnd/cetus/jrhall)
+"alf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"ali" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"all" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/Reception)
+"alm" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/obj/fiftyspawner/plastic,
+/obj/item/stack/material/plasteel{
+ amount = 30
+ },
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"alo" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/grass,
+/area/rnd/Xenobotany_Lab)
+"alz" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"alC" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"alF" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"alH" = (
+/obj/structure/table/steel,
+/obj/item/integrated_circuit_printer,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"alN" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/atriumdeck2)
+"amc" = (
+/obj/structure/table/rack/steel,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = -1;
+ pixel_y = 11
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_x = -1;
+ pixel_y = 11
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/item/storage/belt/utility{
+ pixel_x = 1;
+ pixel_y = -5
+ },
+/obj/item/storage/belt/utility{
+ pixel_x = 1;
+ pixel_y = -5
+ },
+/obj/item/multitool{
+ pixel_x = 3
+ },
+/obj/item/multitool{
+ pixel_x = 3
+ },
+/obj/machinery/requests_console{
+ dir = 4;
+ pixel_x = -22;
+ name = "Robotics RC";
+ department = "Robotics"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"amd" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"amh" = (
+/turf/simulated/mineral/cetus,
+/area/engineering/cetus/foresubstation)
+"amw" = (
+/obj/item/stool/padded{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/zerobar)
+"amz" = (
+/obj/structure/table/steel,
+/obj/item/storage/laundry_basket,
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"amC" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/EMT_Bay)
+"amT" = (
+/obj/machinery/conveyor{
+ id = "disposalsorter"
+ },
+/obj/machinery/door/window/southleft{
+ name = "Recycling Chute";
+ req_access = list(50)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"ana" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Reception";
+ req_access = list(5)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/medsci)
+"and" = (
+/obj/structure/closet/toolcloset,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"anf" = (
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"ani" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Dock"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/seconddeck/dockhallway)
+"anC" = (
+/obj/structure/window/basic,
+/obj/structure/table/standard,
+/obj/item/starcaster_news{
+ pixel_y = 3;
+ pixel_x = -3
+ },
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"anP" = (
+/obj/item/geiger/wall/east,
+/turf/simulated/floor/reinforced,
+/area/asteroid/cetus/d2)
+"anV" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"aos" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"aoy" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/item/material/twohanded/spear/foam,
+/obj/item/material/twohanded/fireaxe/foam,
+/obj/item/material/sword/foam,
+/obj/structure/table/rack/shelf,
+/obj/item/material/twohanded/baseballbat/foam,
+/obj/structure/railing/overhang/grey,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"aoB" = (
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/obj/item/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"aoC" = (
+/obj/structure/table/standard,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/item/pickaxe/drill,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"apx" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/auxsupport)
+"apQ" = (
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"apT" = (
+/turf/simulated/wall,
+/area/quartermaster/QM_Office)
+"apY" = (
+/obj/structure/easel,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"aqk" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"aqm" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/cetus/cetus8,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"aqp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"aqt" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"aqE" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/white,
+/area/medical/EMT_Bay)
+"aqW" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Qpad";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/arrivals)
+"aqZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"ars" = (
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/obj/item/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"aru" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/railing/overhang/bronze,
+/obj/structure/dummystairs/bronzeledge{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/Chapel_Office)
+"arS" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35;
+ name = "Morgue Delivery Chute";
+ color = "green"
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"ase" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"asg" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Galleryf1)
+"asw" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"asy" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"asL" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"asW" = (
+/obj/machinery/gateway{
+ dir = 6
+ },
+/obj/effect/landmark{
+ name = "JoinLateStationGateway"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/departure)
+"atm" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"atn" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"atv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"atJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "exterior access button";
+ pixel_x = 6;
+ pixel_y = -32
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/mainsupport)
+"atW" = (
+/obj/random/trash,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"auc" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"auj" = (
+/obj/structure/bed/roller,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/cetus/sleevelobby)
+"auo" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"aux" = (
+/obj/item/inflatable/door/torn,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twoap)
+"auy" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"ava" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"avf" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/tank/jetpack/carbondioxide,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/obj/machinery/door/window/westright{
+ name = "Jetpack Storage";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"avz" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"avB" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"avR" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"avU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"aww" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"awF" = (
+/obj/structure/table/steel,
+/obj/item/stack/material/cardboard,
+/obj/item/stack/material/cardboard,
+/obj/item/stack/material/cardboard,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/vending/wallmed1{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"awG" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Tool Storage"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"awL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Library"
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0;
+ anchored = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/Libraryf1)
+"awM" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"axa" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/dark,
+/area/security/Evidence_Storage)
+"axi" = (
+/obj/structure/table/steel,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/item/toy/plushie/lizardplushie/kobold,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"axk" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"axE" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"axO" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"ayb" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"ayn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/random/tool,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"ayC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"ayJ" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall/r_wall,
+/area/medical/Distillery)
+"ayR" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/access_button{
+ dir = 1;
+ name = "interior access button";
+ pixel_y = -25
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"ayW" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"azb" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/mask/breath,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/rig/eva/equipped,
+/obj/machinery/door/window/westright{
+ name = "Engineering Hardsuits";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"azc" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"azf" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/cetus/atriumd2)
+"azi" = (
+/obj/structure/table/standard,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/random/plushie,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/random/snack,
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"azJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ name = "Locker Room";
+ req_access = list(5)
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Locker_Room)
+"azK" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/item/paper_bin,
+/obj/item/folder/yellow,
+/obj/item/multitool,
+/obj/item/pen/blue{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"azP" = (
+/obj/random/trash,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/twojrport)
+"aAh" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
+ },
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D2)
+"aAl" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"aAD" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/Mech_Bay)
+"aAG" = (
+/obj/structure/sign/directions/science{
+ dir = 6
+ },
+/turf/simulated/wall,
+/area/crew_quarters/cetus/jrhallway)
+"aBm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"aBn" = (
+/obj/item/stool/padded{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"aBA" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_2)
+"aBB" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"aBC" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/machinery/conveyor_switch/oneway{
+ id = "QMDelivery";
+ name = "mail";
+ pixel_y = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/quartermaster/Recycling)
+"aBH" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/box/syringes,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"aBW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"aCk" = (
+/obj/structure/bed/chair/sofa/left/orange{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"aCu" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/psych)
+"aCy" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"aCA" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"aCC" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"aCF" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"aDc" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"aDk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"aDp" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"aDq" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"aDP" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"aEc" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"aEe" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"aEi" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/medical,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"aEw" = (
+/obj/structure/cable/green{
+ icon_state = "5-6"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"aED" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/black/border,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Mech_Bay)
+"aEK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"aEL" = (
+/obj/structure/table/woodentable,
+/obj/item/storage/box/glasses/square,
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"aEQ" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposaloutlet{
+ dir = 4;
+ layer = 3.3
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"aFa" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"aFl" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/table/marble,
+/obj/item/newspaper{
+ pixel_y = 3
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/rnd/cetus/jrhall)
+"aFt" = (
+/turf/simulated/wall/r_wall,
+/area/security/Processing_Room)
+"aFA" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/Evidence_Storage)
+"aFE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"aFS" = (
+/obj/structure/closet/crate/solar,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"aFV" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"aFW" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"aGs" = (
+/obj/effect/shuttle_landmark{
+ docking_controller = "hangar_3";
+ landmark_tag = "hangar_3";
+ name = "Hangar 3"
+ },
+/turf/simulated/floor/reinforced,
+/area/shuttle/shuttle3/stationhangar3)
+"aGV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "escape_dock_south_airlock";
+ master_tag = "escape_dock";
+ pixel_y = -27;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"aHf" = (
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"aHH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Kitchen";
+ req_access = list(28)
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/crew_quarters/kitchen)
+"aHW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hop_office"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hop)
+"aIk" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"aIn" = (
+/obj/structure/bed/chair/modern_chair{
+ dir = 8
+ },
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/twojrport)
+"aIu" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/deck/wizoff{
+ pixel_y = 10;
+ pixel_x = -9
+ },
+/obj/item/deck/wizoff{
+ pixel_y = 2;
+ pixel_x = -9
+ },
+/obj/item/deck/wizoff{
+ pixel_y = -6;
+ pixel_x = -9
+ },
+/obj/item/book/manual/wizzoffguide{
+ pixel_y = 9;
+ pixel_x = 7
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"aIL" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"aIO" = (
+/obj/structure/bookcase{
+ name = "Forbidden Knowledge"
+ },
+/obj/machinery/button/remote/blast_door/bear{
+ pixel_y = 25;
+ id = "gamba"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"aIP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"aIX" = (
+/obj/structure/dummystairs/greyledge{
+ dir = 4
+ },
+/obj/structure/railing/overhang/grey,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"aJr" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"aJt" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"aJV" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/machinery/button/remote/blast_door{
+ id = "xenobioextra2";
+ name = "Containment Blast Doors";
+ pixel_y = 2;
+ req_access = list(55);
+ dir = 4;
+ pixel_x = -1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"aJW" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"aKf" = (
+/obj/machinery/button/remote/blast_door{
+ id = "Cell 1";
+ name = "Cell 1 Door";
+ pixel_x = 27;
+ req_one_access = list(2,4);
+ dir = 8
+ },
+/obj/machinery/button/flasher{
+ id = "Cell 1";
+ name = "Cell 1 Flash";
+ pixel_x = 37;
+ req_access = list(2,4)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"aKg" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 6
+ },
+/obj/effect/mist,
+/turf/simulated/floor/water/hotspring{
+ depth = 1
+ },
+/area/crew_quarters/sauna)
+"aKz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_research{
+ name = "Xenoflora Isolation";
+ req_access = list(55)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"aKH" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"aKL" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/jrlounge)
+"aKV" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobotany_Lab)
+"aLw" = (
+/obj/structure/transit_tube{
+ icon_state = "D-SW"
+ },
+/obj/structure/stairs/spawner/south,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/jrhallway)
+"aLE" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "janitor_blast";
+ name = "Privacy Shutters";
+ dir = 4;
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"aLM" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"aMj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/black{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Kitchen";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"aMn" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/button/remote/blast_door{
+ id = "xenobio2station";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access = list(55);
+ pixel_x = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for a door to space.";
+ id = "xenobiostationext3";
+ name = "Containment Release Switch";
+ req_access = list(55);
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"aMp" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Robotics_Lab)
+"aMB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"aME" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"aMJ" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8;
+ color = "#aa5f61"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4;
+ color = "#aa5f61"
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Reception)
+"aMR" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"aMS" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Mech_Bay)
+"aNm" = (
+/obj/machinery/rnd/server/master,
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/rnd/Server_Room)
+"aNs" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"aNG" = (
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"aNP" = (
+/obj/structure/table/bench/steel,
+/obj/item/starcaster_news,
+/turf/simulated/floor/carpet/blucarpet,
+/area/hallway/primary/seconddeck/dockhallway)
+"aNX" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"aOd" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/jrhallway)
+"aOe" = (
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/security/Firing_Range)
+"aOm" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard,
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/atriumdeck2)
+"aOE" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/button/doorbell{
+ pixel_y = -30;
+ pixel_x = 20;
+ id = "sc-ChimeMed";
+ name = "Medbay Doorbell"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"aOJ" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/maint_recycler,
+/obj/effect/recycler_beacon,
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"aOR" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/jrdorm4)
+"aPd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/button/windowtint{
+ id = "researchoffice";
+ pixel_x = -21;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"aPr" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Brig)
+"aPt" = (
+/obj/structure/salvageable/implant_container_os,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"aPC" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/storage/box/lights/mixed,
+/obj/random/tech_supply,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil/cyan{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil/cyan{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil/cyan{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"aPO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8;
+ target_pressure = 200
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"aPV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"aPY" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - JR Public Lounge";
+ dir = 1
+ },
+/obj/structure/bed/chair/sofa/right/brown{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/jrlounge)
+"aQd" = (
+/obj/structure/sign/directions/evac{
+ dir = 6
+ },
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D2)
+"aQv" = (
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/heads/sc/hos)
+"aQB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"aQP" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"aRe" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/security/security_aid_station)
+"aRG" = (
+/obj/structure/sign/directions/science{
+ name = "\improper Circuit Lab";
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/rnd/Circuitry_Den)
+"aRY" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"aSe" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"aSy" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"aSJ" = (
+/obj/structure/disposalpipe/junction/yjunction,
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"aSS" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"aSU" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "exp_sling";
+ name = "shuttle bay controller";
+ pixel_y = -26;
+ tag_door = "exp_sling_hatch"
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/expoutpost/station)
+"aSW" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/obj/structure/window/reinforced/tinted,
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/Chapel_Office)
+"aTQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"aTU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Locker_Room)
+"aTW" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"aUf" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"aUp" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/machinery/holosign/robotics{
+ id = "roboton"
+ },
+/turf/simulated/floor/plating,
+/area/medical/medsci)
+"aUB" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"aUP" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/workshop)
+"aVb" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"aVu" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"aVC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/Gym)
+"aVF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"aVK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/cafeteriaf2)
+"aWF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm4)
+"aWY" = (
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"aXc" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"aXt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/primary/central_two)
+"aXv" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"aXD" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/lobby)
+"aXG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/bed/chair/office/dark,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"aXW" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"aYe" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/black/bordercorner,
+/turf/simulated/floor/lino,
+/area/crew_quarters/Chapel_Office)
+"aYr" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"aYs" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_y = 6;
+ pixel_x = -6
+ },
+/obj/item/storage/pill_bottle/spaceacillin,
+/obj/structure/table/glass,
+/obj/item/deck/cards{
+ pixel_y = -3;
+ pixel_x = 7
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled,
+/area/medical/cetus/sleevelobby)
+"aYu" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva/aux)
+"aYB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ name = "Custodial Maintenance";
+ req_access = list(26)
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/Custodial_Office)
+"aYE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Brig)
+"aZg" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"aZo" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/chapel/main)
+"aZy" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"aZU" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"aZW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Utility Stairwell"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/central_two)
+"bad" = (
+/obj/machinery/light/small,
+/obj/machinery/power/quantumpad{
+ map_pad_id = "cetus_sci_padin";
+ map_pad_link_id = "cetus_sci_padout";
+ name = "Research and Development Q-Pad"
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/greengrid,
+/area/crew_quarters/cetus/jrhallway)
+"bao" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"bar" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"baw" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"baB" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/head/helmet/space/void/engineering,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/engineering,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/obj/machinery/door/window/eastright{
+ name = "Engineering Suits";
+ req_access = list(11)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"baN" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Reception";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"baX" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva/aux)
+"bbj" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - JR Hallway 2";
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"bbx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ id_tag = "mentaldoor";
+ name = "Mental Health";
+ req_access = list(64)
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/psych)
+"bby" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"bcf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobotany_Lab)
+"bcg" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"bcw" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/research_foyer_auxiliary)
+"bcy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"bcL" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "w3_c_airlock";
+ pixel_y = -27;
+ req_one_access = list(13);
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"bcN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"bdl" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/rnd/Xenobiology_Lab)
+"bdD" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/turf/space,
+/area/space)
+"bdO" = (
+/turf/simulated/open,
+/area/medical/Surgery_Viewing)
+"bdR" = (
+/obj/machinery/light/small/emergency,
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"bem" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 27
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/atrium/primary)
+"bet" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/arrivals)
+"beL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"beQ" = (
+/obj/structure/table/standard,
+/obj/machinery/computer/med_data/laptop{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Virology)
+"beW" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/Research_Lab)
+"bfa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"bff" = (
+/obj/structure/railing/overhang/grey,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"bfj" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"bfn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"bfs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"bfw" = (
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"bfy" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/threecp)
+"bfE" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D1)
+"bfP" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 22;
+ pixel_x = 3
+ },
+/obj/structure/dogbed,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"bgc" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"bgk" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Xenoflora Research";
+ req_access = list(55)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobotany_Lab)
+"bgN" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"bgW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"bha" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"bhe" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "chemtint"
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id = "chemwindow";
+ name = "Chemistry Window Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/medical/Chemistry)
+"bhf" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/crew_quarters/cetus/dockrestrooms)
+"bhg" = (
+/obj/machinery/vending/loadout/gadget,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/storage/primary)
+"bhh" = (
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"bhv" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/white,
+/area/medical/EMT_Bay)
+"bhx" = (
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"bhC" = (
+/obj/machinery/chemical_synthesizer,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"bhD" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"bhK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/fans/tiny,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/door/airlock{
+ name = "Hot Tub";
+ id_tag = "hottub"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sauna)
+"bhV" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/twocargo)
+"bhZ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark/start{
+ name = "Chef"
+ },
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"big" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"bjh" = (
+/obj/machinery/photocopier,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"bjn" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"bjA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/rnd/production/protolathe/department/service,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/servicecloset)
+"bjD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - D2 Hall 1";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"bjG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"bjJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/effect/floor_decal/emblem/nt3,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"bjV" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"bkb" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"bke" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ id_tag = "cabin1";
+ name = "Cabin 1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/jrdorm1)
+"bkm" = (
+/obj/structure/table/reinforced,
+/obj/fiftyspawner/rods,
+/obj/fiftyspawner/rglass,
+/obj/item/stack/material/plasteel{
+ amount = 10
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"bkE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"bkL" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"bkU" = (
+/obj/random/vendorfood{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"blu" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"blE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"bmb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"bmm" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"bmJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"bmO" = (
+/mob/living/simple_mob/slime/xenobio,
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"bmX" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"bmY" = (
+/obj/structure/closet/lasertag/blue,
+/obj/item/stack/flag/blue,
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/arcadestorage)
+"bnd" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/structure/bed/chair/sofa/brown{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/jrlounge)
+"bni" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/dummystairs,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"bnr" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/shield_diffuser,
+/obj/machinery/access_button{
+ name = "exterior access button";
+ pixel_x = -10;
+ pixel_y = 32;
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/structure/fans/tiny,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D2)
+"bny" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/hallway/secondary/entry/docking_lounge)
+"bnG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"bnH" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"bnO" = (
+/obj/machinery/light/small,
+/obj/machinery/power/quantumpad{
+ map_pad_id = "cetus_med_padin";
+ map_pad_link_id = "cetus_med_padout";
+ name = "Medical Bay Q-Pad"
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/bluegrid,
+/area/crew_quarters/cetus/jrhallway)
+"bnV" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "8-10"
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/heads/sc/hos)
+"boa" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/Custodial_Office)
+"boj" = (
+/obj/machinery/disposal,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Research and Development";
+ dir = 9
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"bol" = (
+/obj/structure/loot_pile/surface/medicine_cabinet{
+ pixel_y = 32
+ },
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"boR" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"boZ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Firing_Range)
+"bpl" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Robotics_Lab)
+"bpG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"bpH" = (
+/obj/random/trash_pile,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"bpL" = (
+/obj/machinery/atmospherics/pipe/zpipe/down/supply,
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "32-6"
+ },
+/obj/structure/lattice,
+/obj/structure/disposalpipe/down,
+/turf/simulated/open,
+/area/engineering/cetus/foresubstation)
+"bqe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"bqr" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Locker_Room)
+"bqH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"bqR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/micro_tunnel/random,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"brh" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/zerobar)
+"brl" = (
+/obj/effect/landmark/start{
+ name = "Botanist"
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"brp" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departure)
+"brs" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"brA" = (
+/obj/structure/table/reinforced,
+/obj/structure/noticeboard{
+ pixel_x = -32
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/southright{
+ name = "Cargo Desk";
+ req_access = list(31)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/quartermaster/Reception)
+"brJ" = (
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"brS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ id_tag = "HoSdoor";
+ name = "Head of Security Quarters";
+ req_access = list(58);
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/heads/sc/hos)
+"bsl" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Surgery Observation";
+ dir = 1
+ },
+/turf/simulated/open,
+/area/medical/Surgery_Viewing)
+"bsJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/closet/toolcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"btt" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"btv" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"btA" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/Genetics_Lab)
+"btC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"bud" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Arrivals Hallway 2";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"bum" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ id = "qpwld";
+ name = "Checkpoint Lockdown"
+ },
+/obj/machinery/door/window/brigdoor/southright{
+ dir = 4;
+ req_access = null;
+ req_one_access = list(1,19)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/checkpoint2)
+"buz" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"buA" = (
+/obj/machinery/gibber,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"buU" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/medical/cetus/atriumd2)
+"buX" = (
+/obj/structure/grille,
+/turf/simulated/wall/r_wall,
+/area/space)
+"bvy" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/Chemistry)
+"bvO" = (
+/obj/structure/table/standard,
+/obj/item/radio/intercom/department/security{
+ dir = 4;
+ icon_override = "secintercom";
+ pixel_x = 21
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = 6
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Medical Station";
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/security_aid_station)
+"bvS" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"bvT" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"bwb" = (
+/obj/random/soap,
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"bwc" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/random/contraband,
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Evidence_Storage)
+"bwk" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twoap)
+"bwA" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"bwM" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer_auxiliary)
+"bxf" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"bxq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Aft Substation";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"bxs" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"bxu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/vending/loadout/gadget,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"bxJ" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"bxL" = (
+/obj/machinery/bookbinder,
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"byX" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"bzy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"bzz" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"bzC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"bzF" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/item/starcaster_news,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"bAa" = (
+/obj/structure/sign/directions/science/xenobiology{
+ pixel_y = -2;
+ dir = 1
+ },
+/obj/structure/sign/directions/science/xenoflora{
+ dir = 1;
+ pixel_y = 10
+ },
+/obj/structure/sign/directions/science{
+ name = "\improper Particle Accelerator";
+ dir = 5;
+ pixel_y = 4
+ },
+/obj/structure/sign/directions/science{
+ name = "\improper Circuit Lab";
+ dir = 1;
+ pixel_y = -8
+ },
+/turf/simulated/wall,
+/area/crew_quarters/cetus/jrhallway)
+"bAB" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/bordercorner,
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/Chapel_Office)
+"bAO" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/aftsubstation)
+"bAY" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/twobar)
+"bBf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/obj/structure/catwalk,
+/obj/random/mob/mouse,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"bBo" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"bBt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"bBN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"bBP" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"bCa" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/corner/green,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/arcadestorage)
+"bCh" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"bCk" = (
+/obj/item/stool/padded,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"bCB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/dockhallway)
+"bCI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"bCL" = (
+/obj/machinery/light{
+ layer = 3
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"bCN" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"bCR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"bCX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"bDh" = (
+/obj/item/frame,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"bDq" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"bDz" = (
+/turf/simulated/wall,
+/area/medical/cetus/atriumd2)
+"bDA" = (
+/obj/structure/closet/emcloset/legacy,
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"bDC" = (
+/obj/random/trash,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"bDK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/blast/regular{
+ id = "Cell 1";
+ name = "Cell 1 Door"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"bDM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning,
+/obj/random/trash,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"bDN" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/remote/blast_door{
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ pixel_x = 6;
+ req_access = list(10);
+ pixel_y = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ pixel_x = -6;
+ pixel_y = 8;
+ req_access = list(10)
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for engine core.";
+ id = "EngineVent";
+ name = "Engine Ventillatory Control";
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control-switch for the engine core airlock hatch bolts.";
+ id = "engine_access_hatch";
+ name = "Engine Hatch Bolt Control";
+ pixel_x = -6;
+ pixel_y = -2;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"bDO" = (
+/turf/simulated/wall,
+/area/medical/EMT_Bay)
+"bEz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"bER" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/atriumdeck2)
+"bEU" = (
+/obj/machinery/media/jukebox,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"bFj" = (
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/tabloid,
+/obj/item/newspaper{
+ pixel_y = 3
+ },
+/obj/item/tabloid,
+/obj/item/tabloid,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"bFx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"bFy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/stand_clear/blue,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/hall)
+"bFD" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/EMT_Bay)
+"bFQ" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"bFS" = (
+/obj/structure/easel,
+/obj/item/canvas/nineteen_nineteen,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"bFZ" = (
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer2";
+ name = "Medbay Outer Doors Control";
+ pixel_y = 5;
+ pixel_x = -27;
+ dir = 4
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer1";
+ name = "Medbay Inner Doors Control";
+ pixel_y = -5;
+ pixel_x = -27;
+ dir = 4
+ },
+/obj/machinery/photocopier,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -36
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bGj" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"bGn" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/window/reinforced/full,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobio6station";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"bGO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck"
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0;
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/Holodeck)
+"bGS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secward"
+ },
+/obj/machinery/door/blast/shutters{
+ id = "Warden_Shutters";
+ name = "Warden Shutters"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/security/Wardens_Office)
+"bHb" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "library_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/Libraryf1)
+"bHk" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/arrivals)
+"bHA" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"bHB" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"bHM" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"bHW" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = -4
+ },
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bIa" = (
+/obj/structure/lattice,
+/obj/item/stack/material/steel,
+/obj/structure/micro_tunnel/random,
+/turf/simulated/open,
+/area/maintenance/cetus/twosec)
+"bIj" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"bIy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"bIE" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"bIN" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 20;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"bIX" = (
+/obj/machinery/vending/cola{
+ dir = 8;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"bJK" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61";
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ color = "#aa5f61"
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Reception)
+"bKx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/observatory)
+"bKS" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ sortType = "Morgue";
+ name = "Morgue"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"bKT" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/box/cups,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"bKU" = (
+/obj/structure/table/steel,
+/obj/item/storage/mre/random,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"bKX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"bLa" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/evidence,
+/obj/item/hand_labeler,
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"bLg" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/bed/chair/sofa/corp/left{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/rnd/cetus/jrhall)
+"bLr" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ layer = 3
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Dock 3 Hallway 2";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"bLt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"bLM" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/flasher{
+ id = "Cell 3";
+ pixel_y = -25
+ },
+/obj/structure/bed/padded,
+/obj/item/bedsheet/orange,
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"bLN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/comissary)
+"bLX" = (
+/obj/machinery/light/fluorescent,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"bMi" = (
+/obj/machinery/shield_gen/external,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"bMx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"bMD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "w3_a_airlock";
+ pixel_y = -27;
+ req_one_access = list(13);
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"bMM" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/shield_diffuser,
+/obj/machinery/access_button{
+ name = "exterior access button";
+ pixel_x = -10;
+ pixel_y = 32;
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/structure/fans/tiny,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D3)
+"bMP" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"bMR" = (
+/turf/simulated/open,
+/area/maintenance/cetus/twocargo)
+"bMU" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"bMW" = (
+/obj/structure/bookcase{
+ name = "bookcase (Reference-Scientific)"
+ },
+/obj/item/book/codex/lore/robutt,
+/obj/item/book/manual/wiki/robotics_manual,
+/obj/item/book/manual/robotics_cyborgs,
+/obj/item/book/manual/ripley_build_and_repair,
+/obj/item/book/manual/research_and_development,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"bMY" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"bNh" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"bNk" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/twocave)
+"bNm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/item/radio/beacon,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"bNx" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"bNL" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"bNU" = (
+/obj/machinery/vending/cigarette{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"bNY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"bOh" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Foyer"
+ },
+/obj/item/geiger/wall/north,
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"bOj" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ icon_state = "map_vent_out";
+ use_power = 1
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/rnd/Server_Room)
+"bOr" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/item/material/knife/butch,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"bOt" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"bOu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"bPi" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Brig)
+"bPr" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/structure/cable{
+ icon_state = "6-8"
+ },
+/obj/machinery/access_button{
+ name = "interior access button";
+ pixel_x = 5;
+ pixel_y = 32;
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/auxsupport)
+"bPA" = (
+/obj/structure/table/glass,
+/obj/item/paper_bin{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/clipboard,
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/item/hand_labeler,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"bPC" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Arrivals checkpoint 2";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"bPD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "MedbayFoyer";
+ name = "EMT Bay";
+ req_access = list(5)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/EMT_Bay)
+"bQv" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"bQA" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Research_Lab)
+"bQF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"bRa" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/twojrport)
+"bRB" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/food/drinks/britcup,
+/obj/random/medical,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = -5
+ },
+/obj/item/reagent_containers/spray/cleaner,
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"bRE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"bRG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ id_tag = "qpdoorout";
+ name = "Outer Checkpoint Airlock";
+ normalspeed = 0
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "qpdld";
+ name = "Checkpoint Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/checkpoint2)
+"bRJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"bRX" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"bSg" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/departure)
+"bSk" = (
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/obj/structure/ladder,
+/turf/simulated/open,
+/area/maintenance/cetus/twofp)
+"bSq" = (
+/obj/effect/landmark/start{
+ name = "Engineer"
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"bSs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"bSx" = (
+/obj/structure/disposalpipe/junction,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"bSy" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"bSK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"bTj" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Aft Substation Bypass"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS- Aft";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"bTr" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"bTv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"bUg" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"bUj" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/sc/hop)
+"bUy" = (
+/obj/machinery/conveyor{
+ id = "QMLoad";
+ dir = 8
+ },
+/obj/structure/closet/crate,
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Cargo Bay Starboard";
+ dir = 1;
+ name = "security camera"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/storage)
+"bUA" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/carpet,
+/area/security/briefing_room)
+"bUK" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"bUY" = (
+/obj/machinery/door/airlock/glass{
+ name = "Quantum Pad Access";
+ id_tag = "qpdoormain"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "qpadblast";
+ name = "Qpad Lockdown";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/arrivals)
+"bVf" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"bVr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"bVu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"bVW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"bWf" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"bWg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"bWI" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_y = 12;
+ pixel_x = -12
+ },
+/obj/item/reagent_containers/dropper{
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/dropper{
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/dropper{
+ pixel_y = -3
+ },
+/obj/item/paper_bin{
+ pixel_x = 1;
+ pixel_y = 8
+ },
+/obj/item/folder/white,
+/obj/item/hand_labeler,
+/obj/item/pen,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"bWJ" = (
+/obj/machinery/conveyor{
+ id = "packageSort1"
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"bXq" = (
+/obj/structure/dummystairs/greyledge{
+ dir = 8
+ },
+/obj/structure/railing/overhang/grey,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"bXF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"bXV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"bXZ" = (
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/random/flashlight,
+/obj/random/flashlight,
+/obj/structure/table/rack,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"bYi" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/jrhallway)
+"bYE" = (
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"bYR" = (
+/obj/machinery/computer/supplycomp/control{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"bZc" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/stand_clear/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/Chemistry)
+"bZo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"bZz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"bZD" = (
+/obj/structure/lattice,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"bZT" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sauna)
+"bZU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/atrium/primary)
+"caA" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/tank/emergency/oxygen/engi,
+/obj/item/clothing/mask/gas,
+/obj/item/melee/umbrella/random,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/arrivals)
+"caE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"caG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"caI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"caR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "arrivals_dock_south_airlock";
+ master_tag = "arrivals_dock";
+ pixel_y = -27;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"cbc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ id_tag = "cabin2";
+ name = "Cabin 2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/jrdorm2)
+"cbf" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"cbm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/central_two)
+"ccb" = (
+/obj/random/obstruction,
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/cetus/twoap)
+"ccs" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"ccw" = (
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ pixel_y = 28
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"ccz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"cdc" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"cdk" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/substation/central)
+"cdo" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/jrlounge)
+"cdu" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"cdN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/random/trash,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"cek" = (
+/obj/machinery/computer/secure_data{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 8
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - HoS' Office";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"cem" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"ces" = (
+/obj/structure/toilet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"ceK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"ceO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/brigdoor/eastright{
+ req_access = list(2);
+ name = "Cell 2";
+ id = "Cell 2"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"ceS" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"ceX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/remote/blast_door{
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ pixel_x = 5;
+ req_one_access = list(10,24);
+ pixel_y = 2
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ pixel_x = -5;
+ req_access = list(10);
+ pixel_y = 2
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"cfd" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/vending/giftvendor,
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/arcadestorage)
+"cfg" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"cfp" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/twobar)
+"cfs" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"cfB" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"cfH" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"cfM" = (
+/obj/structure/bed/chair/comfy/purp{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/crew_quarters/cetus/jrlounge)
+"cfS" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/shield_diffuser,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "exterior access button";
+ pixel_x = 10;
+ pixel_y = 32
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/structure/fans/tiny,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D1)
+"cfU" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "8-9"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"cga" = (
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"cgd" = (
+/obj/structure/sign/warning/server_room,
+/turf/simulated/wall/r_wall,
+/area/rnd/Server_Room)
+"cgx" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/storage)
+"cgA" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"cgE" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"cgG" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"cgH" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/paper_bin,
+/obj/item/folder/white,
+/obj/item/pen,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/medsci)
+"cgQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"cgY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobotany_Lab)
+"chl" = (
+/obj/structure/bed/chair/sofa/corner/blue{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"chr" = (
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/item/gps/engineering/atmos,
+/obj/machinery/firealarm{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/clothing/under/swimsuit/fluff/engineering,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"chs" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/boxing,
+/area/crew_quarters/Gym)
+"chx" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/arcadestorage)
+"chz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "holodeck_tint"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/Holodeck)
+"chJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"chM" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"chR" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Security's Desk";
+ departmentType = 5;
+ name = "Head of Security RC";
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"cij" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"cit" = (
+/obj/structure/table/marble,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "vacantcomissary";
+ layer = 3.3;
+ name = "Comissary Shutters"
+ },
+/obj/item/gun/energy/sizegun,
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/comissary)
+"ciw" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-9"
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"ciE" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Research_Lab)
+"ciZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"cjf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering EVA Storage";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/Engineering_EVA)
+"cjt" = (
+/obj/machinery/deployable/barrier,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"cjF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ id = "janitor_blast";
+ layer = 3.1;
+ name = "Janitorial Shutters";
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/Custodial_Office)
+"cjW" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"ckn" = (
+/obj/structure/bed/chair/sofa/right/orange{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"ckq" = (
+/obj/structure/window/basic,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"ckB" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -37
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"clh" = (
+/obj/machinery/smartfridge/drying_rack{
+ dir = 1;
+ pixel_x = -4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"clm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"clp" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/black/border,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Cyborg"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Mech_Bay)
+"clx" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"clB" = (
+/obj/structure/sign/directions/engineering{
+ dir = 4;
+ pixel_y = -8
+ },
+/obj/structure/sign/directions/engineering/gravgen{
+ pixel_y = 8;
+ dir = 6
+ },
+/obj/structure/sign/directions/engineering/engeqp{
+ dir = 6;
+ name = "\improper Tech Storage"
+ },
+/turf/simulated/wall,
+/area/hallway/primary/central_two)
+"clD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/morgue{
+ dir = 2;
+ name = "Confession Booth"
+ },
+/obj/structure/railing,
+/obj/structure/dummystairs/bronzeledge{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/chapel/main)
+"clP" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"clS" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"clT" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/jointsubstation)
+"cma" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"cmf" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"cmB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"cmK" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/twocargo)
+"cmU" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ name = "Joint Research";
+ sortType = "Joint Research";
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"cmZ" = (
+/obj/machinery/vending/wardrobe/cargodrobe,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"cnl" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"cnt" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"cnv" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/security/Brig)
+"cnN" = (
+/obj/structure/disposalpipe/tagger{
+ name = "Morgue";
+ sort_tag = "Morgue"
+ },
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Robotics_Lab)
+"cnU" = (
+/obj/machinery/door/airlock{
+ name = "Unit 3"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"cnV" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/boxing/gym,
+/area/crew_quarters/Gym)
+"coi" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Central Substation Bypass"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"coz" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 5
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/rnd/Xenobotany_Lab)
+"coE" = (
+/obj/machinery/station_map{
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"coM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"coU" = (
+/obj/structure/table/woodentable,
+/obj/item/flashlight/lamp/green,
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"coZ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/flasher{
+ id = "Cell 4";
+ pixel_y = -25
+ },
+/obj/structure/bed/padded,
+/obj/item/bedsheet/orange,
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"cpa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"cpe" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/psych)
+"cpk" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"cpp" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"cpQ" = (
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"cpR" = (
+/obj/machinery/door/blast/regular{
+ desc = "Blastdoor divider";
+ id = "xenobioout7station";
+ name = "Containment Divider"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"cqe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"cqs" = (
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"cqG" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"cqH" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"cqY" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/stand_clear/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/atriumdeck2)
+"crl" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"crv" = (
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"crC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"crG" = (
+/obj/machinery/papershredder,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the RD's goons from the safety of his office.";
+ name = "Research Monitor";
+ network = list("Research","Toxins Test Area","Robots","Anomaly Isolation","Research Outpost");
+ pixel_x = 32;
+ pixel_y = -4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/heads/sc/hor)
+"crH" = (
+/obj/machinery/light,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/machinery/vending/fitness{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"crN" = (
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/arrivals)
+"crQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"crR" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/boxing/gym,
+/area/crew_quarters/Gym)
+"crT" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"crX" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Firing_Range)
+"csd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/medical/medsci)
+"cse" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ name = "Server Room";
+ req_access = list(30)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/Server_Room)
+"csk" = (
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"csH" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"cuj" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "robotoffice"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Mech_Bay)
+"cum" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"cuo" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/floor_painter,
+/obj/machinery/cell_charger,
+/turf/simulated/floor/tiled,
+/area/engineering/Engineering_Workshop)
+"cuA" = (
+/obj/machinery/transhuman/resleever,
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/rnd/Robotics_Lab)
+"cvg" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/docklock)
+"cvm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/station_map{
+ dir = 4;
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"cvo" = (
+/obj/structure/bed/chair/office/dark,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/lobby)
+"cvy" = (
+/obj/structure/window/reinforced/full,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobio2station";
+ name = "Containment Blast Doors";
+ opacity = 0;
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"cvI" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/window/basic,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"cvK" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"cwj" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"cws" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/roller,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/security_aid_station)
+"cxU" = (
+/obj/machinery/shower,
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower/security,
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"cxY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"cyg" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/machinery/cell_charger,
+/obj/item/cell/high,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"cyT" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twofp)
+"czh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Upper Atrium 3";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"czo" = (
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Patient Room B";
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_2)
+"czq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"czt" = (
+/obj/machinery/smartfridge/secure/extract,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"czA" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"czE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"czH" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"czN" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/rnd/cetus/chem)
+"czV" = (
+/obj/machinery/vending/wardrobe/robodrobe,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"cAj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/jrhallway)
+"cAk" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"cAl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"cAm" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"cAo" = (
+/obj/item/stool/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"cAt" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"cAK" = (
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"cAU" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"cBi" = (
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"cBo" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/cetus/twoap)
+"cBq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secward"
+ },
+/obj/machinery/door/blast/shutters{
+ id = "Warden_Shutters";
+ name = "Warden Shutters"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/plating,
+/area/security/Wardens_Office)
+"cBx" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"cBF" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"cBO" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"cBU" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"cBV" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"cCl" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/computer/transhuman/designer{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"cCT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"cDs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"cDx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"cDB" = (
+/obj/structure/closet/secure_closet/detective,
+/obj/item/flash,
+/obj/item/reagent_containers/spray/pepper,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/handcuffs,
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"cEd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"cEJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Research Break Room"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/cetus/observatory)
+"cEQ" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"cFs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"cFt" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"cFw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"cFG" = (
+/obj/machinery/newscaster{
+ pixel_x = -28
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"cGd" = (
+/obj/structure/closet/secure_closet/chemical,
+/obj/item/storage/box/syringes,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/item/storage/box/autoinjectors,
+/obj/item/storage/box/autoinjectors,
+/obj/item/storage/box/autoinjectors,
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"cGo" = (
+/obj/random/junk,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"cGU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"cHn" = (
+/obj/structure/table/woodentable,
+/obj/item/reagent_containers/food/drinks/bottle/holywater,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"cHI" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"cHV" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/auxsupport)
+"cHX" = (
+/obj/structure/closet{
+ name = "materials"
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/plasteel{
+ amount = 10
+ },
+/obj/item/stack/material/plasteel{
+ amount = 10
+ },
+/obj/item/stack/material/plastic{
+ max_amount = 25
+ },
+/obj/item/stack/material/plastic{
+ max_amount = 25
+ },
+/obj/item/stack/material/copper{
+ amount = 25
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"cHZ" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"cIf" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"cIp" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrlounge)
+"cIR" = (
+/obj/item/storage/box/lights/mixed,
+/obj/structure/closet,
+/obj/random/mech_toy,
+/obj/random/action_figure,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"cJf" = (
+/obj/structure/dummystairs,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"cJm" = (
+/obj/structure/table/steel,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/obj/item/pizzabox/old,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"cJq" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/pack/spaceball{
+ pixel_y = 10;
+ pixel_x = -8
+ },
+/obj/item/pack/spaceball{
+ pixel_y = 7;
+ pixel_x = -8
+ },
+/obj/item/pack/spaceball{
+ pixel_y = 4;
+ pixel_x = -8
+ },
+/obj/item/pack/spaceball{
+ pixel_y = 1;
+ pixel_x = -8
+ },
+/obj/item/pack/spaceball{
+ pixel_y = 10;
+ pixel_x = 1
+ },
+/obj/item/pack/spaceball{
+ pixel_y = 10;
+ pixel_x = 10
+ },
+/obj/item/pack/spaceball{
+ pixel_y = 7;
+ pixel_x = 1
+ },
+/obj/item/pack/spaceball{
+ pixel_y = 7;
+ pixel_x = 10
+ },
+/obj/item/pack/spaceball{
+ pixel_y = 4;
+ pixel_x = 10
+ },
+/obj/item/pack/spaceball{
+ pixel_y = 4;
+ pixel_x = 1
+ },
+/obj/item/pack/spaceball{
+ pixel_y = 1;
+ pixel_x = 10
+ },
+/obj/item/pack/spaceball{
+ pixel_y = 1;
+ pixel_x = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"cJu" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/folder/blue,
+/obj/item/pen/multi,
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "hop_office_desk";
+ name = "Desk Privacy Shutter";
+ pixel_x = 8;
+ pixel_y = 28
+ },
+/obj/machinery/button/windowtint{
+ id = "hop_office";
+ pixel_y = 29
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"cJv" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"cJE" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"cJO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"cJW" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"cKf" = (
+/obj/structure/closet/crate,
+/obj/random/forgotten_tram,
+/obj/item/clothing/shoes/syndigaloshes,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas/voice,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"cKg" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"cKu" = (
+/obj/item/defib_kit/compact/loaded{
+ pixel_y = 5
+ },
+/obj/item/defib_kit/compact/loaded,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/radio/intercom/department/medbay{
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/EMT_Bay)
+"cKP" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"cKR" = (
+/turf/simulated/mineral/cetus,
+/area/quartermaster/Recycling)
+"cKW" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61";
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ color = "#aa5f61";
+ dir = 4
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Reception)
+"cKX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"cLe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"cLh" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"cLn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"cLA" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"cLJ" = (
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/structure/curtain/open/shower,
+/obj/structure/window/basic,
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"cLR" = (
+/obj/structure/sign/deck/second,
+/turf/simulated/wall,
+/area/crew_quarters/cetus/atrium/primary)
+"cMz" = (
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"cMD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/dockhallway)
+"cMG" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ locked = 0
+ },
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"cMT" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/tape_roll{
+ pixel_y = -10;
+ pixel_x = -3
+ },
+/obj/item/tape_roll{
+ pixel_y = -10;
+ pixel_x = -3
+ },
+/obj/item/packageWrap{
+ pixel_y = -11
+ },
+/obj/item/packageWrap{
+ pixel_y = -11
+ },
+/obj/item/destTagger,
+/obj/item/destTagger,
+/obj/item/hand_labeler{
+ pixel_y = 11
+ },
+/obj/item/hand_labeler{
+ pixel_y = 11
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"cMX" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/machinery/door/window/westright{
+ name = "Medical Hardsuits";
+ req_one_access = list(5)
+ },
+/obj/item/rig/medical,
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"cNf" = (
+/obj/machinery/photocopier,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/Internal_Affairs_Office)
+"cNi" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"cNj" = (
+/turf/simulated/mineral/cetus,
+/area/engineering/engi_restroom)
+"cNy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"cNH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"cNK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Security Processing";
+ req_access = list(63);
+ req_one_access = null
+ },
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Processing_Room)
+"cOA" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Command Stairwell";
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/vending/snack{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/central_one)
+"cOE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_exterior";
+ locked = 1;
+ name = "Virology Exterior Airlock";
+ req_access = list(39)
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "SC-ALCvirology";
+ name = "Virology Access Button";
+ pixel_y = 23;
+ req_access = list(39)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Virology)
+"cOH" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"cOO" = (
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/secondary/entry/D3)
+"cOT" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"cOV" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"cPf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Hallway"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/cetus/atriumdeck2)
+"cPF" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/research_restroom_sc)
+"cPI" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "QMLoad2"
+ },
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"cQl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D1)
+"cQG" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/computer/timeclock/premade/north,
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"cQJ" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Arrivals Restroom";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"cQY" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"cRf" = (
+/obj/machinery/atmospherics/binary/passive_gate{
+ dir = 4;
+ regulate_mode = 0;
+ unlocked = 1
+ },
+/obj/structure/cable{
+ icon_state = "6-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"cRy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/random/toolbox,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"cRI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"cRK" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/psych,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/psych)
+"cRX" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Head of Personnel"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"cSd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"cSe" = (
+/obj/random/trash,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"cSy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "Atmospherics";
+ sortType = "Atmospherics"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"cSO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"cSX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder{
+ pixel_y = 7;
+ pixel_x = 7
+ },
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_y = 1;
+ pixel_x = -1
+ },
+/obj/item/reagent_containers/dropper,
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/obj/item/stack/material/phoron{
+ amount = 5;
+ pixel_x = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"cTq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"cTy" = (
+/obj/structure/sign/directions/science/exploration{
+ dir = 5;
+ pixel_y = -1
+ },
+/obj/structure/sign/directions/evac{
+ pixel_y = -7
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 5;
+ pixel_y = 11
+ },
+/obj/structure/sign/directions/cargo{
+ pixel_y = 5;
+ dir = 5
+ },
+/turf/simulated/wall,
+/area/crew_quarters/cetus/cafeteriaf2)
+"cTO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"cUb" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"cUc" = (
+/obj/machinery/door/window/brigdoor/southright{
+ name = "Containment Pen";
+ req_access = list(47)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "xenobioextra3";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobiology_Lab)
+"cUe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"cUn" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"cUo" = (
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "evashutter"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"cUr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D1)
+"cUD" = (
+/obj/structure/table/steel,
+/obj/item/towel{
+ color = "#ff0000";
+ name = "red towel";
+ pixel_y = 10
+ },
+/obj/item/towel{
+ color = "#ff0000";
+ name = "red towel";
+ pixel_y = 5
+ },
+/obj/item/towel{
+ color = "#ff0000";
+ name = "red towel";
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"cUO" = (
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"cVf" = (
+/obj/machinery/light/fluorescent,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"cVh" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D2)
+"cVi" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobotany_Lab)
+"cVn" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ id = "qpwld";
+ name = "Checkpoint Lockdown"
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/flash,
+/turf/simulated/floor/tiled/techmaint,
+/area/security/checkpoint2)
+"cVQ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/item/stamp/hop{
+ pixel_y = 9
+ },
+/obj/item/clothing/glasses/omnihud{
+ pixel_y = 10
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"cVU" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"cVY" = (
+/obj/structure/closet/secure_closet/bar{
+ locked = 0;
+ req_access = null
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/zerobar)
+"cWb" = (
+/obj/random/pottedplant,
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"cWj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"cWt" = (
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/plasticflaps/mining,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"cWx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/ladder,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"cWy" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
+ },
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D3)
+"cWD" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"cWV" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/random/contraband,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Evidence_Storage)
+"cXj" = (
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"cXp" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"cXv" = (
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_y = 3
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = -3
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ locked = 0
+ },
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"cXG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"cXV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Dock"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D3)
+"cXW" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"cYv" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobotany_Lab)
+"cYS" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"cYY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"cZd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"cZf" = (
+/obj/machinery/fitness/punching_bag/clown,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Gym 1";
+ dir = 6
+ },
+/turf/simulated/floor/boxing/gym,
+/area/crew_quarters/Gym)
+"cZi" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"cZw" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_y = -11;
+ pixel_x = -26;
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"cZJ" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"cZR" = (
+/obj/machinery/computer/security/engineering{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"cZW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"dac" = (
+/turf/simulated/wall/r_wall,
+/area/security/Restroom)
+"dap" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secward"
+ },
+/obj/machinery/door/blast/shutters{
+ id = "Warden_Shutters";
+ name = "Warden Shutters";
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/plating,
+/area/security/Wardens_Office)
+"dar" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"daA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Firing_Range)
+"daN" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/reddouble,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm4)
+"daY" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"dbv" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard,
+/obj/effect/floor_decal/industrial/stand_clear/yellow,
+/obj/structure/cable/green,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/heads/sc/chief)
+"dbx" = (
+/obj/structure/transit_tube,
+/turf/simulated/floor/bluegrid,
+/area/medical/cetus/hall)
+"dbB" = (
+/turf/simulated/wall,
+/area/medical/Restrooms)
+"dbF" = (
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"dbO" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"dbP" = (
+/obj/structure/transit_tube{
+ icon_state = "S-NW"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/jrhallway)
+"dci" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/teleporter/arrivals)
+"dck" = (
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"dct" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/Gym)
+"dcv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"dcA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/bed/chair,
+/obj/item/radio/intercom/locked/confessional{
+ dir = 8;
+ pixel_x = -25
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/chapel/main)
+"dcD" = (
+/obj/machinery/v_garbosystem,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"dcO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"dcQ" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"dcT" = (
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower/medical{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Resleeving)
+"dcW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"dcX" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"dde" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"ddj" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"ddv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/form_printer{
+ pixel_y = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"def" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"deM" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/auxsupport)
+"deR" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"deT" = (
+/obj/fiftyspawner/wood,
+/turf/simulated/floor/plating,
+/area/maintenance/zerobar)
+"deV" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/vending/snack{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed1{
+ dir = 4;
+ name = "NanoMed Wall";
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"dfn" = (
+/obj/structure/table/rack,
+/obj/random/soap{
+ pixel_y = 7
+ },
+/obj/random/soap{
+ pixel_y = 4
+ },
+/obj/random/soap,
+/turf/simulated/floor/tiled/kafel_full,
+/area/rnd/research_restroom_sc)
+"dfM" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Robotics";
+ sortType = "Robotics"
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"dfN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/micro_tunnel/random{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hangar/three)
+"dfW" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"dfZ" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"dgq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"dgQ" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"dha" = (
+/obj/random/trash_pile,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"dhh" = (
+/obj/machinery/button/windowtint{
+ id = "library_window_tint";
+ pixel_x = -1;
+ pixel_y = 29
+ },
+/obj/structure/bookcase/bookcart,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Library Office"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"dhk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/cetus/stairwellf2)
+"dhq" = (
+/obj/machinery/chem_master,
+/obj/machinery/injector_maker{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"dhQ" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/cetus/hall)
+"dic" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"dii" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"diF" = (
+/obj/item/stool/padded,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"diH" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"diW" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/engineering/Reception)
+"diZ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Research and Development";
+ req_access = list(7)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/Research_Lab)
+"dje" = (
+/obj/structure/closet/wardrobe/robotics_black,
+/obj/item/radio/headset/headset_sci{
+ pixel_x = -3
+ },
+/obj/item/radio/headset/headset_sci{
+ pixel_x = -3
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"djh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "tabletop_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/Libraryf1)
+"djj" = (
+/obj/machinery/vending/snack{
+ dir = 4;
+ pixel_x = -7
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/departure)
+"djo" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"djq" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"dju" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -8
+ },
+/obj/structure/mirror{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"djD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"djH" = (
+/obj/structure/closet/toolcloset,
+/obj/item/flashlight,
+/obj/item/pickaxe/drill,
+/obj/item/pickaxe/drill,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"djL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/medical,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/medical/Lounge)
+"djO" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"dkg" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/item/cell{
+ pixel_y = 3;
+ pixel_x = -12
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"dkk" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61";
+ dir = 9
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Wardens_Office)
+"dkp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Cell 3";
+ req_access = list(2);
+ id = "Cell 3"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"dkz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"dkC" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"dkN" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/expoutpost/station)
+"dkR" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/arrivals)
+"dlg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"dlL" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"dlN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"dme" = (
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"dmg" = (
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "w1_b_airlock";
+ pixel_y = -27;
+ req_one_access = list(13);
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"dmm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"dms" = (
+/turf/simulated/wall,
+/area/storage/tools)
+"dmF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"dmL" = (
+/obj/structure/closet/crate,
+/obj/item/circuitboard/smes,
+/obj/item/circuitboard/smes,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil/super_capacity,
+/obj/item/smes_coil/super_capacity,
+/obj/item/smes_coil/super_io,
+/obj/item/smes_coil/super_io,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"dmN" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"dnd" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/jrhallway)
+"dne" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"dnh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocave)
+"dnj" = (
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"dnB" = (
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twocargo)
+"dnW" = (
+/obj/structure/sign/directions/science/exploration,
+/turf/simulated/wall,
+/area/hangar/cetus/explofoyer)
+"doo" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/machinery/papershredder,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"doB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9;
+ pixel_y = -8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"doD" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/material/ashtray/bronze{
+ pixel_y = 7
+ },
+/obj/item/taperecorder{
+ pixel_x = -4;
+ pixel_y = -10
+ },
+/obj/item/rectape/random{
+ pixel_y = -7;
+ pixel_x = 7
+ },
+/obj/item/storage/fancy/cigarettes/dromedaryco{
+ pixel_y = 7;
+ pixel_x = 5
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"doK" = (
+/obj/machinery/libraryscanner,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"doN" = (
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"doT" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"dpc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"dpF" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"dpH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Medsci Hallway 4";
+ dir = 5;
+ pixel_x = -1
+ },
+/turf/simulated/floor/plating,
+/area/medical/medsci)
+"dpN" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"dpT" = (
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder{
+ pixel_y = 17;
+ pixel_x = -2
+ },
+/obj/item/reagent_containers/glass/bottle/mutagen{
+ pixel_y = 9;
+ pixel_x = 7
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_y = 13;
+ pixel_x = -9
+ },
+/obj/item/storage/pill_bottle/adranol{
+ pixel_y = 1;
+ pixel_x = -6
+ },
+/obj/item/stack/material/phoron{
+ amount = 5;
+ pixel_x = 3
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"dpU" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"dqa" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/rnd/production/protolathe/department/science,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Research_Lab)
+"dql" = (
+/obj/structure/bookcase/manuals/engineering,
+/obj/item/book/manual/supermatter_engine,
+/obj/item/book/manual/tesla_engine,
+/obj/item/book/manual/rust_engine,
+/obj/item/book/manual/rotary_electric_generator,
+/obj/item/book/manual/chem_refinery,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"dqF" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"dqS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/primary/seconddeck/dockhallway)
+"dqU" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/cafeteriaf2)
+"drK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"dsg" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 29;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"dsm" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"dsM" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/window/reinforced/full,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "xenobio3station";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"dsX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Gym";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/Gym)
+"dsZ" = (
+/turf/simulated/wall/r_wall,
+/area/medical/cetus/hall)
+"dth" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Disposal Sorting";
+ req_access = list(50)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"dtj" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"dtm" = (
+/obj/structure/table/reinforced,
+/obj/random/tool,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"dtA" = (
+/obj/machinery/light/small/fluorescent,
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"dtI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"dtO" = (
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/primary/seconddeck/dockhallway)
+"dtQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "kitchenwindow";
+ name = "Window Shutters Control";
+ pixel_x = -26;
+ req_access = list(28);
+ pixel_y = 27
+ },
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"dtR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/steel_ridged/turfpack/station,
+/area/crew_quarters/cetus/atrium/primary)
+"dul" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"duv" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"duL" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"duM" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"dve" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"dvf" = (
+/turf/simulated/wall,
+/area/quartermaster/Recycling)
+"dvi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"dvs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"dvv" = (
+/obj/machinery/photocopier,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/machinery/button/windowtint{
+ id = "detoffice";
+ pixel_x = -12;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/detectives_office)
+"dvI" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/structure/bed/chair/sofa/corner/brown{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/jrlounge)
+"dvN" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"dwh" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"dwl" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"dwv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"dwC" = (
+/obj/machinery/door/airlock{
+ name = "Shower"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"dwM" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"dxd" = (
+/obj/effect/floor_decal/chapel,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"dxp" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"dxD" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"dxK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"dym" = (
+/obj/structure/disposalpipe/segment,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"dyt" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"dyH" = (
+/obj/vehicle/train/engine{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"dza" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"dzj" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Xenobotany_Lab)
+"dzr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/chapel{
+ dir = 4
+ },
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"dzG" = (
+/obj/structure/sign/directions/ai_core{
+ dir = 1
+ },
+/obj/structure/sign/directions/telecomms{
+ dir = 1;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/evac{
+ dir = 8;
+ pixel_y = -8
+ },
+/turf/simulated/wall/r_wall,
+/area/tcomm/tcomfoyer)
+"dzP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"dzX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"dAi" = (
+/obj/structure/sink/countertop{
+ dir = 8;
+ pixel_y = 5;
+ pixel_x = 7
+ },
+/obj/structure/table/steel,
+/obj/structure/mirror{
+ pixel_x = 29;
+ dir = 8;
+ pixel_y = 9
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"dAr" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"dAB" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 4
+ },
+/obj/effect/mist,
+/turf/simulated/floor/water/hotspring{
+ depth = 1
+ },
+/area/crew_quarters/sauna)
+"dAC" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_four)
+"dAV" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/Genetics_Lab)
+"dBq" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"dBK" = (
+/obj/structure/table/bench/marble,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 6
+ },
+/obj/item/bikehorn/rubberducky,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sauna)
+"dBQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"dCw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Dock"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D1)
+"dCO" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Holodeck Starboard";
+ dir = 8
+ },
+/turf/simulated/floor/reinforced{
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/alphadeck)
+"dCT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"dDc" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Viewing)
+"dDe" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"dDt" = (
+/obj/machinery/door/airlock/mining{
+ name = "Quartermaster";
+ req_access = list(41)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/quartermaster/QM_Office)
+"dDu" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Hallway"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/cetus/atriumdeck2)
+"dDF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"dDK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D3)
+"dDT" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/chapel/main)
+"dEl" = (
+/obj/structure/table/woodentable,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/zerobar)
+"dEq" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"dEB" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"dEM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"dEY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"dFb" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_3)
+"dFh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"dFj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/primary/central_three)
+"dFq" = (
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering Hardsuits";
+ req_one_access = list(11,24)
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"dFC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"dFQ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/ai_monitored/storage/eva/aux)
+"dGp" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"dGv" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/quartermaster/storage)
+"dGY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"dHb" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/twojrport)
+"dHi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/dockhallway)
+"dIg" = (
+/obj/machinery/vending/fitness{
+ dir = 8;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"dIq" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/heads/sc/hor)
+"dJH" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/cetus/hall)
+"dJK" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobio4station";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"dKa" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "Engineering";
+ sortType = "Engineering"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"dKq" = (
+/obj/machinery/atmospherics/binary/passive_gate{
+ dir = 8;
+ regulate_mode = 0;
+ unlocked = 1
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"dKu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"dLk" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"dLl" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"dLp" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"dLq" = (
+/obj/structure/dispenser{
+ phorontanks = 0
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"dLw" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"dLG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"dLM" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"dLW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"dLY" = (
+/obj/structure/table/marble,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "vacantcomissary";
+ layer = 3.3;
+ name = "Comissary Shutters"
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/comissary)
+"dMu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ id_tag = "cmodoor";
+ name = "CMO's Office";
+ req_access = list(40)
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/crew_quarters/heads/sc/cmo)
+"dMz" = (
+/turf/simulated/wall,
+/area/medical/Patient_1)
+"dMC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"dMW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"dNN" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"dOc" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"dOB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24;
+ pixel_x = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"dOI" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"dOU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"dPc" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/drinks/cans/waterbottle{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/food/drinks/cans/waterbottle{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/structure/railing/overhang/grey,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"dPC" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"dPI" = (
+/obj/structure/transit_tube{
+ icon_state = "D-SE"
+ },
+/obj/structure/stairs/spawner/south,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/jrhallway)
+"dPW" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/storage/fancy/markers{
+ pixel_y = -9;
+ pixel_x = -2
+ },
+/obj/item/camera_film{
+ pixel_x = -6;
+ pixel_y = 17
+ },
+/obj/item/camera{
+ pixel_x = 3;
+ pixel_y = 15
+ },
+/obj/item/camera{
+ pixel_x = 3;
+ pixel_y = 15
+ },
+/obj/item/rectape/random{
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/item/rectape/random{
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"dQp" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Cargo Bay";
+ req_access = list(31)
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/quartermaster/Reception)
+"dQr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"dQP" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"dQW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"dRc" = (
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"dRe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"dRg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Teleporter Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/departure)
+"dRK" = (
+/obj/structure/lattice,
+/obj/machinery/shield_diffuser,
+/turf/space,
+/area/space)
+"dTa" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"dTd" = (
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"dTs" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/table/standard,
+/obj/random/toolbox,
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"dTt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"dTF" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"dTH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"dTS" = (
+/turf/simulated/wall,
+/area/medical/Resleeving)
+"dTU" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "xenobioextra3";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"dTY" = (
+/turf/simulated/wall/r_wall,
+/area/security/Wardens_Office)
+"dUe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"dUn" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"dUz" = (
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twoap)
+"dUA" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twosec)
+"dUH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"dVg" = (
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"dVn" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"dVs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"dVX" = (
+/obj/structure/toilet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"dWD" = (
+/obj/machinery/vending/hydronutrients,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"dWG" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/packageWrap,
+/obj/item/packageWrap{
+ pixel_y = 10
+ },
+/obj/item/destTagger,
+/obj/item/folder/yellow,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"dWH" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"dWL" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"dXk" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"dXn" = (
+/obj/structure/stairs/spawner/east,
+/obj/structure/railing,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"dXo" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/rnd/cetus/jrhall)
+"dXz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"dXV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"dYm" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"dYn" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/nifsofts_security,
+/turf/simulated/floor/carpet,
+/area/security/briefing_room)
+"dYq" = (
+/obj/machinery/door/airlock{
+ name = "Library Office";
+ req_access = list(37)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"dYG" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/random/trash,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"dZi" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/jrhallway)
+"dZw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 8
+ },
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Medical";
+ req_access = list(1);
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/security/Brig)
+"dZB" = (
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower/medical{
+ anchored = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Autoresleeving)
+"dZZ" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/servicecloset)
+"eab" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"ean" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"eaw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/cetus/cetus1,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"eaW" = (
+/obj/machinery/lapvend,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/storage/primary)
+"ebb" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"ebi" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass{
+ id_tag = "qpdoorin";
+ name = "Inner Checkpoint Airlock";
+ normalspeed = 0
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "qpdld";
+ name = "Checkpoint Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/checkpoint2)
+"ebj" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"ebn" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"ebo" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/arcadestorage)
+"ebt" = (
+/obj/structure/lattice,
+/obj/random/junk,
+/turf/simulated/open,
+/area/maintenance/cetus/twosec)
+"ebE" = (
+/turf/simulated/open,
+/area/hallway/cetus/stairwellf2)
+"ebF" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"ebG" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"ebI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"ecn" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/dummystairs,
+/obj/machinery/button/windowtint{
+ id = "hottubtint";
+ pixel_x = 23;
+ pixel_y = -23;
+ req_access = list(58)
+ },
+/obj/machinery/button/remote/airlock{
+ id = "hottub";
+ name = "Hot Tub Bolts";
+ pixel_y = -25;
+ pixel_x = 32;
+ dir = 1;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/sauna)
+"ecy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"ecH" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"ecI" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "xenobioextra3";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access = list(55);
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"edb" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "kitchenwindow";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/kitchen)
+"ede" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"edk" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/mask/breath,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/machinery/door/window/westright{
+ name = "Security Hardsuits";
+ req_one_access = list(1)
+ },
+/obj/item/rig/hazard,
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"edl" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"edp" = (
+/obj/random/plushielarge,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"edJ" = (
+/obj/structure/closet/emcloset,
+/obj/item/tool/crowbar/red,
+/obj/item/tool/crowbar/red,
+/obj/item/tool/crowbar/red,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"edM" = (
+/obj/structure/table/marble,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ name = "Hydroponics"
+ },
+/obj/machinery/door/window/southright{
+ dir = 4;
+ name = "Hydroponics";
+ req_one_access = list(35,28)
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"eev" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"eeA" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"eeC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"eeF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"eeY" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/sign/deathsposal{
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"efa" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D3)
+"efp" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"efy" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"efB" = (
+/obj/machinery/biogenerator,
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"efF" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"efX" = (
+/obj/item/gps/engineering,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Locker Room";
+ dir = 5
+ },
+/obj/item/pickaxe/drill,
+/obj/item/clothing/under/swimsuit/fluff/engineering,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"egc" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"egf" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"egh" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Server_Room)
+"egk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_access = list(29,47)
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Robotics_Lab)
+"egs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/sign/dock/three,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D3)
+"egy" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"egI" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"ehD" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"ehS" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentyfour_twentyfour,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"eie" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"eif" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/medical,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_3)
+"eih" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/item/radio/headset,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Brig Cell 2";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"eii" = (
+/obj/machinery/vending/cola,
+/obj/effect/floor_decal/corner/beige/diagonal,
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"eiu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"eiv" = (
+/obj/structure/table/standard,
+/obj/item/soap/nanotrasen,
+/obj/item/paper{
+ desc = "";
+ info = "Brusies sustained in the holodeck can be healed simply by sleeping.";
+ name = "Holodeck Disclaimer"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"eiH" = (
+/obj/structure/transit_tube,
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"eiJ" = (
+/obj/machinery/light/small/emergency,
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"ejd" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Firing_Range)
+"ejt" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"ejJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"ejL" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"ejN" = (
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "Skynet_launch";
+ name = "Mech Bay"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Mech_Bay)
+"ejP" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"eki" = (
+/turf/simulated/wall/r_wall,
+/area/security/Evidence_Storage)
+"ekj" = (
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"ekr" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"eku" = (
+/obj/random/junk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"ekx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access = list(47)
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Circuitry_Den)
+"ekE" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"ekF" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"ela" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/item/clothing/suit/space,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window/southleft{
+ name = "Spacesuits"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva/aux)
+"elq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/research_foyer_auxiliary)
+"elX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/zerobar)
+"ema" = (
+/obj/structure/sign/directions/engineering/atmospherics{
+ dir = 5
+ },
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/atriumdeck2)
+"emb" = (
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/secondary/entry/docking_lounge)
+"emc" = (
+/obj/structure/table/bench/wooden,
+/obj/structure/flora/pottedplant/tall{
+ pixel_y = 9
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"emo" = (
+/obj/structure/filingcabinet/medical{
+ desc = "A large cabinet with hard copy medical records.";
+ name = "Medical Records"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"emG" = (
+/obj/structure/table/standard,
+/obj/item/clipboard,
+/obj/item/stamp/qm,
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"emL" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"emX" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"eok" = (
+/obj/structure/flora/pottedplant/minitree,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"eol" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Chapel Office";
+ dir = 5
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/Chapel_Office)
+"eom" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"eoq" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/security/Reception)
+"eoG" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"eoQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/flasher{
+ id = "Cell 2";
+ pixel_y = -25
+ },
+/obj/structure/bed/padded,
+/obj/item/bedsheet/orange,
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"eoZ" = (
+/obj/structure/railing/grey,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twocave)
+"epf" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "cargo_bay";
+ pixel_y = 27;
+ req_one_access = list(31)
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"epp" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/storage/primary)
+"epq" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"epI" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/carpet,
+/area/security/briefing_room)
+"epL" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/mainsupport)
+"epQ" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/medical/cetus/atriumd2)
+"eqd" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"eqk" = (
+/obj/structure/railing,
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/cafeteriaf2)
+"eqC" = (
+/obj/machinery/space_heater,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"eqJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/medsci)
+"eqW" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"erb" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"ere" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/obj/machinery/light{
+ layer = 3
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/storage)
+"erp" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"err" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"erv" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"erE" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"erP" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/Holodeck)
+"erW" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Recreation";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/Gym)
+"esf" = (
+/turf/simulated/mineral/cetus/edge,
+/area/asteroid/cetus/d2/jr)
+"etb" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/sauna)
+"etp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"etr" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"etz" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/open,
+/area/hallway/cetus/stairwellf2)
+"etH" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"euc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1;
+ pixel_y = -8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"eud" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"eur" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"eus" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"euw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"euI" = (
+/obj/structure/stairs/spawner/south,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/lobby)
+"evb" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"evc" = (
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"eve" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/camera/network/exploration{
+ c_tag = "EXP - D2 Hangar 1";
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"evk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/obj/random/junk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"evw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"evz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"evB" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"evY" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"ewc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"ewh" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"ewp" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"ewr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"ewD" = (
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/obj/item/towel{
+ color = "#800080";
+ name = "purple towel";
+ pixel_y = 12
+ },
+/obj/item/towel{
+ color = "#800080";
+ name = "purple towel";
+ pixel_y = 12
+ },
+/obj/item/towel{
+ color = "#800080";
+ name = "purple towel";
+ pixel_y = 12
+ },
+/obj/item/towel{
+ color = "#800080";
+ name = "purple towel";
+ pixel_y = 12
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"ewM" = (
+/obj/machinery/photocopier,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/keycard_auth{
+ pixel_y = 36
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"ewW" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"exc" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"exx" = (
+/obj/machinery/light/small/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"exU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/central_three)
+"eyg" = (
+/obj/item/book/custom_library/nonfiction/freesirisailightbulbs,
+/obj/item/book/bundle/custom_library/nonfiction/riseandfallofpersianempire,
+/obj/item/book/bundle/custom_library/nonfiction/skrelliancastesystem,
+/obj/item/book/bundle/custom_library/nonfiction/viabilityofcorporategov,
+/obj/structure/bookcase{
+ name = "bookcase (Non-Fiction)"
+ },
+/obj/item/book/codex/lore/vir,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"eyh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"eyQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"eyV" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"eyX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/full{
+ pixel_y = 16
+ },
+/obj/item/reagent_containers/glass/beaker/large{
+ pixel_y = 1;
+ pixel_x = -1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"eza" = (
+/obj/structure/closet/secure_closet/paramedic,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/item/clothing/under/swimsuit/fluff/medical,
+/turf/simulated/floor/tiled/white,
+/area/medical/Locker_Room)
+"ezj" = (
+/obj/structure/flora/pottedplant/stoutbush{
+ pixel_y = 8
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"ezn" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"ezq" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"ezt" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "qpdld";
+ name = "Checkpoint Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/checkpoint2)
+"ezI" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"ezM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hangar/three)
+"ezP" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/twosec)
+"ezS" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"eAa" = (
+/obj/random/trash,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"eAr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"eAD" = (
+/obj/structure/table/standard,
+/obj/item/paper_bin,
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/machinery/button/windowtint{
+ id = "genetics";
+ pixel_y = -23;
+ pixel_x = 33;
+ name = "Genetics Outer Window"
+ },
+/obj/machinery/button/windowtint{
+ id = "geneticsviro";
+ pixel_y = -23;
+ pixel_x = 24;
+ name = "Genetics Inner Window"
+ },
+/turf/simulated/floor/bluegrid,
+/area/medical/Genetics_Lab)
+"eBb" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"eBh" = (
+/obj/structure/lattice,
+/obj/machinery/shield_diffuser,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ use_power = 1;
+ dir = 4
+ },
+/turf/space,
+/area/maintenance/cetus/twojrport)
+"eBk" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Reception)
+"eBl" = (
+/obj/structure/closet/crate,
+/obj/random/forgotten_tram,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/misc,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/comissary)
+"eBp" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"eBF" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"eBH" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"eCb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24;
+ pixel_x = 2
+ },
+/obj/random/trash,
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/comissary)
+"eCq" = (
+/obj/machinery/door/airlock/mining{
+ name = "Quartermaster's Dormitory";
+ req_access = list(41)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"eCM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Fore Substation";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"eCV" = (
+/obj/random/trash,
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"eDb" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/folder/yellow_ce,
+/obj/item/clipboard,
+/obj/item/pen/multi,
+/obj/item/stamp/ce,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"eDi" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"eDr" = (
+/turf/simulated/open,
+/area/maintenance/cetus/solars)
+"eDy" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"eDR" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"eDX" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"eEj" = (
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/obj/structure/disposalpipe/tagger{
+ name = "Space";
+ sort_tag = "Space";
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Xenobiology 1";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"eEA" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/Distillery)
+"eEG" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"eEO" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/jrdorm2)
+"eFs" = (
+/obj/structure/table/woodentable,
+/obj/machinery/recharger,
+/obj/random/toolbox,
+/obj/random/tech_supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/atrium/primary)
+"eFR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"eGG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/random/junk,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"eGX" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"eHi" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"eHl" = (
+/turf/simulated/wall,
+/area/medical/Locker_Room)
+"eHn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"eHq" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"eHA" = (
+/turf/simulated/wall/r_wall,
+/area/quartermaster/Recycling)
+"eHI" = (
+/obj/structure/bed/chair,
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"eHZ" = (
+/obj/structure/table/rack,
+/obj/item/soap/nanotrasen{
+ pixel_y = 11
+ },
+/obj/item/soap/nanotrasen{
+ pixel_y = 7
+ },
+/obj/item/soap/nanotrasen{
+ pixel_y = 3
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"eIa" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/Custodial_Office)
+"eIk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "tabletop_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"eIv" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Galleryf1)
+"eIB" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"eID" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"eJc" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"eKm" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"eKt" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 29;
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"eKw" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/light,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/carpet,
+/area/security/briefing_room)
+"eKA" = (
+/obj/machinery/power/smes/batteryrack/mapped,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"eKF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"eKV" = (
+/obj/effect/landmark/costume/waiter,
+/obj/structure/table/rack,
+/obj/random/mainttoyloot,
+/obj/random/mainttoyloot,
+/obj/item/implanter/compliance,
+/obj/random/action_figure,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"eLD" = (
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/item/camera_film,
+/obj/item/camera,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"eLI" = (
+/obj/structure/window/reinforced,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"eLP" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departure)
+"eMg" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"eMk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_3)
+"eMC" = (
+/turf/simulated/wall,
+/area/rnd/Research_Lab)
+"eMT" = (
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"eMW" = (
+/turf/simulated/wall/r_wall,
+/area/asteroid/cetus/d2/jr)
+"eMX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"eMZ" = (
+/obj/structure/lattice,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"eNe" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - CMO";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"eNy" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"eNB" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/storage)
+"eNC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"eNJ" = (
+/obj/machinery/vending/wallmed1{
+ pixel_x = 25
+ },
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_2)
+"eNM" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Pool Overlook"
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"eNQ" = (
+/obj/structure/table/reinforced,
+/obj/item/form_printer,
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"eNR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Xenoflora Isolation";
+ req_access = list(55)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"eNS" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"eNZ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"eOq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Lobby";
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/Reception)
+"eOr" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"eOw" = (
+/obj/structure/closet/emcloset,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"eOW" = (
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/stamp/cargo,
+/obj/item/storage/backpack/dufflebag,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"ePx" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/fancy,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"ePL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"ePX" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"eQj" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"eQo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/cetus/cetus2,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"eQE" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/EMT_Bay)
+"eQQ" = (
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/turf/space,
+/area/space)
+"eQY" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"eRi" = (
+/obj/structure/table/glass,
+/obj/random/medical,
+/obj/item/radio{
+ frequency = 1487;
+ icon_state = "med_walkietalkie";
+ name = "Medbay Emergency Radio Link"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"eRA" = (
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Xenoflora 1";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"eRF" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"eRK" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"eSq" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"eTa" = (
+/obj/structure/sign/warning/caution{
+ name = "\improper CAUTION: FIRING RANGE"
+ },
+/turf/simulated/wall/r_wall,
+/area/security/Firing_Range)
+"eTd" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"eTw" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"eTx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/cetus/cetus3,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"eTI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"eTV" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -20
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"eUz" = (
+/obj/random/vendordrink{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 35
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"eUB" = (
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm2)
+"eUW" = (
+/obj/machinery/computer/station_alert/all{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"eVd" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"eVi" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"eVp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/conveyor_switch/oneway{
+ id = "janitorbelt";
+ pixel_y = 9
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/obj/effect/landmark/start{
+ name = "Janitor"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/Custodial_Office)
+"eVy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "General Population Access";
+ req_access = list(2);
+ req_one_access = null;
+ icon_state = "door_locked";
+ locked = 1;
+ id_tag = "genpop1"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Brig)
+"eVA" = (
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"eVI" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"eVJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"eVS" = (
+/obj/machinery/mech_recharger,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/redgrid,
+/area/medical/EMT_Bay)
+"eWb" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"eWj" = (
+/obj/structure/table/steel,
+/obj/machinery/cell_charger,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/toolbox,
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"eWD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Art Cafe"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/Galleryf1)
+"eWL" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"eWS" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green,
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"eWW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Service Closet";
+ dir = 6
+ },
+/obj/structure/janitorialcart,
+/obj/structure/mopbucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/mop,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/servicecloset)
+"eXa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"eXn" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"eXv" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/table/standard,
+/obj/random/translator,
+/obj/random/translator,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"eXO" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"eXS" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"eXY" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/engineering/Reception)
+"eYk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"eYp" = (
+/obj/machinery/conveyor{
+ id = "disposalsorter";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"eYq" = (
+/obj/structure/transit_tube{
+ icon_state = "W-SE"
+ },
+/obj/structure/transit_tube{
+ icon_state = "W-SE"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/jrhallway)
+"eYv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"eYw" = (
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder{
+ pixel_y = 17
+ },
+/obj/item/reagent_containers/dropper,
+/obj/item/stack/material/phoron{
+ amount = 5;
+ pixel_x = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"eYG" = (
+/obj/machinery/conveyor{
+ id = "servicebelt";
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/servicecloset)
+"eYO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering Break Room";
+ req_one_access = list(10)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/cetus/atriumdeck2)
+"eYQ" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/mask/breath,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/head/helmet/space/void/atmos,
+/obj/machinery/door/window/westleft{
+ name = "Engineering Hardsuits";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"eYR" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/auxsupport)
+"eZf" = (
+/obj/structure/table/standard,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/clipboard,
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/machinery/light{
+ dir = 4;
+ name = "1E-light fixture"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"eZn" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"eZM" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"fab" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"fae" = (
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/vending/nifsoft_shop{
+ pixel_y = -10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"fap" = (
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -37
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"faw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"faA" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"faG" = (
+/obj/structure/lattice,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"fbb" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner/black/bordercorner,
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"fbY" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ id_tag = "xenostation_airlock_control";
+ name = "Xenobiology Access Console";
+ pixel_x = -26;
+ pixel_y = 26;
+ tag_exterior_door = "xenostation_airlock_exterior";
+ tag_interior_door = "xenostation_airlock_interior"
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"fcM" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/jrhallway)
+"fcN" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"fdh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"fdo" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"fds" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/maintenance/cargo,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/Recycling)
+"fdy" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/southleft{
+ name = "E.V.A.";
+ req_one_access = list(18)
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"fdF" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"fdJ" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/button/windowtint{
+ id = "pr3_window_tint";
+ pixel_x = -36;
+ pixel_y = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_3)
+"fdL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"fdV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"fdW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "1-6"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"feg" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/twoap)
+"feq" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"fey" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"feA" = (
+/turf/simulated/floor/glass/reinforced{
+ color = "purple"
+ },
+/area/asteroid/cetus/d2)
+"feC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"feN" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/servicecloset)
+"feO" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"feV" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/arcadestorage)
+"feZ" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"ffa" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/departure)
+"ffe" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"ffm" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"ffD" = (
+/obj/structure/table/bench/standard,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"fgI" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/medical/cetus/atriumd2)
+"fgS" = (
+/obj/item/stack/rods,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"fgV" = (
+/obj/structure/bookcase{
+ name = "bookcase (Adult)"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"fhj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/dockhallway)
+"fhk" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/security/Evidence_Storage)
+"fhl" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"fhm" = (
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"fhr" = (
+/obj/machinery/light{
+ dir = 4;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"fhx" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"fhy" = (
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/medical/Surgery_Viewing)
+"fhM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Utility Atrium"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/central_two)
+"fhQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"fij" = (
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/checkpoint2)
+"fim" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sauna)
+"fir" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/med_data/laptop{
+ dir = 4
+ },
+/obj/machinery/injector_maker{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"fiI" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"fjg" = (
+/obj/structure/dummystairs/greyledge{
+ dir = 4
+ },
+/obj/structure/railing/overhang/grey,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"fjJ" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Chemistry";
+ sortType = "Chemistry"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"fjK" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/yellow,
+/obj/item/folder/red,
+/obj/item/folder/blue,
+/obj/item/folder,
+/obj/item/stamp/denied{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/obj/item/stamp/internalaffairs,
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"fko" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"fkp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/medical,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"fkO" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"fkV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Joint Research";
+ req_one_access = list(47, 5)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/jrhallway)
+"flr" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"flv" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Reception)
+"flz" = (
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/stamp/cargo,
+/obj/item/storage/backpack/dufflebag,
+/obj/machinery/status_display/supply_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"flB" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"flQ" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"fnb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"fnd" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"fny" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"fnz" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"fnF" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/shield_diffuser,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "exterior access button";
+ pixel_x = 10;
+ pixel_y = 32
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/structure/fans/tiny,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D2)
+"fnZ" = (
+/obj/structure/bed/chair/office/light,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"foo" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4;
+ color = "#aa5f61"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8;
+ color = "#aa5f61"
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Reception)
+"fou" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"fox" = (
+/obj/structure/disposalpipe/tagger{
+ name = "Morgue";
+ sort_tag = "Morgue";
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"foA" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"foR" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"fpc" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"fpt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"fpI" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/chief)
+"fqe" = (
+/obj/structure/closet/toolcloset,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"fqw" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/jrdorm1)
+"fqJ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/item/storage/backpack/dufflebag/syndie,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/random/tank,
+/obj/item/pickaxe/drill,
+/obj/structure/closet/crate,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"fra" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/sauna)
+"frn" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"frO" = (
+/obj/structure/table/standard,
+/obj/item/binoculars/spyglass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"frS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"fso" = (
+/obj/machinery/door/airlock{
+ name = "Toilet"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full/white/turfpack/station,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"fss" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"fsw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "workshoptint"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/workshop)
+"fsH" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/atrium/primary)
+"fsS" = (
+/obj/structure/window/reinforced/polarized{
+ id = "robotsurgery";
+ dir = 8
+ },
+/obj/machinery/computer/operating{
+ name = "Robotics Operating Computer";
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ color = "White";
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/rnd/Robotics_Lab)
+"ftn" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/autolathe,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"fto" = (
+/obj/random/plushielarge,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/comissary)
+"ftp" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"ftH" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/light,
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -43;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"ftJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"ftM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"fuk" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"fuC" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/ladder/updown,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/substation/central)
+"fuG" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/zerobar)
+"fuN" = (
+/obj/effect/floor_decal/chapel{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"fuR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"fuS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/emblem/nt2,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"fuW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"fvs" = (
+/turf/simulated/wall,
+/area/teleporter/departure)
+"fvx" = (
+/obj/random/maintenance/misc,
+/obj/random/maintenance/morestuff,
+/obj/random/maintenance/morestuff,
+/obj/structure/closet/crate,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"fwD" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/solars)
+"fwR" = (
+/obj/machinery/processor,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"fwV" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Gym 2";
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/machinery/vending/wallmed1{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"fwZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"fxe" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/medical/Distillery)
+"fxY" = (
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"fyd" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"fye" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"fym" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/docking_lounge)
+"fyz" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"fyA" = (
+/obj/structure/transit_tube{
+ icon_state = "N-SE"
+ },
+/turf/space,
+/area/space)
+"fyD" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"fyH" = (
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/atrium/primary)
+"fyK" = (
+/obj/structure/table/standard,
+/obj/item/towel/random,
+/obj/item/towel/random{
+ pixel_y = 4
+ },
+/obj/item/towel/random{
+ pixel_y = 8
+ },
+/obj/structure/railing/overhang/grey,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"fyY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "CE Office";
+ sortType = "CE Office"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"fyZ" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 2;
+ name = "Kitchen";
+ sortType = "Kitchen"
+ },
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/checkpoint2)
+"fzr" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/machinery/keycard_auth{
+ pixel_y = 24;
+ pixel_x = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "Biohazard";
+ name = "Biohazard Shutter Control";
+ pixel_x = -8;
+ pixel_y = 35;
+ req_access = list(47)
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control-switch for the cargo doors.";
+ id = "researchdoor";
+ name = "Research door control";
+ pixel_x = 7;
+ pixel_y = 35;
+ req_access = list(30)
+ },
+/obj/machinery/button/windowtint{
+ id = "rdoffice";
+ pixel_y = 34
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"fzt" = (
+/obj/structure/sign/directions/engineering/atmospherics{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/atriumdeck2)
+"fzz" = (
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/obj/item/radio/intercom/department/security{
+ dir = 8;
+ icon_override = "secintercom";
+ pixel_x = -21
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"fzL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"fzM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"fzY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "detoffice"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/security/detectives_office)
+"fAn" = (
+/obj/structure/cable{
+ icon_state = "5-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"fAz" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = -8;
+ pixel_y = 32
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/mainsupport)
+"fAP" = (
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"fAX" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"fBf" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = -12;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/glass/beaker{
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = 6;
+ pixel_y = 10
+ },
+/obj/structure/reagent_dispensers/virusfood{
+ pixel_y = -32
+ },
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = -12
+ },
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = -6
+ },
+/obj/item/reagent_containers/glass/beaker,
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = 6
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/greengrid,
+/area/medical/Virology)
+"fBE" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"fBZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/dockhallway)
+"fCp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"fCq" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"fCO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Cafeteria"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/cafeteriaf2)
+"fDa" = (
+/obj/structure/table/standard,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/lobby)
+"fDn" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Brig)
+"fDu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"fDG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"fDR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/research{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "xenostation_airlock_exterior";
+ locked = 1;
+ name = "Xenobiology External Airlock";
+ req_access = list(55)
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1379;
+ master_tag = "xenostation_airlock_control";
+ name = "Xenobiology Access Button";
+ pixel_y = 26;
+ req_access = list(55)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/Xenobiology_Lab)
+"fDY" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/paper_bin,
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/item/pen/fountain5,
+/obj/item/pen/fountain6{
+ pixel_y = 7
+ },
+/obj/item/pen/multi{
+ pixel_y = -7
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Library 1"
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"fEf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"fEu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/jrlounge)
+"fEw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"fEK" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"fEW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/comissary)
+"fFa" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"fFf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"fFn" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/reagent_containers/glass/bucket/wood{
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/glass/bucket/wood,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sauna)
+"fFw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"fFN" = (
+/obj/machinery/optable{
+ name = "Robotics Operating Table"
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -36;
+ name = "Morgue Delivery Chute";
+ color = "green"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/oxygen_pump/anesthetic{
+ pixel_y = -29;
+ pixel_x = 19;
+ dir = 1
+ },
+/obj/item/radio/intercom/department/medbay{
+ pixel_y = -38
+ },
+/turf/simulated/floor/bluegrid,
+/area/rnd/Robotics_Lab)
+"fFO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/cetus/stairwellf2)
+"fFX" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"fFY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Aft Subgrid";
+ name_tag = "Aft Subgrid"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"fGe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/central_two)
+"fGi" = (
+/obj/machinery/door/airlock/glass{
+ name = "Kitchen";
+ req_access = list(28)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/crew_quarters/kitchen)
+"fGj" = (
+/obj/structure/bed/chair/sofa/right/teal{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/beige/diagonal,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"fGl" = (
+/obj/structure/table/standard,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/item/reagent_containers/syringe/inaprovaline,
+/obj/item/reagent_containers/syringe/inaprovaline{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/syringe/inaprovaline{
+ pixel_y = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/security_aid_station)
+"fGp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/medical/Distillery)
+"fGx" = (
+/obj/structure/cable{
+ icon_state = "6-8"
+ },
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/mainsupport)
+"fGG" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"fGS" = (
+/obj/structure/table/woodentable,
+/obj/item/book/manual/evaguide{
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/book/manual/wiki/engineering_guide{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/item/book/manual/atmospipes,
+/obj/item/book/manual/wiki/engineering_construction,
+/obj/item/book/manual/supermatter_engine{
+ pixel_x = -3
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"fHe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"fHx" = (
+/obj/machinery/computer/message_monitor{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Server_Room)
+"fHN" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"fIl" = (
+/obj/structure/bed/chair/sofa/blue,
+/turf/simulated/floor/carpet/blucarpet,
+/area/hallway/secondary/entry/docking_lounge)
+"fIr" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 8;
+ start_pressure = 4559.63
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"fIG" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/quartermaster/QM_Office)
+"fIJ" = (
+/obj/structure/railing,
+/obj/machinery/vending/fitness{
+ dir = 4;
+ pixel_x = -8
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"fIM" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"fJa" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/item/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"fJc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"fJS" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"fKa" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"fKb" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"fKg" = (
+/obj/structure/table/bench/marble,
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sauna)
+"fKi" = (
+/turf/simulated/wall,
+/area/ai_monitored/storage/eva/aux)
+"fKu" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/obj/machinery/firealarm{
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Autoresleeving)
+"fKD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"fKI" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"fKV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva/aux)
+"fLE" = (
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"fLT" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"fMt" = (
+/obj/machinery/vending/wallmed1{
+ pixel_y = 32
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/bed/chair/sofa/right/brown{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/jrlounge)
+"fMB" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hop)
+"fMC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Genpop Observation Deck";
+ req_access = list(2);
+ req_one_access = null;
+ id_tag = "genpop"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Brig)
+"fMI" = (
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"fMP" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"fMX" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"fMZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"fNd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"fND" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"fNP" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"fOa" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"fOd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/firealarm{
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"fOg" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"fOu" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"fOJ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"fOT" = (
+/obj/machinery/door/window/brigdoor/eastright{
+ name = "Containment Pen";
+ req_access = list(47)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "xenobio3station";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobiology_Lab)
+"fOX" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/auxsupport)
+"fPe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"fPf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"fPm" = (
+/obj/structure/window/reinforced,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"fPv" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"fPw" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"fPE" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/storage/primary)
+"fPJ" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"fQa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"fQe" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/blast/regular{
+ id = "Cell 4";
+ name = "Cell 4 Door"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"fQu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"fQJ" = (
+/obj/structure/bed/chair/sofa/left/orange{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"fQL" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Utility Atrium 3"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"fRf" = (
+/obj/item/modular_computer/console/preset/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"fRM" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/closet/toolcloset{
+ anchored = 1
+ },
+/obj/item/pickaxe,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"fRP" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"fRW" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm2)
+"fSn" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"fSr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"fSs" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"fSv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"fSY" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/Brig)
+"fTb" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/structure/table/rack,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 8
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 4
+ },
+/obj/item/storage/toolbox/electrical,
+/obj/item/storage/box/lights/mixed,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"fTc" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"fTf" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"fTk" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/stationshuttle)
+"fTl" = (
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"fTw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/cetus/twoap)
+"fTC" = (
+/obj/machinery/vending/medical{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"fTY" = (
+/obj/structure/sign/directions/evac{
+ dir = 8
+ },
+/turf/simulated/wall,
+/area/hallway/primary/central_two)
+"fUa" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/syringes{
+ pixel_y = 1;
+ pixel_x = -5
+ },
+/obj/item/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"fUb" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -15;
+ pixel_y = -3
+ },
+/obj/effect/floor_decal/corner/beige/diagonal,
+/obj/machinery/computer/security/telescreen/entertainment{
+ layer = 4;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"fUh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/micro_tunnel/random{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"fUm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "9-10"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Fore Subgrid";
+ name_tag = "Fore Subgrid"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"fUy" = (
+/obj/structure/kitchenspike,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Kitchen Cold Room";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"fUV" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/seconddeck/dockhallway)
+"fUY" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/kitchen)
+"fVz" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"fVE" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/boxing/gym,
+/area/crew_quarters/Gym)
+"fWs" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"fWu" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/techfloor,
+/area/storage/primary)
+"fWF" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Disposal Sorting";
+ req_access = list(50)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/sign/poster{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"fXu" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 25
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/medical/Surgery_Viewing)
+"fXy" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/docklock)
+"fXD" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"fXF" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "qpadblast";
+ name = "Qpad Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/teleporter/arrivals)
+"fYf" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"fYr" = (
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twoap)
+"fYs" = (
+/turf/simulated/wall/r_wall,
+/area/medical/Autoresleeving)
+"fYy" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall/r_wall,
+/area/engineering/Engineering_EVA)
+"fYG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"fYL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass{
+ id_tag = "qpdoorout";
+ name = "Outer Checkpoint Airlock";
+ normalspeed = 0
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "qpdld";
+ name = "Checkpoint Lockdown";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/checkpoint2)
+"fYN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Animal Pen";
+ req_one_access = list(35,28)
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/hydroponics)
+"fZi" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/quartermaster/storage)
+"fZq" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - D2 Hall 3";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"fZC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"fZE" = (
+/obj/structure/micro_tunnel/random{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twobar)
+"fZM" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"fZQ" = (
+/obj/structure/toilet,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"fZU" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"fZY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"gah" = (
+/obj/structure/bed/pillowpile,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm3)
+"gan" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/dockhallway)
+"gar" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/atrium/primary)
+"gaD" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"gaG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"gaZ" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/obj/structure/closet/crate/hydroponics/prespawned,
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"gbb" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"gbB" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/random/trash,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"gce" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"gcl" = (
+/obj/item/inflatable/door/torn,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"gcp" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"gcr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"gcu" = (
+/obj/structure/window/reinforced/full,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "xenobio5station";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"gcH" = (
+/obj/structure/curtain/black,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Autoresleeving)
+"gcK" = (
+/obj/structure/sink{
+ pixel_y = 19
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "chemwindow";
+ name = "Chemistry Shutters";
+ pixel_y = 24;
+ pixel_x = -11;
+ req_access = list(33)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"gcP" = (
+/turf/simulated/mineral/cetus,
+/area/asteroid/cetus/d2)
+"gcW" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/Gym)
+"gcY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/power/terminal,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"gdj" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/sauna)
+"gdp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/fans/tiny,
+/obj/machinery/door/airlock{
+ name = "Hot Tub";
+ id_tag = "hottub"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sauna)
+"gdx" = (
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"gdA" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/Libraryf1)
+"gdH" = (
+/obj/machinery/papershredder,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"gdJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"gdS" = (
+/turf/simulated/wall/r_wall,
+/area/medical/Distillery)
+"gdT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "escape_dock_ssouth_airlock";
+ master_tag = "escape_dock";
+ pixel_y = -27;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"gdY" = (
+/obj/machinery/vending/fitness{
+ dir = 8;
+ pixel_x = -5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/observatory)
+"gec" = (
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"gee" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"gem" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"ges" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"get" = (
+/obj/machinery/chemical_analyzer,
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"gew" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/micro_tunnel/random{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/storage/primary)
+"geR" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/twomed)
+"geW" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"gfw" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/button/windowtint{
+ id = "tabletop_window_tint";
+ pixel_x = 22;
+ pixel_y = 1;
+ range = 10
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"gfG" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"gfW" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/light/small/fluorescent,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"gfZ" = (
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "Warden_Shutters";
+ name = "Privacy Shutters";
+ pixel_x = -36;
+ req_access = list(2);
+ pixel_y = -25
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "security_lockdown";
+ name = "Brig Lockdown";
+ pixel_x = -26;
+ pixel_y = 6;
+ req_access = list(2);
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/button/windowtint{
+ id = "secward";
+ pixel_x = -25;
+ pixel_y = -25
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "Prison Gate";
+ name = "Prison Lockdown";
+ pixel_x = -26;
+ pixel_y = -4;
+ req_access = list(2);
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "tacarmory";
+ name = "Armory Tactical Equipment";
+ pixel_x = -38;
+ pixel_y = -4;
+ req_access = list(3);
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "genarmory";
+ name = "General Armory Access";
+ pixel_x = -38;
+ pixel_y = 6;
+ req_access = list(3);
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"ggf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"ggv" = (
+/obj/structure/sign/directions/evac{
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/cafeteriaf2)
+"ggz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(7, 9, 39, 55, 77);
+ name = "Chemistry and Carbon Research"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/chem)
+"ggC" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"ghb" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"ghd" = (
+/obj/structure/railing/overhang/bronze,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"ghf" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ locked = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ pixel_x = 22;
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"ghs" = (
+/turf/simulated/wall,
+/area/engineering/engi_restroom)
+"ghA" = (
+/obj/machinery/computer/teleporter{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/tcomm/entrance/cetus)
+"ghB" = (
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/structure/closet/crate,
+/obj/item/clothing/accessory/shiny/gloves,
+/obj/item/clothing/accessory/shiny/socks,
+/obj/item/clothing/head/shiny_hood,
+/obj/item/clothing/head/shiny_hood/closed,
+/obj/item/clothing/under/shiny/catsuit,
+/obj/item/clothing/under/shiny/leotard,
+/obj/item/clothing/under/shiny/leotard/poly,
+/obj/item/handcuffs/fuzzy,
+/obj/item/handcuffs/legcuffs/fuzzy,
+/obj/item/material/twohanded/riding_crop,
+/obj/item/tape_roll,
+/obj/item/stack/cable_coil/random,
+/obj/item/clothing/under/fluff/latexmaid,
+/obj/item/melee/fluff/holochain/mass,
+/obj/item/clothing/accessory/collar/shock,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/item/clothing/mask/muzzle,
+/obj/item/clothing/mask/muzzle/ballgag,
+/obj/item/clothing/mask/muzzle/ballgag/ringgag,
+/obj/item/clothing/under/skinsuit,
+/obj/item/clothing/under/skinsuit/fem,
+/obj/item/clothing/under/skinsuit/fem/gray,
+/obj/item/clothing/under/skinsuit/fem/leotard,
+/obj/item/clothing/under/skinsuit/fem/leotard/gray,
+/obj/item/clothing/under/skinsuit/gray,
+/obj/item/clothing/under/skinsuit/leotard,
+/obj/item/clothing/under/skinsuit/leotard/gray,
+/obj/item/clothing/under/rank/nullsuit/civ,
+/obj/item/clothing/accessory/shiny/gloves/poly,
+/obj/item/clothing/accessory/shiny/socks/poly,
+/obj/item/clothing/head/shiny_hood/poly,
+/obj/item/clothing/head/shiny_hood/closed/poly,
+/obj/item/clothing/under/shiny/catsuit/poly,
+/obj/item/clothing/under/shiny/leotard/poly,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/comissary)
+"ghD" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"ghS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/Gym)
+"gih" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"gix" = (
+/turf/simulated/wall,
+/area/quartermaster/Reception)
+"giL" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/suit_cooling_unit,
+/obj/item/suit_cooling_unit,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"giN" = (
+/obj/structure/bookcase{
+ name = "bookcase (Religious)"
+ },
+/obj/item/book/custom_library/religious/wayofbleedingswan,
+/obj/item/book/custom_library/religious/sungoddessofkorea,
+/obj/item/book/custom_library/religious/storyoflordganesha,
+/obj/item/book/custom_library/religious/feastofkubera,
+/obj/item/book/bundle/custom_library/religious/zoroastrianism,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"giT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"giX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"gju" = (
+/obj/machinery/computer/arcade{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/arcadestorage)
+"gjK" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/jrrestrooms)
+"gjL" = (
+/obj/machinery/light{
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"gjP" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61"
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Wardens_Office)
+"gjR" = (
+/obj/machinery/floodlight{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"gjS" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/cetus/hall)
+"gjX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"gkm" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"gkn" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"gkB" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Server_Room)
+"gkW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(7, 9, 39, 55, 77);
+ name = "Chemistry and Carbon Research"
+ },
+/obj/structure/sign/poster{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/chem)
+"glf" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/table/rack/steel,
+/obj/item/entrepreneur/dumbbell{
+ pixel_y = 7;
+ pixel_x = -4;
+ color = "#679aeb"
+ },
+/obj/item/entrepreneur/dumbbell{
+ pixel_y = 7;
+ pixel_x = 1;
+ color = "#679aeb"
+ },
+/obj/item/entrepreneur/dumbbell{
+ pixel_y = 7;
+ pixel_x = 6;
+ color = "#679aeb"
+ },
+/obj/item/entrepreneur/dumbbell{
+ pixel_x = -8;
+ color = "#abbd46"
+ },
+/obj/item/entrepreneur/dumbbell{
+ pixel_x = -4;
+ color = "#abbd46"
+ },
+/obj/item/entrepreneur/dumbbell{
+ color = "#8f3e33"
+ },
+/obj/item/entrepreneur/dumbbell{
+ pixel_x = 4;
+ color = "#8f3e33"
+ },
+/turf/simulated/floor/boxing/gym,
+/area/crew_quarters/Gym)
+"gln" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"glu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Central Ring 3";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"glB" = (
+/turf/simulated/wall,
+/area/engineering/Reception)
+"glC" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"gmh" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"gmm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/access_button{
+ dir = 1;
+ name = "interior access button";
+ pixel_y = -28
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"gmy" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"gmT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"gni" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"gnn" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"gno" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"gnr" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"gnw" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"gnD" = (
+/obj/structure/table/woodentable,
+/obj/machinery/chemical_dispenser/bar_coffee/full{
+ dir = 8;
+ pixel_x = 4
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"gnE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"gnH" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"gnI" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 2;
+ name = "Security";
+ sortType = "Security"
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/Brig)
+"gnK" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "xenobioextra2";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"gnO" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twoap)
+"gnR" = (
+/obj/structure/table/standard,
+/obj/item/stack/material/cardboard,
+/obj/item/reagent_containers/food/snacks/monkeycube/wrapped{
+ pixel_y = 4;
+ pixel_x = 6
+ },
+/obj/item/reagent_containers/food/snacks/monkeycube/wrapped{
+ pixel_x = -2;
+ pixel_y = -4
+ },
+/obj/item/reagent_containers/food/snacks/monkeycube{
+ pixel_y = 6;
+ pixel_x = -8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"goa" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"gom" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/disposalpipe/up{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"gon" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"goy" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"goZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"gpo" = (
+/obj/structure/fitness/punchingbag,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/boxing/gym,
+/area/crew_quarters/Gym)
+"gpu" = (
+/obj/structure/table/standard,
+/obj/item/clipboard,
+/obj/item/clipboard,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"gpx" = (
+/obj/machinery/power/emitter,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"gpP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ name = "Research Director Quarters";
+ req_access = list(30)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/crew_quarters/heads/sc/hor)
+"gpZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"gqy" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"gqT" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"gqU" = (
+/obj/machinery/computer/card{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"gqW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"grc" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"grL" = (
+/obj/machinery/vending/coffee,
+/obj/effect/floor_decal/corner/beige/diagonal,
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"gsf" = (
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"gsr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_2)
+"gsM" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"gsP" = (
+/obj/machinery/disposal/wall/cleaner{
+ dir = 8;
+ name = "Resleeving lost & found bin";
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"gti" = (
+/obj/structure/closet/crate,
+/obj/random/forgotten_tram,
+/obj/random/maintenance/misc,
+/obj/random/translator,
+/obj/random/translator,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/comissary)
+"gtj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ id = "virogenetics"
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "geneticsviro";
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/medical/Virology)
+"gtN" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/medical/Chemistry)
+"guf" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"guk" = (
+/obj/structure/sign/directions/science/xenoflora{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/rnd/Xenobotany_Lab)
+"guO" = (
+/obj/machinery/camera/network/telecom{
+ c_tag = "TCOMMS - Entrance";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"guT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "w1_a_airlock";
+ pixel_y = -27;
+ req_one_access = list(13);
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"gvb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"gvh" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/stationshuttle)
+"gvu" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S-Pass"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"gvw" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"gvP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"gvZ" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Library 2";
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"gwl" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"gwq" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"gwE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"gwU" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/Holodeck)
+"gxp" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"gxr" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"gxx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"gxG" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/jrlounge)
+"gyb" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/checkpoint2)
+"gyk" = (
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/stationshuttle)
+"gys" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/atrium/primary)
+"gyw" = (
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Galleryf1)
+"gyB" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/railing/overhang/grey,
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/carpet/tealcarpet,
+/area/rnd/cetus/jrhall)
+"gyP" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/Internal_Affairs_Office)
+"gyZ" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"gzp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -23;
+ pixel_x = 5
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "aux_support_main";
+ dir = 1;
+ pixel_y = -24;
+ pixel_x = -6
+ },
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/auxsupport)
+"gzs" = (
+/obj/machinery/icecream_vat,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"gzy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"gAa" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"gAj" = (
+/obj/structure/table/woodentable,
+/obj/item/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3;
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/food/condiment/small/sugar{
+ pixel_y = 13
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/zerobar)
+"gAn" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"gAu" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"gAF" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/carpet,
+/area/security/briefing_room)
+"gAW" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"gAX" = (
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"gAY" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"gBd" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"gBm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"gBy" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"gBF" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/beige{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"gBO" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"gBW" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/structure/table/bench/wooden,
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"gCb" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"gCn" = (
+/turf/simulated/mineral/cetus,
+/area/rnd/Research_Lab)
+"gCH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"gCY" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/clipboard,
+/obj/item/folder/yellow{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/item/pen/red{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/item/pen{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/hand_labeler,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"gDa" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/medical/cetus/atriumd2)
+"gDt" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/item/radio/intercom/department/security{
+ dir = 8;
+ icon_override = "secintercom";
+ pixel_x = -21
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/detectives_office)
+"gDw" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"gDx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/computer/timeclock/premade/north,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"gDF" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMDelivery"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"gDM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_access = list(7)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/workshop)
+"gEB" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"gEI" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"gFf" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explofoyer)
+"gFw" = (
+/obj/structure/sign/directions/janitor{
+ dir = 6
+ },
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/Custodial_Office)
+"gFA" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"gFH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Robotics_Lab)
+"gFW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/closet/emcloset,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"gGe" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_1)
+"gGi" = (
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/plating,
+/area/security/Firing_Range)
+"gGn" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"gGu" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"gGA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small/yellowed,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"gGB" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"gGG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"gHc" = (
+/obj/machinery/conveyor{
+ id = "QMLoad";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/storage)
+"gHp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/arcadestorage)
+"gHu" = (
+/obj/machinery/smartfridge/secure/virology,
+/turf/simulated/floor/greengrid,
+/area/medical/Virology)
+"gHB" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"gHG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secpro"
+ },
+/turf/simulated/floor/plating,
+/area/security/Processing_Room)
+"gHL" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"gHU" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"gIq" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"gIr" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/heads/sc/hor)
+"gIA" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"gIW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"gJo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"gJE" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"gJH" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/twofp)
+"gJK" = (
+/obj/structure/stairs/spawner/west,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"gKf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Server_Room)
+"gKH" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/crew_quarters/heads/sc/cmo)
+"gKJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Robotics Lab";
+ req_access = list(29,47)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/Robotics_Lab)
+"gLk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"gLt" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/servicecloset)
+"gLD" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"gMn" = (
+/obj/machinery/doorbell_chime{
+ id_tag = "sc-ChimeMed";
+ name = "Medbay doorbell chime"
+ },
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/sc/cmo)
+"gMv" = (
+/obj/structure/table/steel,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/random/medical,
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"gMw" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"gMx" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/stand_clear/yellow{
+ pixel_y = -3
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/briefing_room)
+"gMM" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm1)
+"gMO" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
+ },
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D1)
+"gNg" = (
+/obj/structure/micro_tunnel/random{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"gNs" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"gNv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "genetics"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/plating,
+/area/medical/Genetics_Lab)
+"gNy" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"gNR" = (
+/obj/structure/table/standard,
+/obj/item/camera,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"gOe" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"gOl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"gOo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"gOt" = (
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"gON" = (
+/obj/machinery/computer/security/mining,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"gPc" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/cell/high,
+/obj/item/cell/high,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/gps,
+/obj/item/gps,
+/obj/item/gps,
+/obj/item/gps,
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"gPl" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"gPx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals4{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_1)
+"gPL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"gQB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"gRi" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/central_four)
+"gRo" = (
+/obj/machinery/light/fluorescent,
+/obj/machinery/disposal/wall/cleaner{
+ dir = 1;
+ name = "Resleeving lost & found bin";
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"gRt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"gRA" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/disposalpipe/down{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "32-4"
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 4
+ },
+/obj/structure/sign/directions/security/forensics{
+ pixel_x = -32;
+ dir = 1
+ },
+/turf/simulated/open,
+/area/security/detectives_office)
+"gRG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"gSD" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"gSH" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/Brig)
+"gTd" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/auxsupport)
+"gTf" = (
+/obj/structure/closet/crate/radiation,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson/aviator,
+/obj/item/stack/material/lead{
+ amount = 30
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"gTt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"gTU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"gUe" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ id = "janitor_blast";
+ layer = 3.1;
+ name = "Janitorial Shutters";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/Custodial_Office)
+"gUg" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/security/Brig)
+"gUq" = (
+/obj/structure/bed/chair/sofa/blue{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/hallway/secondary/entry/docking_lounge)
+"gUw" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"gUD" = (
+/obj/random/drinkbottle,
+/obj/random/drinkbottle,
+/obj/random/tank,
+/obj/random/tank,
+/obj/structure/closet/crate,
+/obj/random/flashlight,
+/obj/random/flashlight,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"gUR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"gVa" = (
+/obj/random/pottedplant,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"gVb" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"gVf" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"gVo" = (
+/obj/structure/sign/directions/science/xenobiology{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/sign/directions/science/xenoflora{
+ dir = 8;
+ pixel_y = 13
+ },
+/obj/structure/sign/directions/science{
+ name = "\improper Particle Accelerator";
+ dir = 8;
+ pixel_y = 7
+ },
+/obj/structure/sign/directions/science{
+ name = "\improper Circuit Lab";
+ dir = 8;
+ pixel_y = -5
+ },
+/obj/structure/sign/directions/science/toxins{
+ dir = 8;
+ pixel_y = -11
+ },
+/turf/simulated/wall,
+/area/rnd/Server_Room)
+"gVx" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm1)
+"gVD" = (
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"gVJ" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/obj/machinery/meter,
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"gVR" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"gVV" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"gWd" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "xenobio3station";
+ name = "Containment Blast Doors";
+ pixel_y = 3;
+ req_access = list(55);
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"gWE" = (
+/obj/machinery/vending/snack,
+/obj/effect/floor_decal/corner/beige/diagonal,
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"gWL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"gXQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"gXX" = (
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"gYc" = (
+/obj/structure/bed/chair/sofa/teal{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/beige/diagonal,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Break Room";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"gYn" = (
+/obj/structure/dummystairs,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"gYs" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"gYE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"gYO" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"gYX" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"gZb" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/plating,
+/area/security/Brig)
+"gZj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"gZm" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/cafeteriaf2)
+"gZq" = (
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/item/paint_palette{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/paint_palette{
+ pixel_x = 6
+ },
+/obj/item/paint_palette{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/paint_brush{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/paint_brush{
+ pixel_x = -6;
+ pixel_y = -1
+ },
+/obj/item/paint_brush{
+ pixel_x = -4;
+ pixel_y = -5
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Art Cafe 1";
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"gZy" = (
+/obj/machinery/door/airlock/glass{
+ name = "Observatory"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/jrlounge)
+"gZZ" = (
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"hai" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"ham" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/jrlounge)
+"haW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"hbo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/atrium/primary)
+"hbw" = (
+/obj/structure/table/steel,
+/obj/item/integrated_electronics/debugger{
+ pixel_x = -5
+ },
+/obj/item/integrated_electronics/wirer{
+ pixel_x = 5
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"hbC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/Gym)
+"hbK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"hbU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/machinery/light,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"hco" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "chapel"
+ },
+/turf/simulated/floor/plating,
+/area/chapel/main)
+"hcy" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/flasher{
+ id = "Cell 1";
+ pixel_y = -25
+ },
+/obj/structure/bed/padded,
+/obj/item/bedsheet/orange,
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"hcL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"hcR" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"hdu" = (
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"hdw" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"hdW" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"hdY" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"hel" = (
+/obj/machinery/button/windowtint{
+ id = "circuitry";
+ pixel_x = -9;
+ pixel_y = 27
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/table/rack/steel,
+/obj/item/stack/material/steel{
+ amount = 50;
+ pixel_y = 7
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"heG" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"heX" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/medical/medsci)
+"hfb" = (
+/obj/structure/bookcase/manuals/xenoarchaeology,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"hfp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Research Restroom"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/research_restroom_sc)
+"hfv" = (
+/obj/machinery/transhuman/resleever,
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"hfw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"hfH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D1)
+"hfM" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"hfO" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/supply,
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/disposalpipe/up,
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"hgf" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"hgl" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"hgB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"hgE" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/engineering/cetus/atriumdeck2)
+"hgF" = (
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"hgI" = (
+/obj/machinery/button/remote/blast_door{
+ id = "Cell 3";
+ name = "Cell 3 Door";
+ pixel_x = -27;
+ req_one_access = list(2,4);
+ dir = 4
+ },
+/obj/machinery/button/flasher{
+ id = "Cell 3";
+ name = "Cell 3 Flash";
+ pixel_x = -37;
+ req_access = list(2,4)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"hgP" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/Patient_1)
+"hgZ" = (
+/obj/machinery/mecha_part_fabricator_tg,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Robotics_Lab)
+"hhp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"hhs" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"hic" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/auxsupport)
+"him" = (
+/obj/structure/table/steel,
+/obj/item/pizzabox/old,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"hiy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"hiL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secward"
+ },
+/obj/machinery/door/blast/shutters{
+ id = "Warden_Shutters";
+ name = "Warden Shutters";
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/Wardens_Office)
+"hiN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/twojrport)
+"hiQ" = (
+/obj/machinery/conveyor{
+ id = "packageSort1"
+ },
+/obj/random/junk,
+/obj/random/junk,
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"hiS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"hiV" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/light/small/fluorescent,
+/turf/simulated/floor/tiled/dark{
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/rnd/Server_Room)
+"hjg" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"hjK" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"hjX" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"hjZ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/table/standard,
+/obj/random/toy,
+/obj/random/toy,
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"hku" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/suit_cooling_unit{
+ pixel_y = 10
+ },
+/obj/item/suit_cooling_unit{
+ pixel_y = 5
+ },
+/obj/item/suit_cooling_unit,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/machinery/door/window/southleft{
+ req_one_access = list(5,18);
+ name = "E.V.A."
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/EMT_Bay)
+"hkv" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/departure)
+"hkF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Hangar Bay";
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hangar/three)
+"hkW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"hlb" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/down{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"hld" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hosoffice"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hos)
+"hlT" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/airlock_electronics,
+/obj/item/airlock_electronics,
+/obj/item/cell/high,
+/turf/simulated/floor/tiled,
+/area/engineering/Engineering_Workshop)
+"hmc" = (
+/obj/random/vendordrink{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"hmi" = (
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"hmm" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"hms" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"hmx" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/space,
+/area/space)
+"hmQ" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"hmS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"hmW" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"hmX" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"hnn" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/EMT_Bay)
+"hnw" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Hangar Bay";
+ req_one_access = null
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hangar/three)
+"hny" = (
+/obj/structure/bed/chair/sofa/corner/blue,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/hallway/secondary/entry/docking_lounge)
+"hnC" = (
+/obj/structure/disposaloutlet{
+ pixel_y = -6
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"hnD" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"hnZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/random/trash,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"hoa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"hom" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"hoA" = (
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Brig Hallway 4";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"hoD" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"hoG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_research{
+ name = "Expedition Shuttle";
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/seconddeck/dockhallway)
+"hpd" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/quartermaster/Reception)
+"hph" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"hpv" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/random/obstruction,
+/obj/random/obstruction,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"hpU" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"hqa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"hqN" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"hqO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"hqU" = (
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"hrc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"hrj" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"hrJ" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twojrport)
+"hsb" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twobar)
+"hsd" = (
+/obj/machinery/porta_turret/crescent,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/redgrid,
+/area/security/checkpoint2)
+"hsw" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"hsE" = (
+/turf/simulated/wall,
+/area/engineering/cetus/aftsubstation)
+"hsO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"hsP" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"hsS" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ dir = 1;
+ name = "interior access button";
+ pixel_y = 8;
+ pixel_x = -32
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D3)
+"htb" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"htg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"htj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Server_Room)
+"htn" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Autoresleeving)
+"htp" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"htr" = (
+/obj/structure/railing/overhang/grey,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"hty" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/open,
+/area/security/Brig)
+"htP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/corner_steel_grid/full,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"hun" = (
+/obj/structure/table/steel,
+/obj/item/pizzabox/old,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"huB" = (
+/obj/structure/table/standard,
+/obj/structure/sink/countertop{
+ pixel_y = -6;
+ dir = 1
+ },
+/obj/structure/mirror{
+ pixel_y = -26;
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"huD" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"hvb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"hvd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"hvN" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"hwf" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/observatory)
+"hwg" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/arrivals)
+"hwh" = (
+/obj/random/tank,
+/obj/random/forgotten_tram,
+/obj/random/translator,
+/obj/random/unidentified_medicine/drug_den,
+/obj/random/donkpocketbox,
+/obj/item/pickaxe,
+/obj/item/clothing/glasses/meson,
+/obj/structure/closet/crate,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"hwt" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/Evidence_Storage)
+"hwA" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"hwF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"hwG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"hwJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"hxb" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"hxu" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/twosci)
+"hxB" = (
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"hxG" = (
+/obj/machinery/fitness/heavy/lifter,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/boxing/gym,
+/area/crew_quarters/Gym)
+"hxK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"hxT" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hydroponics)
+"hye" = (
+/obj/machinery/smartfridge/drying_rack,
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"hyj" = (
+/turf/simulated/wall,
+/area/rnd/Xenobotany_Lab)
+"hyo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"hyr" = (
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"hyF" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twoap)
+"hyH" = (
+/obj/structure/bed/chair/sofa/left/lime,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"hyL" = (
+/obj/structure/transit_tube/station{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/crew_quarters/cetus/jrhallway)
+"hyM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/dockhallway)
+"hyP" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"hyY" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"hzc" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"hzp" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/black/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"hzA" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/cell/high,
+/obj/item/cell/high,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_y = 3
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = -3
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/requests_console{
+ department = "Tool Storage";
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva/aux)
+"hzE" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"hAp" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"hAE" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"hAG" = (
+/obj/structure/stairs/spawner/west,
+/obj/structure/railing,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"hAT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"hAZ" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"hBm" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"hBn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Utility Stairwell";
+ dir = 10
+ },
+/obj/machinery/vending/wallmed1{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"hBE" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Cafeteria 2";
+ dir = 8
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/cafeteriaf2)
+"hBI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"hBJ" = (
+/obj/structure/sink/puddle{
+ pixel_y = 1;
+ pixel_x = 16
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 8
+ },
+/turf/simulated/floor/grass,
+/area/rnd/Xenobotany_Lab)
+"hBM" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/random/contraband,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Evidence_Storage)
+"hCf" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"hCj" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61";
+ dir = 5
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Wardens_Office)
+"hCt" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/simulated/wall,
+/area/ai_monitored/storage/eva/aux)
+"hCM" = (
+/obj/structure/window/reinforced/full,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobio1station";
+ name = "Containment Blast Doors";
+ opacity = 0;
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"hCP" = (
+/obj/structure/table/standard,
+/obj/item/paper_bin,
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/item/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 21
+ },
+/turf/simulated/floor/bluegrid,
+/area/medical/Genetics_Lab)
+"hCQ" = (
+/obj/structure/table/woodentable,
+/obj/machinery/microwave,
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Break Room";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"hDr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D3)
+"hDy" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"hDJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"hDX" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"hEb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"hEe" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"hEm" = (
+/turf/simulated/open,
+/area/medical/cetus/atriumd2)
+"hEK" = (
+/obj/structure/table/bench/wooden,
+/obj/item/tabloid{
+ pixel_y = -1;
+ pixel_x = -9
+ },
+/obj/item/newspaper{
+ pixel_y = -6
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"hES" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"hFb" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/machinery/door/window/northright{
+ req_access = list(5);
+ name = "Medical Reception"
+ },
+/obj/item/book/manual/wiki/medical_diagnostics_manual{
+ pixel_y = -2
+ },
+/obj/item/radio{
+ anchored = 1;
+ canhear_range = 1;
+ frequency = 1487;
+ icon_state = "red_phone";
+ name = "Reception Emergency Phone"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/medsci)
+"hFi" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/machinery/computer/guestpass{
+ pixel_x = -21;
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"hFE" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/arrivals)
+"hFL" = (
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/item/towel{
+ color = "#800080";
+ name = "purple towel"
+ },
+/obj/item/towel{
+ color = "#800080";
+ name = "purple towel"
+ },
+/obj/item/towel{
+ color = "#00FFFF";
+ name = "cyan towel";
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/towel{
+ color = "#00FFFF";
+ name = "cyan towel";
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"hFP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"hFQ" = (
+/obj/structure/bed/chair,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"hGs" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 3;
+ pixel_x = 34
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -9;
+ pixel_x = 34
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/machinery/button/windowtint{
+ id = "secbriefing";
+ req_access = list(58);
+ pixel_x = 41
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Briefing";
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"hGt" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"hGC" = (
+/obj/structure/table/rack,
+/obj/random/mainttoyloot,
+/obj/random/mainttoyloot,
+/obj/random/toy,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/misc,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"hGX" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/corner_steel_grid/full{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"hHp" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Docking Hallway 2";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/seconddeck/dockhallway)
+"hHw" = (
+/obj/structure/table/steel,
+/obj/item/folder/yellow{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/item/paper_bin{
+ pixel_y = 5
+ },
+/obj/item/pen/fountain{
+ pixel_x = 7;
+ pixel_y = 4
+ },
+/obj/item/pen{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"hHH" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/random/trash,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"hHI" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -30;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"hIm" = (
+/obj/machinery/dna_scannernew,
+/turf/simulated/floor/bluegrid,
+/area/medical/Genetics_Lab)
+"hIp" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"hIu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/seed_storage/garden{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Hydroponics";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"hIP" = (
+/obj/machinery/pointdefense{
+ id_tag = "PD Main"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/hallway/secondary/entry/D3)
+"hJb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/Chapel_Office)
+"hJd" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ layer = 4;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"hJj" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twomed)
+"hJk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"hJl" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"hJp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"hJr" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"hJu" = (
+/obj/machinery/power/quantumpad{
+ map_pad_id = "cetus_med_padout";
+ map_pad_link_id = "cetus_med_padin";
+ name = "Joint Research Q-Pad"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/bluegrid,
+/area/medical/cetus/hall)
+"hJw" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"hJz" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"hJM" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/science{
+ pixel_y = 6
+ },
+/obj/item/clothing/glasses/science{
+ pixel_y = 6
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -37
+ },
+/obj/item/reagent_scanner,
+/obj/item/reagent_scanner,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"hJQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/sign/poster,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"hJU" = (
+/turf/simulated/shuttle/wall/voidcraft/blue,
+/area/shuttle/expoutpost/station)
+"hJY" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"hKv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ id = "janitor_blast";
+ layer = 3.1;
+ name = "Janitorial Shutters";
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/Custodial_Office)
+"hKB" = (
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"hKC" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/arrivals)
+"hLB" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Evidence_Storage)
+"hLZ" = (
+/obj/structure/closet/wardrobe/red,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo,
+/obj/item/clothing/accessory/badge/holo/cord,
+/obj/item/clothing/suit/storage/hazardvest/green,
+/obj/item/clothing/suit/storage/hazardvest/green,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28;
+ dir = 4
+ },
+/obj/item/clothing/suit/armor/vest/wolftaur,
+/obj/item/clothing/suit/armor/vest/wolftaur,
+/turf/simulated/floor/tiled/dark,
+/area/security/Locker_Room)
+"hMg" = (
+/obj/structure/filingcabinet/chestdrawer{
+ name = "Medical Forms"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"hMo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"hMr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"hMz" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/monkeycubes,
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"hMC" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/Galleryf1)
+"hMM" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"hMZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"hNu" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"hNv" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/powered/pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"hNA" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/gun/energy/laser/practice,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Firing_Range)
+"hNN" = (
+/obj/machinery/button/remote/blast_door{
+ id = "Cell 4";
+ name = "Cell 4 Door";
+ pixel_x = -27;
+ req_one_access = list(2,4);
+ dir = 4
+ },
+/obj/machinery/button/flasher{
+ id = "Cell 4";
+ name = "Cell 4 Flash";
+ pixel_x = -37;
+ req_access = list(2,4)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"hOa" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"hOt" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"hOw" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - D2 Hall 2";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"hOO" = (
+/obj/effect/floor_decal/corner/paleblue,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"hPq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_security/polarized{
+ id_tint = "secbriefing";
+ name = "Briefing Room"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/briefing_room)
+"hPX" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"hQc" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"hQl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/command{
+ name = "Chief Engineer";
+ req_access = list(56)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/heads/sc/chief)
+"hQz" = (
+/obj/machinery/vending/coffee,
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrlounge)
+"hQF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Research Break Room"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/cetus/observatory)
+"hQG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"hQS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/expoutpost/stationshuttle)
+"hRg" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/tcomm/entrance/cetus)
+"hRB" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"hRL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"hRM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"hSv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"hSw" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"hSA" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Firing_Range)
+"hSM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"hSN" = (
+/obj/effect/floor_decal/corner/paleblue/full,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"hST" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/librarywikicomp,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"hSW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"hTc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 1;
+ name = "Dorms";
+ sortType = "Dorms"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_one)
+"hTh" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"hTp" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/table/woodentable,
+/obj/item/flashlight/lamp/green,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"hTG" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = -30
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"hUd" = (
+/turf/simulated/wall/r_wall,
+/area/tcomm/entrance/cetus)
+"hUh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"hUE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"hUU" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/item/extinguisher,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"hUW" = (
+/obj/machinery/light/small,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"hUY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_research{
+ req_one_access = list(5,47);
+ name = "Monkey Pen"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Genetics_Lab)
+"hVd" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/rnd/research_restroom_sc)
+"hVk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"hVl" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"hVn" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"hVs" = (
+/obj/structure/table/standard,
+/obj/structure/sink/countertop{
+ pixel_y = 7
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Xenobiology 4";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"hVw" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"hVB" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod1/station)
+"hVH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "circuitry"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Circuitry_Den)
+"hVL" = (
+/obj/structure/table/standard,
+/obj/item/retail_scanner/civilian{
+ dir = 1
+ },
+/obj/item/cartridge/quartermaster,
+/obj/item/cartridge/quartermaster,
+/obj/item/cartridge/quartermaster,
+/obj/item/cartridge/quartermaster,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"hVZ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"hWb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"hWp" = (
+/obj/structure/bed/chair/sofa/right/blue{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"hWq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"hWy" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"hWF" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/medical/medsci)
+"hWG" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"hWQ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"hWR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"hWT" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/eastleft{
+ name = "Research and Development Desk";
+ req_access = list(7)
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/Research_Lab)
+"hWY" = (
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobotany_Lab)
+"hXm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"hXt" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/computer/id_restorer{
+ pixel_y = 26
+ },
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"hXv" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/transit_tube,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/medical/cetus/hall)
+"hXF" = (
+/obj/structure/closet/toolcloset{
+ anchored = 1
+ },
+/obj/item/pickaxe,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"hXQ" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"hYp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0;
+ anchored = 1
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/arcadestorage)
+"hYI" = (
+/obj/structure/table/bench/wooden,
+/obj/item/flashlight/lamp/green,
+/obj/machinery/button/remote/airlock{
+ id = "cabin1";
+ name = "Bolt Control";
+ pixel_y = -25;
+ specialfunctions = 4;
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm1)
+"hYN" = (
+/turf/simulated/wall/r_wall,
+/area/hangar/cetus/explofoyer)
+"hYP" = (
+/obj/random/pottedplant,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"hYS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"hZg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"hZu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"hZE" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Cafeteria 1";
+ dir = 5
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/cafeteriaf2)
+"hZG" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/table/bench/glass,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"hZP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"hZR" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"hZV" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Research Hallway 1";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"iaa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"iad" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"iao" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"iaq" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ id_tag = "escape_pod_1_berth_hatch";
+ name = "Escape Pod 1";
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/escapepodport)
+"ias" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"iaM" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"iaO" = (
+/obj/structure/table/woodentable,
+/obj/item/toy/plushie/therapy/blue{
+ pixel_y = 3;
+ pixel_x = -7
+ },
+/obj/item/toy/plushie/borgplushie/medihound{
+ pixel_y = 1;
+ pixel_x = 5
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"iaT" = (
+/obj/structure/ladder,
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/tech)
+"ibc" = (
+/turf/simulated/wall/r_wall,
+/area/medical/Patient_2)
+"ibl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/machinery/honey_extractor,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"ibn" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"ibu" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"ibw" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"ibR" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/closet/wardrobe/virology_white,
+/obj/item/storage/bag/chemistry,
+/obj/item/storage/bag/chemistry,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - D2 Virology Airlock";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"ibX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/dockhallway)
+"icb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"icf" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/lapvend{
+ dir = 8;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"icm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"icM" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/Server_Room)
+"icT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/teleporter/arrivals)
+"idD" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"idS" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/book/manual/standard_operating_procedure,
+/obj/machinery/alarm{
+ pixel_y = -25;
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"idU" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/wall/voidcraft/blue,
+/area/shuttle/expoutpost/station)
+"ien" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/computer/prisoner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/item/radio/intercom/department/security{
+ dir = 4;
+ icon_override = "secintercom";
+ pixel_x = 21
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Warden's Office";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"iey" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"ieH" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"ifc" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/comissary)
+"ifi" = (
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Galleryf1)
+"ifo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/atrium/primary)
+"ifr" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"ifW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Stairwell"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/cetus/stairwellf2)
+"igb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape_pod1/station)
+"igg" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrlounge)
+"igs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"igt" = (
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"igw" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 22;
+ dir = 1
+ },
+/obj/structure/table/standard,
+/obj/structure/bedsheetbin,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"igJ" = (
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"igL" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "EVA - EVA 2";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"ihk" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/comissary)
+"ihF" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"ihQ" = (
+/obj/machinery/chem_master,
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"ihU" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ dir = 1;
+ name = "interior access button";
+ pixel_y = 11;
+ pixel_x = -32
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D1)
+"iig" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atm{
+ pixel_x = -31
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"iim" = (
+/obj/machinery/floodlight{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twojrport)
+"iin" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"iit" = (
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"iix" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"ijJ" = (
+/obj/structure/transit_tube{
+ icon_state = "E-W-Pass";
+ density = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"ijL" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/obj/machinery/door/window/eastright{
+ name = "Engineering Suits";
+ req_access = list(11)
+ },
+/obj/item/clothing/suit/space/void/engineering/alt,
+/obj/item/clothing/head/helmet/space/void/engineering/alt,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"ikE" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/atrium/primary)
+"ikK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"ikX" = (
+/obj/machinery/vending/wallmed1{
+ pixel_x = 25
+ },
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_3)
+"ilp" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"ilu" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"ilB" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"ilT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"imb" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/medical/cetus/hall)
+"imf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Break Room";
+ req_one_access = null
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Lounge)
+"imy" = (
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/machinery/floodlight{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"imK" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"imT" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "rdoffice"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hor)
+"ina" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Reception)
+"ini" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/hall)
+"inm" = (
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"ins" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"inH" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"inK" = (
+/obj/machinery/atmospherics/unary/heater{
+ dir = 1;
+ icon_state = "heater"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"inL" = (
+/obj/random/trash,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"inS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"iop" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61";
+ dir = 6
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Wardens_Office)
+"iou" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"ioI" = (
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Containment Pen";
+ req_access = list(47)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobio2station";
+ name = "Containment Blast Doors";
+ opacity = 0;
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobiology_Lab)
+"ioP" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"ioW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/security_aid_station)
+"ipu" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"ipK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"ipW" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/arrivals)
+"ipY" = (
+/obj/machinery/computer/HolodeckControl{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"ipZ" = (
+/obj/structure/closet/secure_closet/hop,
+/obj/item/megaphone,
+/obj/item/pen/multi,
+/obj/item/pen/multi,
+/obj/item/pen/multi,
+/obj/item/clothing/under/swimsuit/highclass,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"iqc" = (
+/obj/structure/closet/secure_closet/detective,
+/obj/item/flash,
+/obj/item/reagent_containers/spray/pepper,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/handcuffs,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"iqe" = (
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"iqu" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/sunglasses/medhud,
+/obj/item/megaphone,
+/obj/item/radio{
+ frequency = 1487;
+ name = "Medbay Emergency Radio Link"
+ },
+/obj/item/clothing/accessory/stethoscope,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/crew_quarters/heads/sc/cmo)
+"iqx" = (
+/obj/machinery/computer/transhuman/designer{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/bluegrid,
+/area/medical/Genetics_Lab)
+"iqH" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"iqN" = (
+/turf/simulated/open,
+/area/crew_quarters/cetus/cafeteriaf2)
+"irm" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/medical/cetus/hall)
+"irK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"irM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"irQ" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"irT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"irX" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"isi" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/machinery/magnetic_module,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/Firing_Range)
+"isk" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"isz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"isP" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"itz" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"itE" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"iue" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"iuy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Library"
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0;
+ anchored = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/Libraryf1)
+"iuJ" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"iuY" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"ivc" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/storage/primary)
+"ivs" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/monkeycubes{
+ pixel_y = 5;
+ pixel_x = -7
+ },
+/obj/item/storage/box/monkeycubes{
+ pixel_y = -1;
+ pixel_x = 1
+ },
+/obj/item/storage/box/monkeycubes{
+ pixel_y = -1;
+ pixel_x = -18
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"ivy" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "evashutter"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"ivN" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/under/permit{
+ pixel_y = 11
+ },
+/obj/item/clothing/under/permit{
+ pixel_y = 8
+ },
+/obj/item/clothing/under/permit{
+ pixel_y = 5
+ },
+/obj/item/clothing/under/permit{
+ pixel_y = 2
+ },
+/obj/item/clothing/under/permit{
+ pixel_y = -1
+ },
+/obj/item/radio/intercom/department/medbay{
+ dir = 1;
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"ivT" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/atrium/primary)
+"ivW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"iwF" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"iwN" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 4;
+ name = "Chapel";
+ sortType = "Chapel"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/lino,
+/area/crew_quarters/Chapel_Office)
+"ixi" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/light/fluorescent,
+/obj/random/pottedplant,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer_auxiliary)
+"ixF" = (
+/obj/machinery/papershredder,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"ixM" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"iyf" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"iyr" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "chemtint"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id = "chemwindow";
+ name = "Chemistry Window Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/medical/Chemistry)
+"iyw" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/item/storage/fancy/vials{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/storage/fancy/vials{
+ pixel_x = 6
+ },
+/obj/item/storage/quickdraw/syringe_case/clonemed{
+ name = "clonemed syringe case";
+ pixel_x = -8;
+ pixel_y = 3
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"iyN" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"iyS" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Research";
+ sortType = "Research"
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"izg" = (
+/obj/random/vendordrink{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"izi" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"izT" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"iAc" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/lobby)
+"iAg" = (
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"iAC" = (
+/obj/structure/closet/toolcloset,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/item/clothing/glasses/meson,
+/obj/item/pickaxe,
+/obj/item/clothing/glasses/welding,
+/obj/random/flashlight,
+/turf/simulated/floor/tiled/techfloor,
+/area/storage/primary)
+"iAJ" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/psych)
+"iAO" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"iAQ" = (
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"iBj" = (
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/detectives_office)
+"iBt" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"iBx" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(25, 26, 27, 28, 37, 38, 72);
+ name = "Service Maintenance Access"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/servicecloset)
+"iBN" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"iBO" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hangar/cetus/explofoyer)
+"iBT" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"iBX" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"iCl" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"iCr" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"iCK" = (
+/obj/random/vendorfood{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"iCO" = (
+/obj/structure/curtain/black,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Autoresleeving)
+"iDb" = (
+/obj/item/modular_computer/console/preset/medical{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"iDg" = (
+/obj/structure/sign/directions/security{
+ dir = 5;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions/command{
+ pixel_y = -6;
+ dir = 6
+ },
+/obj/structure/sign/directions/elevator{
+ dir = 6
+ },
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/atrium/primary)
+"iDr" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"iDv" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"iDB" = (
+/obj/machinery/floodlight{
+ dir = 1
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/tech)
+"iEi" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twocargo)
+"iEB" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/effect/floor_decal/industrial/warning/cee,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"iEC" = (
+/obj/machinery/photocopier,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"iEL" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "w2_a_airlock";
+ landmark_tag = "w2_a";
+ name = "Dock 2-A"
+ },
+/turf/space,
+/area/space)
+"iEN" = (
+/obj/machinery/appliance/cooker/oven,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"iEU" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/dogbed{
+ name = "\improper Runtime's bed"
+ },
+/mob/living/simple_mob/animal/passive/cat/runtime,
+/obj/machinery/firealarm{
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"iEX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"iFa" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/security/Firing_Range)
+"iFg" = (
+/obj/structure/bed/chair/sofa/left/orange{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"iFw" = (
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/blast/regular{
+ desc = "By gods, release the hounds!";
+ id = "xenobiostationext2";
+ name = "Containment Release"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"iFD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ name = "Autoresleeving Bay"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Resleeving)
+"iFT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"iGd" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/item/form_printer{
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"iGy" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "rdoffice"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hor)
+"iGI" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/medical/cetus/sleevelobby)
+"iGM" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"iGP" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"iHn" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/brigdoor/southright{
+ req_access = list(3);
+ name = "Warden's Desk"
+ },
+/obj/machinery/door/blast/shutters{
+ id = "Warden_Shutters";
+ name = "Warden Shutters";
+ dir = 2
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "secward";
+ dir = 8
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "secward";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Wardens_Office)
+"iHx" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/quartermaster/Reception)
+"iHI" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"iId" = (
+/obj/effect/shuttle_landmark/southern_cross/arrivals_station,
+/turf/space,
+/area/shuttle/arrival/station)
+"iIl" = (
+/obj/structure/dummystairs/greyledge{
+ dir = 8
+ },
+/obj/structure/railing/overhang/grey,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"iIo" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departure)
+"iIy" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/engineering/Engineering_Workshop)
+"iIK" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"iIQ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"iIR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/blast/regular{
+ id = "Cell 2";
+ name = "Cell 2 Door"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"iIY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"iJg" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"iJj" = (
+/obj/random/trash,
+/obj/random/junk,
+/turf/simulated/floor/tiled,
+/area/maintenance/zerobar)
+"iJp" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"iJy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"iJC" = (
+/turf/simulated/wall,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"iJK" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"iJM" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/disposalpipe/tagger/partial{
+ dir = 8;
+ name = "Sorting Office";
+ sort_tag = "Disposal Sorting"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/obj/machinery/conveyor_switch/oneway{
+ id = "packageSort1";
+ name = "sorting";
+ pixel_y = 12
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/quartermaster/Recycling)
+"iJO" = (
+/obj/machinery/light/small/emergency,
+/obj/random/plushie,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"iKi" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"iKk" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Engineer's Desk";
+ departmentType = 6;
+ name = "Chief Engineer RC";
+ pixel_x = 32
+ },
+/obj/structure/dummystairs/hazardledge{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/heads/sc/chief)
+"iKl" = (
+/obj/machinery/vending/wardrobe/detdrobe,
+/obj/item/storage/photo_album{
+ pixel_y = 10
+ },
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"iKr" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/soap/nanotrasen,
+/obj/item/holosign_creator/medical,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/item/clothing/under/swimsuit/fluff/medical,
+/turf/simulated/floor/tiled/white,
+/area/medical/Locker_Room)
+"iLj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"iLI" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"iMG" = (
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"iMO" = (
+/turf/simulated/mineral/cetus,
+/area/asteroid/cetus/d2/jr)
+"iMP" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"iNl" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"iNu" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"iNx" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"iNX" = (
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"iOc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"iOe" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"iOt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"iOG" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/purcarpet,
+/area/rnd/cetus/jrhall)
+"iOJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Engineering Access"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/Reception)
+"iOV" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"iPC" = (
+/obj/structure/railing/overhang/hazard,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"iPF" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D3)
+"iPJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0;
+ anchored = 1
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/Holodeck)
+"iQa" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/stock_parts/capacitor{
+ pixel_y = -10;
+ pixel_x = 3
+ },
+/obj/item/stock_parts/capacitor{
+ pixel_y = -10;
+ pixel_x = 3
+ },
+/obj/item/stock_parts/manipulator{
+ pixel_y = -10;
+ pixel_x = -5
+ },
+/obj/item/stock_parts/manipulator{
+ pixel_y = -10;
+ pixel_x = -5
+ },
+/obj/item/clothing/glasses/welding{
+ pixel_y = 3
+ },
+/obj/item/clothing/glasses/welding{
+ pixel_y = 3
+ },
+/obj/item/stock_parts/console_screen{
+ pixel_y = 12
+ },
+/obj/item/stock_parts/console_screen{
+ pixel_y = 12
+ },
+/obj/item/stock_parts/console_screen{
+ pixel_y = 12
+ },
+/obj/item/stock_parts/console_screen{
+ pixel_y = 12
+ },
+/obj/item/stock_parts/matter_bin{
+ pixel_y = 13
+ },
+/obj/item/stock_parts/matter_bin{
+ pixel_y = 13
+ },
+/obj/item/stock_parts/matter_bin{
+ pixel_y = 13
+ },
+/obj/item/stock_parts/matter_bin{
+ pixel_y = 13
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"iQg" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/dummystairs,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"iQi" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"iQv" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Library 3";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"iQw" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"iQC" = (
+/turf/simulated/wall,
+/area/rnd/Circuitry_Den)
+"iQM" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/cafeteriaf2)
+"iQO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"iRd" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"iRm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"iRA" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor{
+ id = "QMLoad"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/storage)
+"iRG" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"iRN" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ id = "servicebelt";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/servicecloset)
+"iRV" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/item/storage/secure/safe{
+ pixel_x = 5;
+ pixel_y = 28
+ },
+/mob/living/simple_mob/animal/passive/snake/python/noodle,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/random/pottedplant,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"iSc" = (
+/obj/machinery/button/remote/blast_door{
+ id = "Skynet_launch";
+ name = "Mech Bay Door Control";
+ pixel_y = -26;
+ req_access = list(29)
+ },
+/obj/machinery/recharge_station,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Robotics Charging";
+ dir = 5
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light/small/fluorescent,
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Mech_Bay)
+"iSm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_research{
+ name = "Mech Bay";
+ req_access = list(29)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Mech_Bay)
+"iSt" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"iSJ" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"iSM" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/plating,
+/area/security/Brig)
+"iTc" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/storage/tools)
+"iTe" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/vending/snack,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrlounge)
+"iTj" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"iTq" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"iTB" = (
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"iTU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/structure/table/bench/wooden,
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"iUF" = (
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/newspaper{
+ pixel_y = 3
+ },
+/obj/random/medical,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"iUG" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/vending/wallmed1{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"iUM" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"iUT" = (
+/obj/structure/table/steel,
+/obj/item/integrated_electronics/wirer{
+ pixel_x = 5
+ },
+/obj/item/integrated_electronics/debugger{
+ pixel_x = -5
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"iUW" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"iVf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Communications Infrastructure";
+ req_one_access = list(16,17)
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"iVp" = (
+/obj/structure/closet/radiation,
+/obj/item/clothing/suit/radiation/teshari,
+/obj/item/clothing/head/radiation/teshari,
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"iVC" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/light/floortube{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"iVK" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/atrium/primary)
+"iWu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"iWy" = (
+/turf/simulated/wall,
+/area/medical/psych)
+"iWP" = (
+/obj/machinery/atmospherics/valve,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"iXa" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"iXr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"iXL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"iXX" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"iYc" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61";
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ color = "#aa5f61";
+ dir = 8
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Reception)
+"iYo" = (
+/obj/machinery/flasher{
+ pixel_x = -27;
+ id = "viroflash"
+ },
+/mob/living/carbon/human/monkey,
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"iYy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"iYF" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hop)
+"iYH" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"iYY" = (
+/obj/item/retail_scanner/civilian{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/hand_labeler,
+/obj/item/paper_bin{
+ pixel_y = 5
+ },
+/obj/item/folder/yellow{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/item/pen{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/stamp{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stamp/cargo,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"iYZ" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"iZo" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"iZw" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Firing Range";
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/security/Firing_Range)
+"iZE" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/boxing,
+/area/crew_quarters/Gym)
+"iZF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -29;
+ dir = 4;
+ pixel_y = -7
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Locker_Room)
+"iZG" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva/aux)
+"iZJ" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"iZR" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"jau" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"jay" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"jaz" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"jaG" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"jaH" = (
+/obj/machinery/computer/robotics{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/heads/sc/hor)
+"jaJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Arrivals Lounge"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/docking_lounge)
+"jaS" = (
+/obj/structure/transit_tube,
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/thirddeck/roof)
+"jaY" = (
+/obj/structure/bed/chair/sofa/right/lime,
+/obj/random/forgotten_tram,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"jbi" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Brig)
+"jbO" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Wardens_Office)
+"jbR" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/mob/living/carbon/human/monkey,
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"jbW" = (
+/obj/random/miniature,
+/obj/random/miniature,
+/obj/random/miniature,
+/obj/random/mech_toy,
+/obj/random/mech_toy,
+/obj/random/action_figure,
+/obj/random/action_figure,
+/obj/random/fromList/sexy_costumes,
+/obj/random/fromList/sexy_costumes,
+/obj/structure/closet/crate,
+/obj/machinery/button/remote/blast_door{
+ id = "vacantcomissary";
+ name = "Comissary Shutters Control";
+ pixel_x = -26;
+ req_access = list(28);
+ pixel_y = 25
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/comissary)
+"jbX" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"jbZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 20;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"jce" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/random/pizzabox,
+/obj/structure/table/steel,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"jcg" = (
+/obj/structure/table/rack/shelf,
+/obj/random/fromList/TFGuns,
+/obj/random/fromList/TFGuns,
+/obj/random/material,
+/obj/random/technology_scanner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"jcJ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_four)
+"jcK" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"jcV" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"jdh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"jdi" = (
+/obj/machinery/vending/cigarette{
+ dir = 8;
+ pixel_x = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/departure)
+"jdm" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"jds" = (
+/obj/structure/closet/emcloset/legacy,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"jdO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 29;
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"jdP" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/engineering/engi_restroom)
+"jdS" = (
+/obj/structure/table/reinforced,
+/obj/random/tool,
+/obj/random/tool,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"jdW" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"jeq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"jer" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/machinery/light/floortube,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sauna)
+"jeB" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/arrivals)
+"jeF" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/zerobar)
+"jfm" = (
+/obj/structure/table/bench/wooden,
+/obj/item/starcaster_news,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"jfv" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"jgh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Utility Hallway 1"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"jik" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"jil" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"jio" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"jiB" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Xenobiology_Lab)
+"jiR" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"jju" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"jjw" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/medical/Surgery_Viewing)
+"jjH" = (
+/obj/structure/table/standard,
+/obj/structure/disposalpipe/segment,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"jjK" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departure)
+"jjL" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"jjN" = (
+/obj/structure/bed/chair/office/light,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"jkx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"jkB" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/Brig)
+"jkY" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/disposal,
+/obj/structure/sign/deathsposal{
+ pixel_x = -30
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"jla" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/item/radio/headset,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Brig Cell 3";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"jlb" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/teleporter/departure)
+"jlh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"jlq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"jlz" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/storage/bag/trash,
+/obj/item/storage/bag/trash{
+ pixel_y = 4;
+ pixel_x = -3
+ },
+/obj/item/storage/bag/trash{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/clothing/gloves/brown,
+/obj/item/reagent_containers/spray/sterilizine{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"jlD" = (
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/mainsupport)
+"jmb" = (
+/obj/structure/table/steel,
+/obj/random/drinkbottle,
+/obj/random/donkpocketbox,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"jmk" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"jni" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/medical/Lounge)
+"jnl" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"jnC" = (
+/obj/structure/table/standard,
+/obj/machinery/chemical_dispenser/full{
+ pixel_y = 8
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"jnR" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"jom" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/rnd/Xenobiology_Lab)
+"joo" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"jos" = (
+/obj/structure/closet,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/random/maintenance/engineering,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/monotile,
+/area/hangar/three)
+"joI" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"joO" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"joV" = (
+/obj/structure/table/bench/steel,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/cetus/hall)
+"jpg" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/atrium/primary)
+"jph" = (
+/obj/structure/transit_tube{
+ icon_state = "D-NE"
+ },
+/obj/structure/railing/overhang/grey,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"jpA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"jpJ" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"jpR" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/security/briefing_room)
+"jpY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"jqd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"jqe" = (
+/obj/machinery/power/thermoregulator,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"jqk" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"jqD" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"jqL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/tech)
+"jqR" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm2)
+"jqV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"jrj" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"jrE" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"jrG" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"jrH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"jrL" = (
+/obj/structure/reagent_dispensers/acid{
+ pixel_x = -30
+ },
+/obj/machinery/rnd/production/protolathe/department/engineering,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"jsa" = (
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"jse" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"jsf" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Port Substation";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"jsr" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/twoap)
+"jst" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"jsz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"jsG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D1)
+"jsI" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"jsP" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/storage/primary)
+"jtd" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"jth" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"jti" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"jtx" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Utility Hallway 4";
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"jua" = (
+/obj/machinery/portable_atmospherics/powered/reagent_distillery/industrial,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/Distillery)
+"jut" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/atrium/primary)
+"juv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/medical/Autoresleeving)
+"juz" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"juB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"juE" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"juQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"juR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Dock"
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/seconddeck/dockhallway)
+"jvg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"jvr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/obj/random/junk,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"jvB" = (
+/obj/machinery/button/windowtint{
+ id = "chapel";
+ pixel_x = -25
+ },
+/obj/machinery/light_switch{
+ pixel_x = -25;
+ pixel_y = 7
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Chapel";
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"jvH" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/twomed)
+"jvS" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/docklock)
+"jvU" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/heads/sc/hos)
+"jvZ" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"jwc" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"jwu" = (
+/obj/machinery/button/remote/airlock{
+ pixel_y = 27;
+ name = "General Population Access";
+ id = "genpop1";
+ pixel_x = 4;
+ specialfunctions = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "genobserve1";
+ name = "Privacy Shutters";
+ pixel_x = -6;
+ req_access = list(2);
+ pixel_y = 27
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "Prison Gate";
+ name = "Prison Lockdown";
+ req_access = list(2);
+ pixel_y = 38;
+ pixel_x = -1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"jwx" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"jwB" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"jwW" = (
+/obj/random/drinkbottle,
+/obj/structure/closet/crate,
+/obj/random/cash,
+/obj/random/donkpocketbox,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/comissary)
+"jwX" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"jwZ" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/towel/random{
+ pixel_y = 9
+ },
+/obj/item/towel/random{
+ pixel_y = 7
+ },
+/obj/item/towel/random{
+ pixel_y = 5
+ },
+/obj/item/towel/random{
+ pixel_y = 2
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/sauna)
+"jxh" = (
+/obj/random/pottedplant,
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/item/radio/intercom/department/security{
+ dir = 4;
+ icon_override = "secintercom";
+ pixel_x = 21
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30;
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"jxO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/comissary)
+"jyr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/arcadestorage)
+"jyt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"jyE" = (
+/obj/structure/table/woodentable,
+/obj/item/reagent_containers/food/condiment/small/saltshaker,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/zerobar)
+"jyF" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"jyJ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/observatory)
+"jyQ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/neonsign/cafe{
+ id = "cafeopen"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/Galleryf1)
+"jzd" = (
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/secondary/entry/D2)
+"jzw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"jzB" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/open,
+/area/medical/Genetics_Lab)
+"jzS" = (
+/turf/simulated/open,
+/area/asteroid/cetus/d2)
+"jzU" = (
+/obj/structure/table/steel,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 5
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/multitool,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"jAy" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"jAA" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"jAR" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/escapepodport)
+"jAW" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"jBc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"jBp" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"jBy" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"jBS" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/heads/sc/hor)
+"jBV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ id_tag = "cabin3";
+ name = "Cabin 3"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/jrdorm3)
+"jCv" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"jCS" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/backup_kit,
+/obj/item/mmi,
+/obj/item/mmi,
+/obj/item/mmi,
+/obj/item/storage/box/bodybags{
+ pixel_x = -1;
+ pixel_y = -2
+ },
+/obj/item/stack/nanopaste,
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Robotics_Lab)
+"jDj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"jDz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/mainsupport)
+"jDL" = (
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"jDZ" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"jEd" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/cafeteriaf2)
+"jEf" = (
+/obj/structure/stairs/spawner/north,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"jEq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"jEr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/closet,
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"jEK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Teleporter";
+ req_access = list(17);
+ req_one_access = list(17)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcomm/entrance/cetus)
+"jFb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"jFy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"jFA" = (
+/turf/simulated/wall/r_wall,
+/area/medical/Restrooms)
+"jFT" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "d2_near_se";
+ name = "Near Cetus - Deck 2 South East"
+ },
+/turf/space,
+/area/space)
+"jFY" = (
+/turf/simulated/wall/r_wall,
+/area/medical/Patient_3)
+"jGl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"jGo" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(1,19)
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/checkpoint2)
+"jGu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "cmooffice"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/cmo)
+"jGz" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/arrivals)
+"jGB" = (
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Joint Research Substation";
+ req_one_access = list(11, 24, 47, 5)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"jGF" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"jGI" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"jGP" = (
+/obj/structure/stairs/spawner/west,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"jGY" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/cafeteriaf2)
+"jHl" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Joint Research Dorm"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/jrhallway)
+"jHE" = (
+/obj/structure/table/steel,
+/obj/item/storage/toolbox/mechanical,
+/obj/random/medical,
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"jHV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"jId" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"jIm" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"jIx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics";
+ req_access = newlist();
+ req_one_access = list(35,28)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hydroponics)
+"jIX" = (
+/obj/structure/closet/emcloset/legacy,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"jIY" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/item/storage/box/disks,
+/obj/item/hand_labeler,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/destTagger{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/packageWrap,
+/obj/item/pen,
+/obj/item/pen,
+/obj/structure/reagent_dispensers/acid{
+ pixel_x = 30
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"jJd" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"jJr" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -26
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/ammo_magazine/m9mmt/practice,
+/obj/item/ammo_magazine/m9mmt/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/m45/practice,
+/obj/item/ammo_magazine/s45/practice,
+/obj/item/ammo_magazine/s45/practice,
+/obj/item/ammo_magazine/s45/practice,
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Firing_Range)
+"jJA" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"jJP" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"jKe" = (
+/obj/effect/floor_decal/industrial/stand_clear/yellow{
+ pixel_y = -3
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Research_Lab)
+"jKG" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = -26
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the CMO's office.";
+ id = "cmodoor";
+ name = "CMO Office Door Control";
+ pixel_y = -10;
+ dir = 4;
+ pixel_x = -25
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Control";
+ req_access = list(5);
+ dir = 4;
+ pixel_y = 9;
+ pixel_x = -25
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"jKO" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"jKU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Mech_Bay)
+"jKZ" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"jLe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"jLi" = (
+/obj/structure/table/rack,
+/obj/item/suit_cooling_unit,
+/obj/item/suit_cooling_unit,
+/obj/item/suit_cooling_unit,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"jLj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "General Population Access";
+ req_access = list(2);
+ req_one_access = null;
+ icon_state = "door_locked";
+ locked = 1;
+ id_tag = "genpop2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Brig)
+"jLl" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"jLG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"jLQ" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/syringes{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/beakers,
+/obj/item/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/monkeycubes{
+ pixel_x = -7;
+ pixel_y = -3
+ },
+/obj/item/storage/box/masks,
+/obj/item/holosign_creator/medical,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Virology)
+"jLR" = (
+/obj/machinery/mecha_part_fabricator_tg/prosthetics,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Robotics_Lab)
+"jMc" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"jMG" = (
+/obj/structure/table/bench/glass,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Viewing)
+"jMZ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "CMO's Office"
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"jNg" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"jNo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "hangar_3";
+ name = "shuttle bay controller";
+ pixel_y = -26;
+ tag_door = "hangar_3_door";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hangar/three)
+"jNs" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"jND" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"jNE" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "w3_c_airlock";
+ landmark_tag = "w3_c";
+ name = "Dock 3-C"
+ },
+/turf/space,
+/area/space)
+"jNI" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/docklock)
+"jNL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"jNO" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/structure/cable/green,
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"jOe" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey,
+/turf/simulated/floor/boxing,
+/area/crew_quarters/Gym)
+"jOm" = (
+/obj/structure/fitness/weightlifter,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/boxing/gym,
+/area/crew_quarters/Gym)
+"jOv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/cetus/twoap)
+"jOF" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/security/detectives_office)
+"jOM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_one)
+"jOV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D3)
+"jOY" = (
+/obj/structure/disposalpipe/tagger{
+ name = "Space";
+ sort_tag = "Space";
+ dir = 8
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/lime/bordercorner,
+/obj/effect/floor_decal/corner/lime/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/Virology)
+"jQd" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"jQG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "BrigFoyer";
+ layer = 2.8;
+ name = "Security Reception";
+ req_access = list(63);
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Reception)
+"jQQ" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"jRq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "6-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"jRQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"jRZ" = (
+/obj/item/hand_labeler,
+/obj/structure/table/glass,
+/obj/item/packageWrap,
+/obj/item/destTagger{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Locker_Room)
+"jSa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"jSc" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/light/floortube{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"jSk" = (
+/obj/machinery/doorbell_chime{
+ id_tag = "sc-ChimeMed";
+ name = "Medbay doorbell chime"
+ },
+/turf/simulated/wall,
+/area/medical/reception)
+"jSr" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200;
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"jSs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/brigdoor/eastright{
+ req_access = list(2);
+ name = "Cell 1";
+ id = "Cell 1"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"jSy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"jSY" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/EMT_Bay)
+"jTf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"jTg" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"jTh" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/security/Firing_Range)
+"jTm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 1;
+ name = "Bridge Conference room";
+ sortType = "Bridge Conference room"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/security/Reception)
+"jTo" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/hall)
+"jTV" = (
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/maintenance/cetus/mainsupport)
+"jTY" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"jUr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"jUx" = (
+/obj/structure/closet/secure_closet/hydroponics{
+ req_access = list(47)
+ },
+/obj/item/material/knife/machete/hatchet,
+/obj/item/material/minihoe,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Xenoflora 2";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"jUN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"jVz" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61";
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ color = "#aa5f61";
+ dir = 1
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Reception)
+"jVJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/machinery/door/window/eastleft{
+ req_access = list(30);
+ name = "Server Room"
+ },
+/obj/machinery/door/window/westleft{
+ req_access = list(30);
+ name = "Server Room"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Server_Room)
+"jVT" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"jWe" = (
+/turf/simulated/floor/tiled/kafel_full,
+/area/rnd/research_restroom_sc)
+"jWg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Docking Hallway 1";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"jWi" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/ladder/updown,
+/turf/simulated/open,
+/area/maintenance/cetus/twostar)
+"jWp" = (
+/obj/structure/fitness/weightlifter,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/boxing/gym,
+/area/crew_quarters/Gym)
+"jWy" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/hall)
+"jWP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"jWR" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/Gym)
+"jWW" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"jXa" = (
+/turf/simulated/mineral/cetus,
+/area/security/detectives_office)
+"jXk" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"jXl" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/arrivals)
+"jXs" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/Autoresleeving)
+"jXx" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"jXJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"jXO" = (
+/obj/structure/railing/overhang/hazard,
+/obj/structure/railing/overhang/hazard,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"jXQ" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/random/medical,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/random/medical,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/EMT_Bay)
+"jXY" = (
+/obj/structure/flora/pottedplant/smallcactus{
+ pixel_y = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/jrlounge)
+"jYc" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"jYj" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/machinery/porta_turret/crescent,
+/turf/simulated/floor/redgrid,
+/area/teleporter/arrivals)
+"jYt" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/dispenser,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"jYz" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering Workshop";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/Engineering_Workshop)
+"jYJ" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"jYN" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Detective"
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"jZe" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"jZp" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"jZO" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"kaf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"kai" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/random/pottedplant,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/detectives_office)
+"kaz" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"kbb" = (
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/structure/reagent_dispensers/acid{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/rnd/production/circuit_imprinter,
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Robotics_Lab)
+"kbD" = (
+/obj/structure/table/glass,
+/obj/item/fulton_core,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -25
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"kbH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Emergency EVA"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva/aux)
+"kcf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"kcF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS- Starboard";
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/smes/buildable/max_charge{
+ RCon_tag = "Substation - Port"
+ },
+/obj/item/smes_coil,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"kcG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - D2 Hall 5";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"kcL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Joint Research Substation";
+ req_one_access = list(11, 24, 47, 5)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"kdc" = (
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"kde" = (
+/obj/machinery/light{
+ layer = 3
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"kdj" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/twobar)
+"kds" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"kdt" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/sc/chief)
+"keh" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva/aux)
+"kem" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Medsci Hallway 3";
+ dir = 5;
+ pixel_x = -1
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"ker" = (
+/turf/simulated/wall,
+/area/crew_quarters/Chapel_Office)
+"keI" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"kfh" = (
+/obj/machinery/chem_master,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"kfi" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"kfj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"kfG" = (
+/obj/effect/floor_decal/chapel,
+/obj/structure/table/bench/wooden,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"kfM" = (
+/obj/structure/waterfall/top{
+ pixel_y = 32
+ },
+/obj/structure/waterfall,
+/turf/simulated/open,
+/area/maintenance/cetus/twomed)
+"kgg" = (
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - D2 Hall 4";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"kgj" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/sleevelobby)
+"kgk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Showers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"kgl" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer_auxiliary)
+"kgn" = (
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"khi" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"khx" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Brig)
+"khy" = (
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"khB" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"khL" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"kii" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"kil" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "w3_a_airlock";
+ landmark_tag = "w3_a";
+ name = "Dock 3-A"
+ },
+/turf/space,
+/area/space)
+"kiB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "psyco_tint"
+ },
+/turf/simulated/floor/plating,
+/area/medical/psych)
+"kiK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"kiR" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"kiT" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"kjd" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/sign/warning/evac,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"kjk" = (
+/obj/structure/table/woodentable,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"kjr" = (
+/obj/structure/lattice,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"kjt" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"kjD" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"kjM" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 2;
+ name = "Bar";
+ sortType = "Bar"
+ },
+/obj/machinery/flasher{
+ id = "gatewaycheckpointflash";
+ name = "Gateway Checkpoint Mounted flash"
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"kjZ" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"kkz" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"kll" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"kly" = (
+/obj/structure/ladder/up,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"klL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"klM" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"klR" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/medical/cetus/atriumd2)
+"kml" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/Engineering_EVA)
+"kmo" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"kmv" = (
+/obj/structure/transit_tube{
+ icon_state = "N-SE"
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"kmF" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/machinery/lapvend{
+ dir = 1;
+ pixel_x = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = -25;
+ dir = 1
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Overlook Lounge";
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/atrium/primary)
+"kmJ" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"kmK" = (
+/turf/simulated/floor/reinforced{
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/alphadeck)
+"kmX" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"knp" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"knF" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/jrhallway)
+"knL" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/mask/breath,
+/obj/machinery/door/window/northleft{
+ name = "E.V.A.";
+ req_one_access = list(18, 10)
+ },
+/obj/item/rig/vox/engineering,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"knT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"knY" = (
+/obj/structure/loot_pile/surface/medicine_cabinet{
+ pixel_y = 32
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"koz" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"koG" = (
+/obj/machinery/shower,
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"koH" = (
+/obj/structure/closet/crate/hydroponics{
+ desc = "All you need to start your own honey farm.";
+ name = "beekeeping crate"
+ },
+/obj/item/beehive_assembly,
+/obj/item/bee_smoker,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/bee_pack,
+/obj/item/tool/crowbar,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"koN" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "32-2"
+ },
+/obj/structure/disposalpipe/down{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/engineering/cetus/jointsubstation)
+"koZ" = (
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable/max_charge{
+ RCon_tag = "Substation - Aft"
+ },
+/obj/item/smes_coil,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"kpc" = (
+/obj/structure/disposalpipe/junction,
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"kpV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"kqm" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"kqv" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"kqC" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"kqN" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"kqV" = (
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm4)
+"krr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"krs" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"kru" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/servicecloset)
+"krz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"krT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"krW" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ pixel_x = 22;
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"ksd" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/twoap)
+"ksN" = (
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twomed)
+"ksT" = (
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"kta" = (
+/obj/machinery/autolathe,
+/obj/machinery/status_display/supply_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"ktb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"kth" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/cetus/observatory)
+"ktr" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"kts" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"kty" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Internal_Affairs_Office)
+"ktF" = (
+/obj/structure/sign/directions/medical/cloning{
+ dir = 8
+ },
+/turf/simulated/wall,
+/area/medical/Genetics_Lab)
+"ktO" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"ktV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Stairwell";
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"kue" = (
+/obj/structure/transit_tube{
+ icon_state = "E-W-Pass";
+ density = 0
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"kuK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"kuW" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/teleporter/departure)
+"kuY" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/firealarm{
+ pixel_y = 36
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer_auxiliary)
+"kvx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"kvz" = (
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"kvP" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"kvQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"kwq" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/observatory)
+"kwx" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"kwJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"kwO" = (
+/obj/structure/closet/crate/hydroponics{
+ desc = "All you need to start your own honey farm.";
+ name = "beekeeping crate"
+ },
+/obj/item/beehive_assembly,
+/obj/item/bee_smoker,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/bee_pack,
+/obj/item/tool/crowbar,
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"kwU" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"kxe" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"kxh" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/substation/central)
+"kxm" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/paper_bin,
+/obj/item/folder/white_cmo,
+/obj/item/stamp/cmo,
+/obj/item/pen/multi,
+/turf/simulated/floor/carpet/sblucarpet,
+/area/crew_quarters/heads/sc/cmo)
+"kxL" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"kxN" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Dock 1 Hallway 2";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"kxR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"kym" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - JR Public Hallway 3"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"kyp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"kyI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"kyT" = (
+/obj/structure/transit_tube,
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"kzL" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "5-6"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Virology)
+"kzM" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/full,
+/obj/item/radio/intercom/department/medbay{
+ dir = 4;
+ pixel_x = 21
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Chemistry";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"kzS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"kzU" = (
+/obj/structure/bed/chair/sofa/corner/teal{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/beige/diagonal,
+/obj/effect/landmark/start{
+ name = "Paramedic"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"kzX" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/bed/chair,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/heads/sc/cmo)
+"kzZ" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"kAj" = (
+/obj/item/geiger/wall/north,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"kAn" = (
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/twojrport)
+"kAK" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/detectives_office)
+"kAQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"kBq" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"kBu" = (
+/obj/machinery/clonepod/transhuman/full,
+/turf/simulated/floor/bluegrid,
+/area/medical/Genetics_Lab)
+"kBP" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"kBS" = (
+/obj/machinery/space_heater,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"kBY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"kCo" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"kCp" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"kCs" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"kCz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"kCJ" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"kCM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/computer/timeclock/premade/east,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"kCX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Chief Engineer's Office"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"kDo" = (
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/item/storage/fancy/crayons{
+ pixel_x = 11;
+ pixel_y = -3
+ },
+/obj/item/storage/fancy/markers{
+ pixel_x = 11;
+ pixel_y = 6
+ },
+/obj/item/pen/multi{
+ pixel_x = -6;
+ pixel_y = -5
+ },
+/obj/item/pen/multi{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/pen/multi{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"kDJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"kDK" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"kDL" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/button/windowtint{
+ id = "pr1_window_tint";
+ pixel_x = -36;
+ pixel_y = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_1)
+"kDT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/papershredder,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/detectives_office)
+"kDZ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/cetus/cetus5,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"kEI" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"kER" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"kES" = (
+/turf/simulated/floor/glass/reinforced,
+/area/medical/Surgery_Viewing)
+"kEV" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"kFl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ frequency = 1381;
+ id_tag = "escape_dock_north_airlock";
+ master_tag = "escape_dock";
+ pixel_y = 27;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"kFx" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Central Ring 6";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"kFz" = (
+/obj/machinery/vending/wallmed1{
+ dir = 4;
+ name = "NanoMed Wall";
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"kGd" = (
+/obj/item/material/ashtray/glass,
+/obj/structure/closet/acloset{
+ name = "leisure closet"
+ },
+/obj/item/deck/tarot,
+/obj/item/deck/tarot,
+/obj/item/deck/cards,
+/obj/item/deck/cards,
+/obj/item/deck/holder,
+/obj/item/deck/holder,
+/obj/item/storage/pill_bottle/dice,
+/obj/item/storage/pill_bottle/dice_nerd,
+/obj/item/storage/dicecup/loaded,
+/obj/item/toy/eight_ball,
+/obj/item/toy/tennis,
+/obj/item/toy/tennis,
+/obj/item/toy/eight_ball/conch,
+/obj/item/deck/cah/black,
+/obj/item/deck/cah,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Rec Storage";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/arcadestorage)
+"kGh" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/plating,
+/area/security/Brig)
+"kGk" = (
+/obj/machinery/conveyor{
+ id = "packageSort1"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"kGl" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/up{
+ dir = 8
+ },
+/obj/structure/ladder/up,
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"kGz" = (
+/obj/machinery/botany/editor,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"kHa" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"kHB" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"kHM" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"kHS" = (
+/obj/structure/table/bench/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"kIi" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/storage)
+"kIn" = (
+/obj/machinery/light{
+ layer = 3
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/Distillery)
+"kIw" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"kJo" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twobar)
+"kJr" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/gps/security,
+/obj/item/radio,
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/item/handcuffs/legcuffs,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Locker Room";
+ dir = 9
+ },
+/obj/item/clothing/under/swimsuit/fluff/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/Locker_Room)
+"kJY" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 10
+ },
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/rnd/Xenobotany_Lab)
+"kKk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"kLx" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"kLy" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - D1 Genetics Lab";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"kLz" = (
+/obj/structure/closet/firecloset/full/double,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"kLL" = (
+/obj/machinery/button/remote/blast_door{
+ id = "Cell 2";
+ name = "Cell 2 Door";
+ pixel_x = 27;
+ req_one_access = list(2,4);
+ dir = 8
+ },
+/obj/machinery/button/flasher{
+ id = "Cell 2";
+ name = "Cell 2 Flash";
+ pixel_x = 37;
+ req_access = list(2,4)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"kMz" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Engineering_Workshop)
+"kMA" = (
+/obj/structure/sign/directions/science{
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/rnd/Server_Room)
+"kMM" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"kMW" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"kMY" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"kNx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"kNK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"kNP" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"kOn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"kOr" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"kOt" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"kOv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"kOD" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 2;
+ name = "Hydroponics";
+ sortType = "Hydroponics"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"kPg" = (
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/maintenance/cetus/mainsupport)
+"kPl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"kPm" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"kPu" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/boxing,
+/area/crew_quarters/Gym)
+"kPF" = (
+/obj/structure/closet/secure_closet/engineering_chief,
+/obj/random_multi/single_item/hand_tele,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"kPN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"kPV" = (
+/obj/random_multi/single_item/hand_tele,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/item/paper/monitorkey,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -38
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/light,
+/obj/structure/closet/secure_closet/research_director,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"kPZ" = (
+/turf/simulated/wall/r_wall,
+/area/medical/Patient_1)
+"kQk" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"kQS" = (
+/obj/machinery/computer/supplycomp/control,
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"kRh" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"kRt" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "researchoffice"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Research_Lab)
+"kRv" = (
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/obj/structure/closet/toolcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"kRB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"kRH" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"kRS" = (
+/obj/structure/table/hardwoodtable,
+/obj/effect/floor_decal/carpet,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/cash_register/civilian{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"kSm" = (
+/obj/structure/sign/directions/science{
+ dir = 9;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions/medical{
+ pixel_y = 12;
+ dir = 9
+ },
+/obj/structure/sign/directions/security{
+ dir = 1
+ },
+/obj/structure/sign/directions/command{
+ pixel_y = -6;
+ dir = 1
+ },
+/turf/simulated/wall,
+/area/maintenance/cetus/comissary)
+"kSE" = (
+/obj/machinery/computer/arcade{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"kSY" = (
+/obj/machinery/door/airlock/freezer{
+ name = "Kitchen cold room";
+ req_access = list(28)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/crew_quarters/kitchen)
+"kTa" = (
+/obj/vehicle/train/trolley{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"kTh" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30;
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"kTq" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"kTO" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"kTR" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/Distillery)
+"kTW" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/item/melee/baton/slime/loaded,
+/obj/item/melee/baton/slime/loaded{
+ pixel_y = -4
+ },
+/obj/item/gun/energy/taser/xeno{
+ pixel_y = 4
+ },
+/obj/item/gun/energy/taser/xeno,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -29;
+ dir = 4;
+ pixel_y = -7
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -29;
+ dir = 4;
+ pixel_y = 7
+ },
+/obj/structure/table/rack,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"kUz" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"kUD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ name = "Circuitry Lab";
+ req_access = list(47);
+ req_one_access = list(47)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Circuitry_Den)
+"kUV" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"kVc" = (
+/obj/machinery/disposal/wall/cleaner{
+ dir = 4;
+ name = "Resleeving lost & found bin";
+ pixel_x = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"kVf" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Arrivals Lockers";
+ dir = 9
+ },
+/obj/structure/table/standard,
+/obj/machinery/recharger{
+ pixel_x = -5
+ },
+/obj/machinery/recharger{
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/docklock)
+"kVu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/light/floortube,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"kVv" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"kVS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"kWg" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/Firing_Range)
+"kWG" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/storage)
+"kWO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"kWS" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"kWT" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction/yjunction,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"kWW" = (
+/obj/random/maintenance/misc,
+/obj/structure/closet/crate,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"kXb" = (
+/obj/machinery/transhuman/autoresleever,
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"kXd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"kXm" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Virology)
+"kXX" = (
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/expoutpost/station)
+"kYe" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/boxing,
+/area/crew_quarters/Gym)
+"kYi" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"kYl" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"kYt" = (
+/obj/machinery/papershredder,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"kYJ" = (
+/obj/machinery/rnd/server,
+/turf/simulated/floor/bluegrid{
+ name = "Server Base";
+ nitrogen = 500;
+ oxygen = 0;
+ temperature = 80
+ },
+/area/rnd/Server_Room)
+"kYQ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"kZC" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"kZH" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/toner{
+ pixel_y = 6
+ },
+/obj/item/toner,
+/obj/machinery/vending/wallmed1{
+ dir = 4;
+ name = "NanoMed Wall";
+ pixel_x = -24
+ },
+/obj/item/retail_scanner/civilian,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"kZU" = (
+/obj/structure/closet/emcloset,
+/obj/item/tool/crowbar/red,
+/obj/item/tool/crowbar/red,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"kZV" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"lak" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"laC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"lbb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/sec,
+/turf/simulated/floor/plating,
+/area/security/Firing_Range)
+"lbj" = (
+/obj/machinery/pointdefense{
+ id_tag = "PD Main"
+ },
+/obj/structure/cable,
+/turf/simulated/floor/airless,
+/area/space)
+"lbk" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Medbay";
+ sortType = "Medbay"
+ },
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"lbs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"lbF" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"lbG" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/med_data/laptop,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"lbR" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ layer = 4;
+ pixel_y = -32
+ },
+/obj/machinery/vitals_monitor,
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_3)
+"lcb" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"lcg" = (
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/tool/crowbar,
+/obj/item/tool/crowbar,
+/obj/item/radio{
+ frequency = 1487;
+ icon_state = "med_walkietalkie";
+ name = "Medbay Emergency Radio Link"
+ },
+/obj/item/radio{
+ frequency = 1487;
+ icon_state = "med_walkietalkie";
+ name = "Medbay Emergency Radio Link"
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/multitool,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/EMT_Bay)
+"lcx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"lcG" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/docklock)
+"lcX" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"ldp" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/shield_diffuser,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "exterior access button";
+ pixel_x = 10;
+ pixel_y = 32
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D3)
+"ldw" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"ldB" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"ldU" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/hangar/three)
+"lee" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/open,
+/area/medical/Genetics_Lab)
+"leC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/atrium/primary)
+"leF" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"leG" = (
+/obj/effect/landmark/start{
+ name = "Engineer"
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"leJ" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/cetus/hall)
+"leL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/medical/reception)
+"leQ" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/head/welding,
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"lfF" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/engineering/cetus/atriumdeck2)
+"lfU" = (
+/obj/structure/closet/crate,
+/obj/random/forgotten_tram,
+/obj/random/contraband,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/misc,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/comissary)
+"lfY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Utility Stairwell"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/central_two)
+"lgq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"lgM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"lhd" = (
+/obj/structure/closet/malf/suits,
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"lhe" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/atrium/primary)
+"lhk" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/asteroid/cetus/d2/jr)
+"lhC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"lhD" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"lhF" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"lhI" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"lid" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/multitool,
+/obj/item/clothing/head/welding,
+/obj/item/storage/belt/utility/full,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"lig" = (
+/obj/structure/closet/crate,
+/obj/item/storage/box/lights/mixed,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"lij" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"lio" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"liG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"liR" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/twocave)
+"liV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "exp_sling_station_door";
+ locked = 1;
+ name = "Carrier Sling Access";
+ req_access = list();
+ req_one_access = list(5,43,67)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/expoutpost/stationshuttle)
+"ljb" = (
+/obj/structure/closet/wardrobe/chemistry_white,
+/obj/item/storage/box/pillbottles,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"ljf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"ljh" = (
+/obj/machinery/vending/tool,
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"ljC" = (
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/twojrport)
+"ljF" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer_auxiliary)
+"ljM" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"ljQ" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"lka" = (
+/obj/structure/table/woodentable,
+/obj/item/frame,
+/turf/simulated/floor/tiled,
+/area/maintenance/zerobar)
+"lkg" = (
+/obj/structure/sign/directions/security/forensics{
+ pixel_y = 7
+ },
+/turf/simulated/wall/r_wall,
+/area/security/detectives_office)
+"lkM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering Monitoring Room";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/Reception)
+"lkU" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"lld" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"llh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"lln" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/twofp)
+"llq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"llu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"llz" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"llO" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/table/rack,
+/obj/machinery/door/window/southleft{
+ name = "Chief Engineer Suit Storage"
+ },
+/obj/item/rig/ce/equipped,
+/obj/item/clothing/mask/breath,
+/obj/item/rcd,
+/obj/item/cell/high,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo,
+/obj/item/rcd_ammo,
+/obj/item/cell/high,
+/obj/item/gps/engineering/ce,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/chief)
+"lmf" = (
+/obj/machinery/vending/fitness{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"lmj" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Recreation"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/Gym)
+"lmN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/folder/red_hos,
+/obj/item/pen/multi,
+/obj/item/stamp/hos,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/heads/sc/hos)
+"lnd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"lnq" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"lnx" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/conveyor_switch/oneway{
+ id = "servicebelt"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/servicecloset)
+"lnC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"lnQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"lnR" = (
+/mob/living/simple_mob/animal/sif/fluffy,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"loc" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"loe" = (
+/obj/structure/waterfall/top,
+/obj/effect/mist,
+/obj/structure/fans/tiny,
+/turf/simulated/open,
+/area/crew_quarters/sauna)
+"loi" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"loL" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"loV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"loY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/dockhallway)
+"lpA" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1;
+ pixel_y = -8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"lpM" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D3)
+"lpS" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/smartfridge/sheets/persistent_lossy{
+ desc = "An industrial sized storage unit for materials. Following company policy with B-Shift, this particular storage unit will retain a percentage of its material in-between crew transfers.";
+ name = "\improper Persistent Industrial Sheet Storage";
+ req_one_access = list(31,48)
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/floor/plating,
+/area/quartermaster/QM_Office)
+"lqa" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/security{
+ name = "Warden's Office";
+ req_access = list(3);
+ req_one_access = null
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Wardens_Office)
+"lqv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "lawyer_tint"
+ },
+/turf/simulated/floor/plating,
+/area/security/Internal_Affairs_Office)
+"lqz" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/structure/fireaxecabinet{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/EMT_Bay)
+"lqX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"lrv" = (
+/obj/machinery/papershredder,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"lrD" = (
+/obj/machinery/vending/loadout/clothing,
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"lrJ" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"lrW" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"lrX" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer_auxiliary)
+"lsg" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"lsw" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"lsT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"ltd" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"lth" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/cetus/observatory)
+"ltE" = (
+/obj/machinery/vending/fitness{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"ltN" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_2)
+"ltO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS- Central";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/smes/buildable/max_charge{
+ RCon_tag = "Substation - Central"
+ },
+/obj/item/smes_coil,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"luj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"luk" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"luz" = (
+/obj/structure/table/steel,
+/obj/random/trash,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"luB" = (
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explofoyer)
+"luC" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"luU" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"luZ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"lvh" = (
+/turf/simulated/wall,
+/area/hallway/primary/central_two)
+"lvt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departure)
+"lvH" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/psych)
+"lvP" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_one)
+"lvX" = (
+/obj/effect/mist,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ color = "White"
+ },
+/turf/simulated/floor/water/hotspring{
+ depth = 1
+ },
+/area/crew_quarters/sauna)
+"lwv" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/soap/nanotrasen,
+/obj/item/holosign_creator/medical,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/item/clothing/under/swimsuit/fluff/medical,
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/white,
+/area/medical/Locker_Room)
+"lww" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"lwB" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"lwI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"lxh" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"lxo" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"lxA" = (
+/turf/simulated/wall/r_wall,
+/area/medical/Locker_Room)
+"lxC" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ name = "exterior access button";
+ pixel_x = -28;
+ pixel_y = -8
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"lxS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"lyk" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"lyx" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"lyD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"lzk" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"lzr" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/tank/jetpack/carbondioxide,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/obj/machinery/door/window/westleft{
+ name = "Jetpack Storage";
+ req_one_access = list(11,24)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"lzz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/random/trash,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"lzA" = (
+/turf/simulated/wall,
+/area/hallway/secondary/entry/docking_lounge)
+"lzB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"lzG" = (
+/obj/structure/lattice,
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/hangar/three)
+"lzN" = (
+/obj/structure/table/steel,
+/obj/random/pizzabox,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"lzP" = (
+/obj/random/pottedplant,
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 20;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"lAa" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"lAH" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "genobserve2";
+ name = "Genpop Shutters"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/security/Brig)
+"lAS" = (
+/obj/machinery/botany/extractor,
+/obj/effect/floor_decal/spline/plain/cee,
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"lBw" = (
+/obj/structure/table/marble,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/cash_register/civilian,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "vacantcomissary";
+ layer = 3.3;
+ name = "Comissary Shutters"
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/comissary)
+"lBF" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/machinery/computer/guestpass{
+ pixel_y = -23;
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"lBG" = (
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Cargo Shuttle Airlock";
+ req_access = list(31);
+ req_one_access = list(48)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/techmaint,
+/area/quartermaster/storage)
+"lBK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"lBW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Cargo Foyer";
+ name = "security camera"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"lCE" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/open,
+/area/security/Brig)
+"lCJ" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"lCP" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"lCU" = (
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"lCY" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/Gym)
+"lDe" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"lDg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"lDo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Hallway"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/cetus/atriumdeck2)
+"lDx" = (
+/obj/machinery/pointdefense{
+ id_tag = "PD Main"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"lDL" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"lDZ" = (
+/obj/structure/transit_tube{
+ icon_state = "N-SE"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"lEb" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Medsci Hallway 1";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_four)
+"lEi" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/docklock)
+"lEs" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"lEt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"lEI" = (
+/obj/machinery/conveyor{
+ dir = 9;
+ id = "QMLoad2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/storage)
+"lET" = (
+/obj/structure/table/bench/glass,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Viewing)
+"lFh" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"lFy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/monotile,
+/area/hangar/three)
+"lFO" = (
+/obj/structure/bed/chair,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"lFT" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/corner/beige/diagonal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"lGd" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"lGo" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"lGr" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"lGs" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/mainsupport)
+"lGH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"lHd" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ id = "QMLoad"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/storage)
+"lHO" = (
+/obj/machinery/door/airlock{
+ name = "Locker Room"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/docklock)
+"lHV" = (
+/obj/machinery/disposal/wall/cleaner{
+ dir = 4;
+ name = "Resleeving lost & found bin";
+ pixel_x = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"lIo" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/arcadestorage)
+"lIu" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/cable/green,
+/obj/structure/disposalpipe/up{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/obj/structure/ladder/up,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"lIv" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "researchoffice";
+ dir = 4
+ },
+/obj/machinery/door/window/northright{
+ name = "Research and Development Desk";
+ req_access = list(7)
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/Research_Lab)
+"lIM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/table/standard,
+/obj/random/soap,
+/obj/random/soap,
+/obj/random/soap,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"lIX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"lJh" = (
+/obj/structure/bed/chair/sofa/corp/left,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"lJN" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/sign/deathsposal{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"lJQ" = (
+/turf/simulated/wall/r_wall,
+/area/ai_monitored/storage/eva)
+"lKe" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hangar/three)
+"lKv" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/machinery/meter,
+/obj/structure/disposalpipe/up,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_y = 27;
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"lKw" = (
+/obj/structure/stairs/spawner/west,
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"lKC" = (
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 8
+ },
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "32-2"
+ },
+/obj/structure/disposalpipe/down,
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/engineering/cetus/portsubstation)
+"lKU" = (
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/arrivals)
+"lLC" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"lLE" = (
+/obj/structure/table/steel,
+/obj/random/donkpocketbox,
+/obj/random/donkpocketbox,
+/obj/random/donkpocketbox,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"lLU" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"lLX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"lMa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"lMb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"lMc" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Head of Security"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 1
+ },
+/obj/item/radio/intercom/department/security{
+ dir = 4;
+ icon_override = "secintercom";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"lMd" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva/aux)
+"lMx" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"lMG" = (
+/obj/machinery/atmospherics/binary/passive_gate{
+ dir = 1;
+ regulate_mode = 0;
+ unlocked = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"lMH" = (
+/obj/machinery/suit_cycler/security,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"lMP" = (
+/obj/machinery/disposal,
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_x = 25
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"lMQ" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"lNb" = (
+/turf/simulated/wall/r_wall,
+/area/security/checkpoint2)
+"lNk" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"lNI" = (
+/turf/simulated/mineral/cetus,
+/area/engineering/cetus/aftsubstation)
+"lNK" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"lOb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering Locker Room";
+ req_one_access = list(10)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/Locker_Room)
+"lOd" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/Libraryf1)
+"lOL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"lOV" = (
+/obj/structure/closet/secure_closet/hos,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"lPl" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"lPo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"lPE" = (
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - JR D2 Stairwell"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/jrhall)
+"lPO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"lPW" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twostar)
+"lQy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "holodeck_tint"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/Holodeck)
+"lQO" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/under/permit{
+ pixel_y = 11
+ },
+/obj/item/clothing/under/permit{
+ pixel_y = 8
+ },
+/obj/item/clothing/under/permit{
+ pixel_y = 5
+ },
+/obj/item/clothing/under/permit{
+ pixel_y = 2
+ },
+/obj/item/clothing/under/permit{
+ pixel_y = -1
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"lQX" = (
+/obj/machinery/smartfridge/secure/medbay{
+ req_one_access = list(33,66)
+ },
+/turf/simulated/wall/r_wall,
+/area/medical/Chemistry)
+"lRg" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"lRl" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/boxing,
+/area/crew_quarters/Gym)
+"lRo" = (
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"lRr" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/structure/closet/firecloset,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"lRF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass{
+ name = "Teleporter Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/departure)
+"lRJ" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"lSc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"lSe" = (
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"lSh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Cell 4";
+ req_access = list(2);
+ id = "Cell 3"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"lSi" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"lSm" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/machinery/vending/loadout/uniform,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Resleever";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"lSp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"lSs" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/cafeteriaf2)
+"lSt" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/window/reinforced/full,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "xenobioextra2";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"lTw" = (
+/obj/structure/sign/directions/eva{
+ dir = 4
+ },
+/obj/structure/sign/directions/teleporter{
+ dir = 1;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/evac{
+ pixel_y = -8
+ },
+/turf/simulated/wall/r_wall,
+/area/tcomm/entrance/cetus)
+"lTH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ id = "janitorbelt";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/Custodial_Office)
+"lTR" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"lUa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"lUq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/rnd,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"lUy" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"lUB" = (
+/obj/structure/table/standard,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"lUE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"lUW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"lVk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"lVt" = (
+/obj/item/defib_kit/compact/combat/loaded,
+/obj/item/denecrotizer/medical,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/item/gps/medical/cmo,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/obj/structure/closet/secure_closet/chief_medical_officer,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"lVX" = (
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"lWg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock{
+ name = "Engineering Washroom"
+ },
+/turf/simulated/floor/tiled/white,
+/area/engineering/engi_restroom)
+"lWz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "holodeck_tint"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/arcadestorage)
+"lWD" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer_auxiliary)
+"lWG" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"lWL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Utility Atrium"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/central_two)
+"lWV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"lWY" = (
+/obj/structure/closet/crate/hydroponics/prespawned,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"lWZ" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'";
+ name = "Chemistry Cleaner"
+ },
+/obj/item/hand_labeler,
+/obj/item/packageWrap,
+/obj/item/destTagger,
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"lXf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"lXh" = (
+/obj/effect/floor_decal/corner/beige/diagonal,
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"lXk" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hangar/cetus/explofoyer)
+"lXq" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"lXx" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"lXB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"lXG" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"lXK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Commercial Area"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/cetus/lobby)
+"lXS" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "qpdld";
+ name = "Door Lockdown";
+ pixel_x = -10;
+ req_one_access = list(1,19);
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "qpwld";
+ name = "Desk Lockdown";
+ pixel_x = -10;
+ pixel_y = -24;
+ req_one_access = list(1,19);
+ dir = 1
+ },
+/obj/machinery/button/flasher{
+ id = "gatewaycheckpointflash";
+ name = "Gateway Checkpoint flasher button";
+ req_one_access = list(1,19);
+ pixel_y = -43
+ },
+/obj/machinery/button/remote/airlock{
+ id = "qpdoorin";
+ name = "Inner Door Bolts";
+ pixel_x = 8;
+ pixel_y = -24;
+ req_one_access = list(1,19);
+ specialfunctions = 4;
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ id = "qpdoorout";
+ name = "Outer Door Bolts";
+ pixel_x = -1;
+ pixel_y = -24;
+ req_one_access = list(1,19);
+ specialfunctions = 4;
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ id = "qpdoorin";
+ name = "Inner Door Control";
+ pixel_x = 8;
+ pixel_y = -35;
+ req_one_access = list(1,19);
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ id = "qpdoorout";
+ name = "Outer Door Control";
+ pixel_x = -1;
+ pixel_y = -35;
+ req_one_access = list(1,19);
+ dir = 1
+ },
+/obj/machinery/computer/skills{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/turretid/stun{
+ check_access = 0;
+ check_anomalies = 0;
+ check_down = 0;
+ check_records = 0;
+ pixel_y = -27;
+ req_access = null;
+ req_one_access = list(1,19);
+ name = "Checkpoint turret control panel";
+ pixel_x = 27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"lXT" = (
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"lYB" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/item/material/kitchen/rollingpin,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"lYI" = (
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/cetus/sleevelobby)
+"lYR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"lYZ" = (
+/obj/structure/railing,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"lZh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"lZj" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"lZr" = (
+/turf/simulated/floor/reinforced,
+/area/shuttle/shuttle3/stationhangar3)
+"lZs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"lZu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"lZA" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S-Pass"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"lZG" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/item/rig/medical/equipped,
+/obj/machinery/door/window/southleft{
+ req_one_access = list(5,18);
+ name = "E.V.A."
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/EMT_Bay)
+"mal" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"maq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"mar" = (
+/obj/item/radio/intercom/department/security{
+ dir = 1;
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"max" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "QMLoad"
+ },
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"maC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"maJ" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"maM" = (
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/atrium/primary)
+"maT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"mbf" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Reception)
+"mbg" = (
+/obj/machinery/iv_drip,
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_1)
+"mbj" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/twostar)
+"mbm" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"mbo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/dockhallway)
+"mbJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"mcd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"mcy" = (
+/turf/simulated/wall/r_wall,
+/area/security/Reception)
+"mcA" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"mcF" = (
+/obj/structure/table/marble,
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/item/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3
+ },
+/obj/item/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"mcQ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Workshop";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"mds" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/brigdoor/eastright{
+ req_access = list(63)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/Reception)
+"mdx" = (
+/obj/machinery/clonepod/transhuman/full,
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"mdH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"mdK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/rnd/Research_Lab)
+"mdL" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"mdP" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"mdR" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"mdS" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/glasses/night,
+/obj/item/aicard,
+/obj/item/multitool,
+/obj/item/bluespace_crystal/artificial,
+/obj/item/bluespace_crystal/artificial,
+/obj/item/bluespace_crystal/artificial,
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"meg" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"mej" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/computer/timeclock/premade/north,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"mes" = (
+/obj/machinery/floodlight{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twojrport)
+"meG" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/Libraryf1)
+"mfb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"mfj" = (
+/obj/structure/sign/directions/cargo{
+ dir = 4;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/cargo/mining{
+ dir = 5
+ },
+/obj/structure/sign/directions/recreation{
+ pixel_y = -8;
+ name = "\improper Theater";
+ dir = 5
+ },
+/turf/simulated/wall,
+/area/hallway/primary/central_two)
+"mfn" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"mfr" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"mfC" = (
+/obj/item/stool/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"mfI" = (
+/obj/item/stool/padded{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"mfN" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Station Gateway";
+ dir = 8
+ },
+/obj/machinery/computer/cryopod/gateway{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/departure)
+"mgy" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"mgA" = (
+/turf/simulated/wall/r_wall,
+/area/security/briefing_room)
+"mgP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"mgW" = (
+/obj/structure/table/rack,
+/obj/item/disk/design_disk{
+ pixel_y = 9;
+ pixel_x = -5
+ },
+/obj/item/disk/tech_disk{
+ pixel_y = 8;
+ pixel_x = 4
+ },
+/obj/item/disk/design_disk{
+ pixel_y = 4;
+ pixel_x = -5
+ },
+/obj/item/disk/tech_disk{
+ pixel_y = 2;
+ pixel_x = 4
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"mgZ" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"mhn" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/stack/material/phoron{
+ amount = 25
+ },
+/obj/item/stack/material/phoron{
+ amount = 25
+ },
+/obj/item/stack/material/phoron{
+ amount = 25
+ },
+/obj/structure/closet/crate,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"mhr" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Internal Affairs";
+ req_access = list(38)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Internal_Affairs_Office)
+"mhD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"mhE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Central Ring 2";
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"mia" = (
+/obj/structure/table/bench/wooden,
+/obj/item/flashlight/lamp/green,
+/obj/machinery/button/remote/airlock{
+ id = "cabin4";
+ name = "Bolt Control";
+ pixel_y = 30;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm4)
+"mie" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"mio" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/black/bordercorner,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"miq" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/medical,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_2)
+"miu" = (
+/obj/structure/table/standard,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/cell_charger,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tool/power,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"miy" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"mja" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"mje" = (
+/obj/structure/sign/directions/evac{
+ dir = 6
+ },
+/turf/simulated/wall,
+/area/chapel/main)
+"mji" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"mjj" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/rig/hazmat/equipped,
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "RD Suit";
+ req_access = list(30)
+ },
+/obj/item/gps/science/rd,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/heads/sc/hor)
+"mjq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"mjz" = (
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"mjB" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"mjM" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"mjP" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"mka" = (
+/obj/structure/stairs/spawner/west,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"mks" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer_auxiliary)
+"mkt" = (
+/obj/structure/cable{
+ icon_state = "6-8"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"mkC" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_y = 3
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_y = 3
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = -3
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = -3
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - EVA";
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - EVA"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"mkN" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D2)
+"mkQ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "qpdld";
+ name = "Checkpoint Lockdown";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/security/checkpoint2)
+"mkV" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/docking_lounge)
+"mkW" = (
+/obj/machinery/light{
+ layer = 3
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"mlb" = (
+/obj/structure/table/standard,
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/item/healthanalyzer,
+/obj/item/stack/medical/bruise_pack{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/stack/medical/bruise_pack{
+ pixel_x = 10
+ },
+/obj/item/stack/medical/ointment{
+ pixel_y = 10
+ },
+/obj/random/medical/lite,
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/white,
+/area/security/security_aid_station)
+"mlc" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"mle" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/machinery/atm{
+ pixel_x = 28
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Arrivals Hallway 1";
+ dir = 9
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"mls" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/tank/emergency/phoron/double{
+ pixel_y = -7;
+ pixel_x = -4
+ },
+/obj/item/tank/emergency/phoron/double{
+ pixel_y = -8;
+ pixel_x = 3
+ },
+/obj/item/tank/emergency/nitrogen/double{
+ pixel_y = 1;
+ pixel_x = -5
+ },
+/obj/item/tank/emergency/nitrogen/double{
+ pixel_x = 4
+ },
+/obj/item/tank/emergency/carbon_dioxide/double{
+ pixel_y = 11;
+ pixel_x = -5
+ },
+/obj/item/tank/emergency/carbon_dioxide/double{
+ pixel_y = 11;
+ pixel_x = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva/aux)
+"mlB" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/machinery/button/windowtint{
+ id = "secpro";
+ pixel_x = -12;
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"mlI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ name = "Firing Range";
+ req_access = list(63);
+ req_one_access = null
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Firing_Range)
+"mlW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(47, 5)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"mmi" = (
+/obj/structure/table/reinforced,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"mmt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"mmF" = (
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/jrhallway)
+"mmO" = (
+/obj/machinery/floodlight{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twobar)
+"mnb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"mng" = (
+/obj/structure/bed/chair/office/light,
+/obj/effect/landmark/start{
+ name = "Xenobiologist"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"mnR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer_auxiliary)
+"mnX" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"moB" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall,
+/area/rnd/Xenobotany_Lab)
+"moF" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"moK" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"moY" = (
+/obj/structure/window/reinforced/full,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "xenobio5station";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"moZ" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -25
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"mpk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"mpW" = (
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"mqf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"mql" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"mqo" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -25
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"mqu" = (
+/obj/structure/closet/crate/bin,
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"mqx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"mqB" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/dockhallway)
+"mqP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/flicker,
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"mru" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"mrJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security{
+ id_tag = "detdoor";
+ name = "Detective";
+ req_access = list(4);
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/detectives_office)
+"mrN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ name = "Resleeving Bay";
+ req_one_access = null
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/Autoresleeving)
+"mrO" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/machinery/appliance/mixer/candy,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"mrX" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"msd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"msp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"msA" = (
+/obj/structure/reagent_dispensers/acid{
+ pixel_x = -30
+ },
+/obj/structure/sign/poster,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"msI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Brig Hallway 1";
+ dir = 10
+ },
+/obj/machinery/vending/wallmed1{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"msL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"msV" = (
+/obj/structure/ladder,
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -3
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/atrium/primary)
+"mta" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/engineering/cetus/atriumdeck2)
+"mtc" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"mti" = (
+/obj/random/obstruction,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"mtK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ id = "virogenetics"
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "geneticsviro";
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/medical/Virology)
+"mtT" = (
+/obj/machinery/computer/shuttle_control/exploration{
+ dir = 8
+ },
+/obj/machinery/camera/network/carrier{
+ c_tag = "CAR - Sling Shuttle";
+ dir = 9
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/expoutpost/station)
+"muc" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/clipboard,
+/obj/item/folder/yellow,
+/obj/item/pen/red,
+/obj/item/pen/blue{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"muf" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"mux" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/medical,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_1)
+"muE" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61"
+ },
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Wardens_Office)
+"muM" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction/wildcard{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Delivery Office";
+ dir = 8;
+ name = "security camera"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"muP" = (
+/obj/effect/floor_decal/industrial/stand_clear/yellow,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/kitchen)
+"muR" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"mvf" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/power/terminal,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"mvl" = (
+/obj/structure/closet/crate,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Firing_Range)
+"mwZ" = (
+/obj/machinery/papershredder,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"mxf" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"mxj" = (
+/obj/structure/bed/chair/office/dark,
+/obj/machinery/button/remote/blast_door{
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ pixel_x = -24;
+ pixel_y = -26;
+ req_access = list()
+ },
+/obj/effect/landmark/start{
+ name = "Quartermaster"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"mxm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"mxH" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/Distillery)
+"mxQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"mxT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Lobby";
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/Reception)
+"myx" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/twomed)
+"myD" = (
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"myW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"mzz" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/machinery/porta_turret/crescent,
+/turf/simulated/floor/redgrid,
+/area/teleporter/arrivals)
+"mzE" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"mzO" = (
+/obj/structure/flora/pottedplant/mysterious,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"mzX" = (
+/obj/structure/transit_tube/station{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -38
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Transit Tube";
+ dir = 8
+ },
+/obj/structure/transit_tube_pod{
+ dir = 4
+ },
+/turf/simulated/floor/greengrid,
+/area/rnd/cetus/hall)
+"mAe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"mAg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"mAz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical/polarized{
+ id_tint = "resleever";
+ name = "Resleever Bay"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Resleeving)
+"mAD" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"mAW" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"mBb" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/rnd/cetus/jrhall)
+"mBi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/closet/emcloset,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/monotile,
+/area/hangar/three)
+"mBq" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"mBt" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/structure/mirror{
+ pixel_x = -24
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"mBA" = (
+/turf/simulated/wall/r_wall,
+/area/storage/tools)
+"mCE" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/structure/table/bench/wooden,
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"mDd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hop_office"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hop)
+"mDm" = (
+/obj/machinery/station_map{
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"mDt" = (
+/obj/machinery/computer/security/wooden_tv,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"mDA" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"mDS" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/space,
+/area/space)
+"mFa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"mFb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"mFc" = (
+/obj/item/roller{
+ pixel_y = -6
+ },
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/structure/table/rack/shelf,
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer2";
+ name = "Medbay Doors Control";
+ pixel_y = 26;
+ pixel_x = -27
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"mFd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"mFm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"mFs" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/Lounge)
+"mFx" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/ai_monitored/storage/eva)
+"mFB" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"mFC" = (
+/obj/effect/wingrille_spawn/reinforced/polarized,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "resleever"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/medical/Resleeving)
+"mFR" = (
+/obj/machinery/computer/arcade{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"mFX" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"mGn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "security_lockdown";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/maintenance/sec,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/plating,
+/area/security/Restroom)
+"mHI" = (
+/obj/structure/closet/walllocker/medical{
+ pixel_y = -30
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/effect/shuttle_landmark/southern_cross/escape_pod1/station,
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{
+ frequency = 1381;
+ id_tag = "escape_pod_1";
+ tag_door = "escape_pod_1_hatch";
+ pixel_y = 23
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod1/station)
+"mHM" = (
+/turf/simulated/open,
+/area/maintenance/cetus/twostar)
+"mIa" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"mIo" = (
+/turf/simulated/open,
+/area/maintenance/cetus/twocave)
+"mIx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"mIy" = (
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"mIC" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"mIG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"mIL" = (
+/turf/simulated/wall/r_wall,
+/area/security/security_aid_station)
+"mIW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"mJb" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/ladder,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/open,
+/area/maintenance/cetus/twosec)
+"mJj" = (
+/turf/simulated/floor/plating{
+ icon_state = "dmg1"
+ },
+/area/security/Firing_Range)
+"mJu" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/paicard,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"mJQ" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/pirate,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm1)
+"mKh" = (
+/obj/structure/railing,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"mKk" = (
+/turf/simulated/mineral/cetus,
+/area/hallway/primary/central_two)
+"mKq" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"mKu" = (
+/obj/structure/bed/chair,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/effect/landmark/start{
+ name = "Engineer"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"mKC" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 6
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/sauna)
+"mKJ" = (
+/obj/machinery/atmospherics/binary/pump{
+ name = "Isolation to Waste"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"mLp" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/transit_tube{
+ icon_state = "N-S-Pass"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"mLG" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"mLR" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"mLW" = (
+/obj/structure/stairs/spawner/east,
+/obj/structure/railing/grey,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"mLX" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/item/radio/intercom/department/security{
+ dir = 4;
+ icon_override = "secintercom";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"mMh" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"mME" = (
+/obj/structure/bed/psych,
+/obj/item/toy/plushie/teppi,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Mental Health";
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"mMI" = (
+/obj/machinery/computer/pandemic,
+/obj/machinery/button/windowtint{
+ id = "virogenetics";
+ pixel_y = 24;
+ pixel_x = 24;
+ name = "Virology Inner Window"
+ },
+/obj/machinery/button/windowtint{
+ id = "virology";
+ pixel_y = 24;
+ pixel_x = 33;
+ name = "Virology Outer Window"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/greengrid,
+/area/medical/Virology)
+"mMJ" = (
+/obj/structure/sign/painting/public,
+/turf/simulated/wall/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"mMQ" = (
+/obj/structure/table/bench/wooden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/crew_quarters/cetus/jrlounge)
+"mNj" = (
+/obj/item/modular_computer/console/preset/security{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"mNl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"mNo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"mNp" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/medical/cetus/sleevelobby)
+"mNI" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"mNQ" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_one)
+"mOa" = (
+/obj/machinery/smartfridge/produce/persistent_lossy,
+/turf/simulated/wall,
+/area/hydroponics)
+"mOc" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/atrium/primary)
+"mOh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"mOw" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"mOE" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"mOJ" = (
+/obj/structure/closet/emcloset,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"mPb" = (
+/obj/structure/table/bench/glass,
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/observatory)
+"mPF" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"mPR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"mPS" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"mQm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"mQr" = (
+/obj/structure/table/glass,
+/obj/item/extraction_pack,
+/obj/item/extraction_pack,
+/obj/item/extraction_pack,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"mQZ" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"mRh" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"mRQ" = (
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/redgrid,
+/area/rnd/Mech_Bay)
+"mSa" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Security Checkpoint";
+ req_access = list(1)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/checkpoint2)
+"mSm" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Dock 1 Hallway 1";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"mSr" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/fancy,
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"mSs" = (
+/obj/machinery/washing_machine,
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = -22
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - D2 Hall 6";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"mTc" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 9
+ },
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/rnd/Xenobotany_Lab)
+"mTf" = (
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower/medical{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Autoresleeving)
+"mTE" = (
+/obj/structure/bed/roller,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled,
+/area/medical/cetus/sleevelobby)
+"mTQ" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/Holodeck)
+"mTR" = (
+/obj/structure/railing/overhang/grey,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Hot Tub";
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 9
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sauna)
+"mUn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/vending/wardrobe/hydrobe,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"mUu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Port Substation";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"mUx" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"mUy" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"mUG" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva/aux)
+"mUH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"mUI" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Mech_Bay)
+"mUZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"mVa" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"mVt" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/boxing,
+/area/crew_quarters/Gym)
+"mVJ" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Monitoring";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"mVQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"mVV" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/engineering/Breakroom)
+"mWl" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hosoffice"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/hos)
+"mWq" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"mWv" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/machinery/conveyor_switch{
+ id = "disposalsorter";
+ name = "recycling";
+ pixel_y = 11
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/quartermaster/Recycling)
+"mWy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"mXb" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/primary/central_four)
+"mXu" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ layer = 3.3;
+ throw_speed = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Custodial Closet";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/Custodial_Office)
+"mXO" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"mXR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"mYn" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"mYo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass{
+ name = "Auxiliary Storage"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/tools)
+"mYw" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_x = -7;
+ pixel_y = 32
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"mYB" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_y = -24;
+ pixel_x = -12
+ },
+/obj/structure/table/steel_reinforced,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/random/tech_supply,
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"mYU" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"mZd" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/medical,
+/obj/machinery/door/window/westleft{
+ name = "Medical Staff Only";
+ req_one_access = list(5)
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/head/helmet/space/void/medical,
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"mZC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/item/form_printer,
+/obj/effect/floor_decal/spline/plain,
+/obj/item/packageWrap,
+/obj/item/destTagger{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"mZK" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/papershredder,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"mZW" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"naa" = (
+/obj/item/gps/engineering,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/item/pickaxe/drill,
+/obj/item/clothing/under/swimsuit/fluff/engineering,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"nay" = (
+/obj/machinery/computer/security/telescreen/bodycamera{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"naA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"naF" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/random/pottedplant,
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"naX" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Utility Hallway 3";
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"naY" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = -24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"nbp" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/cafeteriaf2)
+"nbq" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"nbA" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Locker_Room)
+"nbQ" = (
+/obj/item/stool/padded,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"nck" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/engineering/Reception)
+"ndh" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"ndn" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"nds" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/primary/central_one)
+"ndE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"ndF" = (
+/turf/simulated/floor/plating,
+/area/maintenance/zerobar)
+"ndH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"ndQ" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"net" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ id = "qpwld";
+ name = "Checkpoint Lockdown"
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/radio/phone{
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/checkpoint2)
+"neK" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"nff" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"nfk" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/button/windowtint{
+ id = "psyco_tint";
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control-switch for the office door.";
+ id = "mentaldoor";
+ name = "office door control";
+ pixel_y = 24;
+ pixel_x = -21;
+ specialfunctions = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"nfo" = (
+/obj/structure/closet/crate{
+ name = "Grenade Crate"
+ },
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/assembly/timer,
+/obj/item/grenade/chem_grenade,
+/obj/item/grenade/chem_grenade,
+/obj/item/grenade/chem_grenade,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly_holder/timer_igniter,
+/obj/item/assembly_holder/timer_igniter,
+/obj/item/assembly_holder/timer_igniter,
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"ngs" = (
+/obj/structure/closet/wardrobe/medic_white,
+/obj/item/flashlight/pen,
+/obj/item/flashlight/pen,
+/obj/machinery/firealarm{
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Locker_Room)
+"ngx" = (
+/obj/machinery/smartfridge/drying_rack,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"nhc" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/arrivals)
+"nhf" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"nhk" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "8-9"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"nhw" = (
+/obj/structure/salvageable/machine_os,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/twojrport)
+"nhy" = (
+/obj/structure/toilet/item{
+ dir = 8
+ },
+/obj/item/bikehorn/rubberducky/red,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"nhX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"nic" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"niz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel";
+ req_access = list(57)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"niH" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"niU" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/structure/catwalk,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"nja" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/glass/reinforced,
+/area/security/Brig)
+"njp" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/cetus/chem)
+"njs" = (
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Containment Pen";
+ req_access = list(47)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "xenobioextra2";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobiology_Lab)
+"njG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"nka" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/observatory)
+"nkg" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "9-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"nkr" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "HoS Office";
+ sortType = "HoS Office"
+ },
+/obj/machinery/button/remote/airlock{
+ pixel_y = 27;
+ name = "General Population Access";
+ id = "genpop2";
+ pixel_x = -6;
+ specialfunctions = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "genobserve2";
+ name = "Privacy Shutters";
+ pixel_x = 4;
+ req_access = list(2);
+ pixel_y = 27
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "Prison Gate";
+ name = "Prison Lockdown";
+ req_access = list(2);
+ pixel_y = 38;
+ pixel_x = -1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"nkx" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"nkH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"nkI" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"nkQ" = (
+/obj/vehicle/train/trolley{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"nkW" = (
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"nli" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/detectives_office)
+"nlu" = (
+/obj/structure/cable/green,
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS- Joint Research";
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable/max_charge{
+ RCon_tag = "Substation - Asteroid"
+ },
+/obj/item/smes_coil,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"nlJ" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"nlS" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/biochemistry/full,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"nmk" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"nmn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"nnn" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/mask/breath,
+/obj/machinery/door/window/northleft{
+ name = "E.V.A.";
+ req_one_access = list(18, 2)
+ },
+/obj/item/rig/vox/security,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"nnu" = (
+/obj/structure/dummystairs,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"nof" = (
+/turf/simulated/mineral/cetus,
+/area/security/Brig)
+"nom" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"nos" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = -32
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod1/station)
+"noI" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/boxing/gym,
+/area/crew_quarters/Gym)
+"npu" = (
+/obj/machinery/computer/atmoscontrol{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"npv" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "CMO office";
+ sortType = "CMO office"
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"npD" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "robotsurgery"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Robotics_Lab)
+"npO" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Research Workshop";
+ dir = 9
+ },
+/obj/machinery/computer/rdconsole_tg{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Research_Lab)
+"npT" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"nqx" = (
+/obj/structure/railing/grey,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - JR Chem";
+ dir = 8
+ },
+/turf/simulated/open,
+/area/rnd/cetus/chem)
+"nqy" = (
+/turf/space,
+/area/shuttle/escape/station)
+"nqW" = (
+/obj/structure/table/marble,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/effect/floor_decal/corner/black/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"nqX" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/lobby)
+"nrz" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"nsc" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Recreation"
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/arcadestorage)
+"nsm" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/stand_clear/blue,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/hall)
+"nso" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"nsP" = (
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twobar)
+"nsX" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"nsY" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"ntk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"ntn" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"ntv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Firing_Range)
+"ntO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"ntW" = (
+/obj/structure/transit_tube{
+ icon_state = "E-SW"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/jrhallway)
+"ntY" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"ntZ" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"nuq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"nus" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"nuu" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"nuw" = (
+/obj/machinery/atmospherics/unary/freezer{
+ icon_state = "freezer_1";
+ power_setting = 20;
+ set_temperature = 73;
+ use_power = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Server_Room)
+"nux" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"nuD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"nuR" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"nvo" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"nvC" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/sauna)
+"nwf" = (
+/mob/living/simple_mob/slime/xenobio/rainbow/kendrick,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"nwi" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"nwj" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"nws" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"nwt" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"nwK" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"nwO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "holodeck_tint"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/Holodeck)
+"nxh" = (
+/obj/structure/lattice,
+/obj/machinery/light,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/security/Firing_Range)
+"nxv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"nxy" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/zerobar)
+"nxH" = (
+/obj/structure/disposalpipe/trunk,
+/obj/structure/disposaloutlet{
+ dir = 4;
+ layer = 3.3;
+ pixel_y = -3;
+ pixel_x = -5;
+ throw_speed = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/briefing_room)
+"nxM" = (
+/obj/machinery/computer/transhuman/resleeving{
+ dir = 1
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"nxV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"nxZ" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"nyu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"nyR" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"nzo" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/twojrport)
+"nzu" = (
+/obj/structure/stairs/spawner/west,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"nzA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/dockhallway)
+"nzJ" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/button/windowtint{
+ id = "holodeck_tint";
+ pixel_x = -11;
+ pixel_y = 24;
+ range = 14
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"nzO" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"nzQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"nAb" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"nAd" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "researchoffice"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Research_Lab)
+"nAp" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"nAt" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/item/reagent_containers/food/snacks/pie,
+/obj/structure/table/bench/marble,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/cafeteriaf2)
+"nAI" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"nAK" = (
+/obj/machinery/computer/power_monitor{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"nAV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"nBn" = (
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva/aux)
+"nBJ" = (
+/obj/machinery/light/small,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"nBP" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"nBV" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/jrhallway)
+"nBW" = (
+/obj/machinery/gear_dispenser/suit_fancy/autolok,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva/aux)
+"nCb" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"nCd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobotany_Lab)
+"nCm" = (
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/mainsupport)
+"nCs" = (
+/obj/structure/waterfall/top,
+/obj/effect/mist,
+/obj/structure/fans/tiny,
+/turf/simulated/floor/water/hotspring,
+/area/crew_quarters/sauna)
+"nCL" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/foodstuff,
+/obj/random/flashlight,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"nDp" = (
+/obj/structure/closet{
+ name = "welding equipment"
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/glasses/welding,
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/flash,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/item/weldingtool/largetank,
+/obj/item/weldingtool/largetank,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"nDE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"nDP" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"nEb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Medical Restroom"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Restrooms)
+"nEe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"nEH" = (
+/obj/machinery/door_timer/cell_2{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"nEJ" = (
+/obj/structure/loot_pile/surface/medicine_cabinet{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"nEW" = (
+/obj/effect/floor_decal/chapel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"nEY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"nFh" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"nFE" = (
+/obj/structure/door_assembly,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"nFG" = (
+/obj/effect/floor_decal/corner/purple{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple{
+ dir = 10
+ },
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"nGq" = (
+/obj/machinery/button/remote/blast_door{
+ id = "kitchen";
+ name = "Kitchen Shutters Control";
+ pixel_x = -26;
+ req_access = list(28);
+ pixel_y = 25
+ },
+/obj/effect/floor_decal/corner/black/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"nGz" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer_auxiliary)
+"nGE" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -30;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"nHm" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"nHn" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Dock 2 Hallway 2";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"nHx" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/gloves/black,
+/obj/item/clothing/gloves/black,
+/obj/item/storage/belt/utility,
+/obj/item/storage/belt/utility,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/pipe_dispenser,
+/obj/item/pipe_dispenser,
+/turf/simulated/floor/tiled,
+/area/engineering/Engineering_Workshop)
+"nHz" = (
+/obj/structure/closet/emcloset/legacy,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"nHC" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"nHH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/reception)
+"nIl" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"nIy" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/item/radio/headset,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Brig Cell 4";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"nIK" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D3)
+"nJS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"nJT" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"nKk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Reception";
+ req_access = list(5)
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/reception)
+"nKl" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"nKu" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Chapel"
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0;
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"nKN" = (
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Observation Passage";
+ req_access = list(47)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "xenobio5station";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobiology_Lab)
+"nKT" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"nLp" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"nMh" = (
+/obj/machinery/computer/timeclock/premade/east,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"nMu" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"nMO" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"nMW" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/cafeteriaf2)
+"nNE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"nNO" = (
+/obj/machinery/computer/mecha{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/heads/sc/hor)
+"nNY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -23;
+ pixel_x = 5;
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "aux_support_meteor";
+ dir = 1;
+ pixel_y = -24;
+ pixel_x = -6;
+ req_one_access = list(11, 24, 47, 5)
+ },
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"nOg" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2,
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"nOl" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"nOm" = (
+/obj/structure/grille,
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"nOG" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"nOS" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/mainsupport)
+"nOX" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"nOZ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"nPa" = (
+/turf/simulated/wall/r_wall,
+/area/medical/Chemistry)
+"nPv" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/medical/cetus/atriumd2)
+"nPG" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/security/Locker_Room)
+"nPL" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Joint Research";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/cetus/hall)
+"nQg" = (
+/obj/random/vendordrink,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"nQo" = (
+/obj/structure/table/steel,
+/obj/item/paper_bin{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/obj/item/pen/blue{
+ pixel_y = 5
+ },
+/obj/item/pen/red{
+ pixel_y = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/tech)
+"nQp" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"nQv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"nRg" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"nRq" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/dockrestrooms)
+"nRr" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"nRR" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"nRV" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/cetus/hall)
+"nSp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"nSy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid/full{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"nTk" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/shield_diffuser,
+/obj/structure/fans/tiny,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D1)
+"nTv" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "Library";
+ sortType = "Library"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_four)
+"nTz" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/atrium/primary)
+"nTD" = (
+/obj/structure/table/bench/wooden,
+/obj/structure/flora/pottedplant/flower{
+ pixel_y = 7
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Auto Resleever Waiting";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/medical/cetus/sleevelobby)
+"nTR" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/tech)
+"nTU" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"nTV" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/jrhallway)
+"nUb" = (
+/obj/structure/table/bench/marble,
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sauna)
+"nUe" = (
+/obj/machinery/teleport/station{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/tcomm/entrance/cetus)
+"nUf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"nUn" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm3)
+"nUp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"nUw" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/Galleryf1)
+"nUE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics";
+ req_access = list(28)
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"nVh" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"nVi" = (
+/obj/structure/closet/toolcloset,
+/obj/structure/closet/toolcloset,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/item/clothing/glasses/meson,
+/obj/item/pickaxe,
+/obj/item/radio/intercom{
+ desc = "Talk... listen through this.";
+ name = "Station Intercom (Brig Radio)";
+ pixel_y = -21;
+ wires = 7
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Primary Tool Storage";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/storage/primary)
+"nVy" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_research{
+ name = "Mech Bay";
+ req_access = list(29)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Mech_Bay)
+"nVF" = (
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer1";
+ name = "Medbay Doors Control";
+ pixel_y = 26;
+ pixel_x = -27
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"nWk" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"nWl" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"nWo" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"nWr" = (
+/obj/structure/closet/wardrobe/chemistry_white,
+/obj/item/storage/box/pillbottles,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"nWw" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"nWz" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"nWJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/camera/network/exploration{
+ c_tag = "EXP - D2 Hangar 4";
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"nWK" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"nXa" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"nXo" = (
+/obj/structure/closet/emcloset/legacy,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/expoutpost/station)
+"nXq" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"nXT" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/flashlight/lamp{
+ pixel_y = -9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/Chapel_Office)
+"nXZ" = (
+/obj/machinery/vending/wallmed1{
+ pixel_x = 25
+ },
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_1)
+"nYh" = (
+/turf/simulated/wall/r_wall,
+/area/medical/Surgery_Viewing)
+"nYo" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"nYp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"nYB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_one_access = list(5,47)
+ },
+/turf/simulated/floor/plating,
+/area/medical/Genetics_Lab)
+"nZm" = (
+/obj/structure/table/standard,
+/obj/item/flashlight/lamp/green,
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"nZn" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/black/border,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"nZq" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/random/obstruction,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"nZx" = (
+/obj/structure/closet/crate/mail,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/item/mail/blank,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"nZK" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"nZP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"nZQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"oah" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_1)
+"oak" = (
+/obj/machinery/vending/snack{
+ dir = 4;
+ pixel_x = -7
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"oan" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"oas" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"oaC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"oaF" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"oaG" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"oaT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"obk" = (
+/obj/structure/loot_pile/surface/medicine_cabinet/fresh{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"obp" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"obq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"obr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_four)
+"obt" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"obu" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/supply,
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/obj/structure/disposalpipe/up,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"obB" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/cafeteriaf2)
+"obU" = (
+/obj/structure/table/marble,
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/item/book/codex/chef_recipes,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"ocl" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/rnd/research_restroom_sc)
+"ocm" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"oco" = (
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"ocF" = (
+/obj/structure/disposalpipe/segment,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"ocK" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/cafeteriaf2)
+"ocT" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/rnd/Xenobotany_Lab)
+"odm" = (
+/obj/random/material,
+/obj/random/material,
+/obj/random/material,
+/obj/random/material,
+/obj/structure/closet/crate,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"ody" = (
+/obj/structure/table/hardwoodtable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/carpet,
+/obj/item/starcaster_news,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"odB" = (
+/turf/simulated/wall/r_wall,
+/area/security/Brig)
+"odC" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"odI" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/megaphone,
+/obj/item/taperecorder,
+/obj/item/reagent_containers/food/drinks/flask/barflask,
+/obj/item/rectape/random,
+/obj/item/radio/off,
+/obj/item/storage/box/snakesnackbox,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"odJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid/full{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"odV" = (
+/obj/structure/sign/directions/evac,
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D3)
+"odX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secbriefing"
+ },
+/turf/simulated/floor/plating,
+/area/security/briefing_room)
+"oeh" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"oep" = (
+/obj/structure/transit_tube{
+ icon_state = "D-SW"
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"oeA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"oeK" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"oeM" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/jrhall)
+"oeU" = (
+/obj/machinery/light/spot{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"ofb" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Chemist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"ofJ" = (
+/obj/structure/table/reinforced,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/destTagger{
+ pixel_x = -5;
+ pixel_y = 7
+ },
+/obj/item/destTagger{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/servicecloset)
+"ofP" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"ofS" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"ofY" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/Chapel_Office)
+"ofZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/tvalve/mirrored{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"ogz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"ogC" = (
+/obj/structure/closet/l3closet/virology,
+/obj/item/storage/lockbox/vials,
+/obj/item/storage/lockbox/vials,
+/obj/item/radio/intercom/department/medbay{
+ dir = 1;
+ pixel_y = 21
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - D2 Virology Lab";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"ogL" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/twobar)
+"ogN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"ogO" = (
+/obj/structure/bed/chair/sofa/right/orange{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"ogS" = (
+/obj/structure/closet/wardrobe/orange,
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"ohd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"ohk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "virology"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/plating,
+/area/medical/Virology)
+"ohF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"ohO" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"ohU" = (
+/obj/random/trash,
+/turf/simulated/floor/tiled,
+/area/maintenance/zerobar)
+"oic" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"oiv" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Server_Room)
+"oiH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"oiQ" = (
+/obj/structure/table/rack,
+/obj/random/mainttoyloot,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/misc,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"ojd" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Chemistry Laboratory";
+ req_access = list(33)
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Chemistry)
+"ojh" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"ojv" = (
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"ojL" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/zerobar)
+"ojQ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"okk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"okm" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"okz" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"olc" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"olm" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 4;
+ name = "HoP Office";
+ sortType = "HoP Office"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"olw" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/Research_Lab)
+"olD" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 4;
+ name = "RD Office";
+ sortType = "RD Office"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"olH" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"olJ" = (
+/obj/structure/closet/lawcloset,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"olU" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"omo" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"one" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"oni" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"ono" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"onD" = (
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"onG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/woodentable,
+/obj/item/taperecorder,
+/obj/item/camera,
+/obj/item/barcodescanner,
+/obj/item/rectape/random,
+/obj/item/rectape/random,
+/obj/item/storage/briefcase,
+/obj/item/book/codex/lore/news,
+/obj/item/tvcamera,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"onZ" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"ooa" = (
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Docking Hallway 3";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"ooo" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"oor" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"oow" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twocargo)
+"oox" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"ooD" = (
+/obj/machinery/scale,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"ooI" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"ope" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"opv" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube{
+ icon_state = "E-W-Pass";
+ density = 0
+ },
+/turf/space,
+/area/space)
+"opA" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"opB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Dock"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D2)
+"opE" = (
+/obj/item/stool/padded,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"opL" = (
+/obj/structure/lattice,
+/obj/structure/disposaloutlet{
+ dir = 4;
+ layer = 3.3
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twofp)
+"opP" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"oqh" = (
+/turf/simulated/open,
+/area/maintenance/cetus/twobar)
+"oqr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"oqs" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"oqx" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"oqI" = (
+/obj/structure/table/standard,
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/item/towel{
+ color = "#FF8C00";
+ name = "orange towel";
+ pixel_x = -2;
+ pixel_y = -4
+ },
+/obj/item/towel{
+ color = "#FF8C00";
+ name = "orange towel";
+ pixel_x = -2;
+ pixel_y = -4
+ },
+/obj/item/towel{
+ color = "#FFD700";
+ name = "gold towel"
+ },
+/obj/item/towel{
+ color = "#FFD700";
+ name = "gold towel"
+ },
+/obj/item/towel{
+ color = "#00FFFF";
+ name = "cyan towel";
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/towel{
+ color = "#00FFFF";
+ name = "cyan towel";
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"oqN" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_2)
+"oqR" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/Processing_Room)
+"oqV" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/structure/bed/chair/office/light,
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"ork" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secward"
+ },
+/obj/machinery/door/blast/shutters{
+ id = "Warden_Shutters";
+ name = "Warden Shutters";
+ dir = 2
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/plating,
+/area/security/Wardens_Office)
+"orl" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer_auxiliary)
+"ort" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"orG" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"orQ" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/structure/table/bench/wooden,
+/obj/effect/floor_decal/corner/black/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"orR" = (
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Cargo Shuttle Airlock";
+ req_access = list(31);
+ req_one_access = list(48)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/structure/fans/tiny,
+/turf/simulated/floor/tiled/techmaint,
+/area/quartermaster/storage)
+"orS" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"osb" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"osi" = (
+/turf/simulated/wall,
+/area/crew_quarters/sleep/cetus/jrdorm3)
+"osD" = (
+/obj/structure/bed/chair/sofa/corp/right{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"otv" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"otw" = (
+/obj/effect/floor_decal/chapel{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"otz" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"otF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced/polarized{
+ id = "robotoffice"
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "robotoffice";
+ dir = 1
+ },
+/obj/machinery/door/window/westleft{
+ name = "Robotics Desk";
+ req_access = list(29)
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/Robotics_Lab)
+"otG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/obj/random/junk,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"otU" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"ous" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"ouJ" = (
+/obj/structure/table/bench/wooden{
+ pixel_y = 7;
+ pixel_x = -3
+ },
+/obj/item/toy/figure/clown{
+ pixel_y = 8;
+ pixel_x = -4
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"ouN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"ouU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"ouV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"ouW" = (
+/obj/item/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/camera{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/storage/secure/briefcase,
+/obj/structure/closet,
+/obj/item/storage/secure/briefcase,
+/obj/item/taperecorder{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/camera{
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/machinery/light{
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"ouZ" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explofoyer)
+"ovc" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 4
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 36
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/sauna)
+"ovk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"ovK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"ovS" = (
+/obj/structure/bed/chair/office/light,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Server_Room)
+"own" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"oxc" = (
+/obj/item/stool/padded,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"oxV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "resleever"
+ },
+/turf/simulated/floor/plating,
+/area/medical/Resleeving)
+"oyg" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"oyt" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"oyB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"oyN" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/item/robotanalyzer,
+/obj/item/robotanalyzer,
+/obj/item/robotanalyzer,
+/obj/item/robotanalyzer,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Robotics_Lab)
+"oyQ" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"oyW" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Chief Engineer"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"oyZ" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled,
+/area/security/Internal_Affairs_Office)
+"ozl" = (
+/obj/structure/sign/directions/science/toxins{
+ dir = 10
+ },
+/obj/structure/sign/directions/medical/cloning{
+ dir = 1;
+ pixel_y = 7;
+ name = "\improper Genetics Lab"
+ },
+/obj/structure/sign/directions/medical/virology{
+ dir = 1;
+ pixel_y = -7
+ },
+/turf/simulated/wall,
+/area/crew_quarters/cetus/jrhallway)
+"ozr" = (
+/obj/structure/table/bench/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Entry";
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"ozv" = (
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "Under_Solars";
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"ozF" = (
+/turf/simulated/floor/tiled,
+/area/engineering/Engineering_Workshop)
+"ozH" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"ozK" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"ozP" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"ozQ" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"ozR" = (
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 2
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"oAh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "d2_w3_d_airlock";
+ pixel_y = -27;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"oAp" = (
+/obj/structure/bed/chair,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"oAu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/station_map{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"oAy" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/jrhallway)
+"oAB" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/ai_monitored/storage/eva)
+"oAE" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"oAN" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/machinery/atmospherics/valve{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"oAQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"oAV" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"oBr" = (
+/obj/machinery/gateway{
+ dir = 4
+ },
+/obj/machinery/gateway{
+ dir = 5;
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/departure)
+"oBv" = (
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"oCc" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/spline/plain/corner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"oCv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"oCy" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ locked = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Locker_Room)
+"oCB" = (
+/obj/machinery/shower{
+ pixel_y = 16
+ },
+/obj/structure/curtain/open/shower/medical,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/freezer,
+/area/medical/Virology)
+"oCQ" = (
+/obj/structure/transit_tube{
+ icon_state = "D-SW"
+ },
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"oCV" = (
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"oCY" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"oDl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"oDv" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"oDw" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Server_Room)
+"oDR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"oEh" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/twosci)
+"oEi" = (
+/turf/simulated/mineral/cetus,
+/area/hangar/three)
+"oEy" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Asteroid Substation Bypass"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"oEI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/docklock)
+"oEO" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"oEZ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"oFi" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"oFn" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/mob/living/carbon/human/monkey,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Genetics_Lab)
+"oFt" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_access = list(55);
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"oFu" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"oFC" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"oFF" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"oGg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/machinery/meter,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"oGE" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"oGV" = (
+/obj/item/stool{
+ color = "grey";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"oHi" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "8-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"oHB" = (
+/obj/structure/ladder,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"oHE" = (
+/obj/structure/railing/overhang/grey,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/machinery/light/floortube{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sauna)
+"oHG" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"oHU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"oHV" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"oIb" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"oIe" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"oIf" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"oIU" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"oIX" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/button/windowtint{
+ id = "pr2_window_tint";
+ pixel_x = -36;
+ pixel_y = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_2)
+"oIZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"oJb" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"oJk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobotany_Lab)
+"oJw" = (
+/turf/space,
+/area/space)
+"oJy" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"oJA" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet,
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"oJB" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 8;
+ start_pressure = 4559.63
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"oJQ" = (
+/obj/structure/table/standard,
+/obj/structure/sink/countertop{
+ pixel_y = -6;
+ dir = 1
+ },
+/obj/structure/mirror{
+ pixel_y = -26;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"oJU" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"oKc" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"oKR" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"oLh" = (
+/obj/item/modular_computer/console/preset/security{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"oLk" = (
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"oLy" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/heads/sc/hos)
+"oLP" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/engi_restroom)
+"oLY" = (
+/obj/machinery/shower,
+/obj/structure/curtain/open/shower/security,
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"oMu" = (
+/turf/simulated/wall/r_wall,
+/area/teleporter/arrivals)
+"oMQ" = (
+/obj/effect/shuttle_landmark/southern_cross/escape/station,
+/turf/space,
+/area/shuttle/escape/station)
+"oMY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ id_tag = "surgery_observation";
+ name = "Observation Room";
+ req_one_access = null
+ },
+/obj/structure/cable/green{
+ icon_state = "5-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Surgery_Viewing)
+"oNg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Hard Storage"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/cetus/atriumdeck2)
+"oNh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/engineering/cetus/atriumdeck2)
+"oNo" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/security/briefing_room)
+"oNq" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 5
+ },
+/obj/effect/mist,
+/turf/simulated/floor/water/hotspring{
+ depth = 1
+ },
+/area/crew_quarters/sauna)
+"oNr" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"oNG" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"oNN" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"oNZ" = (
+/turf/simulated/open,
+/area/maintenance/cetus/twosec)
+"oOd" = (
+/obj/machinery/photocopier,
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Research_Lab)
+"oOk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"oOs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"oOu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"oOC" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "qpadblast";
+ name = "Qpad Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/teleporter/arrivals)
+"oOH" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Mech_Bay)
+"oOR" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"oPo" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"oPH" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"oQb" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/twosec)
+"oQO" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobio1station";
+ name = "Containment Blast Doors";
+ opacity = 0;
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"oQX" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/camera/network/exploration{
+ c_tag = "EXP - D2 Hangar 3";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"oRn" = (
+/obj/structure/table/standard,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/pen/blue{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/item/pen/red{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/item/pen{
+ pixel_y = 7;
+ pixel_x = 3
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"oRo" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"oRK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"oRP" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"oRS" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/crew_quarters/cetus/atrium/primary)
+"oSd" = (
+/obj/machinery/door/window/brigdoor/southright{
+ name = "Containment Pen";
+ req_access = list(47)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobiology_Lab)
+"oSn" = (
+/obj/machinery/camera/network/telecom{
+ c_tag = "TCOMMS - D2 Foyer"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"oSE" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/floortube{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"oSX" = (
+/turf/simulated/wall,
+/area/hallway/cetus/stairwellf2)
+"oSZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"oTg" = (
+/obj/structure/bed/chair/sofa/corp/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"oTo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"oTz" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"oTY" = (
+/obj/machinery/recharge_station,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/light/small/fluorescent,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Mech_Bay)
+"oUa" = (
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"oUw" = (
+/obj/structure/dummystairs/greyledge{
+ dir = 8
+ },
+/obj/structure/railing/overhang/grey,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"oUF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"oUM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"oUU" = (
+/obj/structure/sign/directions/medical{
+ dir = 8;
+ pixel_y = -1
+ },
+/obj/structure/sign/directions/science{
+ pixel_y = 5;
+ dir = 8
+ },
+/obj/structure/sign/directions/library{
+ pixel_y = 11;
+ dir = 9
+ },
+/obj/structure/sign/directions/chapel{
+ pixel_y = -7;
+ dir = 10
+ },
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/atrium/primary)
+"oUW" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/camera/network/exploration{
+ c_tag = "EXP - D2 Lockers"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explofoyer)
+"oVy" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/cetus/jrhall)
+"oVA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"oVK" = (
+/obj/machinery/shower,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/structure/curtain/open/shower/security,
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"oVL" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/Gym)
+"oVN" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"oWd" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"oWh" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"oWt" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"oWu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"oWv" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"oWS" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Central Ring 4";
+ dir = 10
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"oWX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"oXt" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"oXA" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Virology)
+"oXG" = (
+/obj/structure/stairs/spawner/north,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"oXO" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"oYb" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"oYj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"oYn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/corner/green,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/arcadestorage)
+"oYA" = (
+/obj/structure/stairs/spawner/west,
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"oYP" = (
+/obj/structure/table/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/item/book/manual/supermatter_engine,
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/clothing/glasses/meson{
+ pixel_y = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"oYX" = (
+/obj/structure/table/standard,
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/obj/item/radio/beacon{
+ pixel_y = -2;
+ pixel_x = -5
+ },
+/obj/item/radio/beacon{
+ pixel_y = -2;
+ pixel_x = 7
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"oZh" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/form_printer{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/camera{
+ desc = "A one use - polaroid camera. 30 photos left.";
+ name = "detectives camera";
+ pictures_left = 30;
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/camera_film,
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"oZi" = (
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"oZn" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"oZB" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/tank/emergency/oxygen/engi,
+/obj/item/clothing/mask/gas,
+/obj/item/melee/umbrella/random,
+/turf/simulated/floor/tiled,
+/area/teleporter/arrivals)
+"oZE" = (
+/obj/item/gps/engineering,
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/pickaxe/drill,
+/obj/item/clothing/under/swimsuit/fluff/engineering,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"oZH" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"oZI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_one)
+"oZJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"oZL" = (
+/obj/structure/sign/directions/engineering/reactor{
+ dir = 6
+ },
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/atriumdeck2)
+"oZM" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_1)
+"oZX" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"pab" = (
+/obj/structure/table/standard,
+/obj/machinery/cell_charger,
+/obj/random_multi/single_item/hand_tele,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"pak" = (
+/turf/simulated/open,
+/area/hallway/primary/central_two)
+"pas" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"paY" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"pbe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS- Joint Research";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"pbk" = (
+/obj/structure/window/reinforced/full,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobio1station";
+ name = "Containment Blast Doors";
+ opacity = 0;
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"pbm" = (
+/obj/structure/bed/chair/sofa/left/blue{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/hallway/secondary/entry/docking_lounge)
+"pbr" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"pbz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"pbI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"pcf" = (
+/obj/structure/table/standard,
+/obj/item/folder/red,
+/turf/simulated/floor/carpet,
+/area/security/briefing_room)
+"pcE" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "w3_b_airlock";
+ pixel_y = -27;
+ req_one_access = list(13);
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"pcH" = (
+/obj/item/stack/material/steel,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"pcL" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/computer/timeclock/premade/west,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"pcR" = (
+/turf/simulated/wall,
+/area/medical/Genetics_Lab)
+"pcY" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ name = "CE Office";
+ sortType = "CE Office"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"pdd" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Mech_Bay)
+"pdr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"pdy" = (
+/obj/structure/closet,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"pea" = (
+/obj/effect/mist,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ color = "White";
+ dir = 1
+ },
+/turf/simulated/floor/water/hotspring{
+ depth = 1
+ },
+/area/crew_quarters/sauna)
+"peg" = (
+/obj/structure/closet/emcloset,
+/obj/item/tool/crowbar/red,
+/obj/item/tool/crowbar/red,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"peo" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"peV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"pft" = (
+/obj/structure/bed/chair/sofa/corner/blue{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/hallway/primary/seconddeck/dockhallway)
+"pfv" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"pfC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"pfH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/appliance/cooker/grill,
+/obj/effect/floor_decal/corner/black/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"pfP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"pfR" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"pfT" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet{
+ dir = 8;
+ layer = 3.3;
+ pixel_y = -3;
+ pixel_x = 5;
+ throw_speed = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/storage/primary)
+"pgg" = (
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -25
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/Distillery)
+"pgl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"pgD" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"pgE" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"pgP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"phf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"php" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"phq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Joint Research"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/cetus/hall)
+"phv" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"phx" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"phz" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/autolathe,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"phC" = (
+/turf/simulated/wall/r_wall,
+/area/security/Locker_Room)
+"phH" = (
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"phN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secward"
+ },
+/obj/machinery/door/blast/shutters{
+ id = "Warden_Shutters";
+ name = "Warden Shutters";
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/plating,
+/area/security/Wardens_Office)
+"pie" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"pij" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Chapel"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0;
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/chapel/main)
+"piy" = (
+/obj/structure/table/woodentable,
+/obj/item/storage/box/nifsofts_engineering,
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"piz" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"pjg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atm{
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"pjA" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = -24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"pjM" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"pkC" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"pkD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"pkI" = (
+/obj/machinery/chem_master,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"pkL" = (
+/obj/structure/stairs/spawner/west,
+/obj/structure/railing,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"pkV" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/reagent_containers/food/drinks/bottle/holywater,
+/obj/item/nullrod,
+/obj/item/storage/fancy/markers,
+/obj/item/storage/fancy/candle_box,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino,
+/area/crew_quarters/Chapel_Office)
+"plj" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"plk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"plo" = (
+/obj/structure/closet/emcloset,
+/obj/item/tool/crowbar/red,
+/obj/item/tool/crowbar/red,
+/obj/item/tool/crowbar/red,
+/obj/item/tool/crowbar/red,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"plr" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"plH" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm4)
+"plO" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/Brig)
+"plZ" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"pmz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobotany_Lab)
+"pmM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Dock"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/seconddeck/dockhallway)
+"pmV" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Autoresleeving)
+"pnb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secbriefing"
+ },
+/turf/simulated/floor/plating,
+/area/security/briefing_room)
+"pnd" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/cetus/hall)
+"png" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/door_assembly,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"pni" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/cafeteriaf2)
+"pnm" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twojrport)
+"pnp" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"pnq" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"pnt" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/stool/padded{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"pnH" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/spline/plain/corner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"pnV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"pow" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/security/detectives_office)
+"poY" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"poZ" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"ppr" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"ppt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"ppA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"ppB" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"ppD" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Sling shuttle dock";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"ppX" = (
+/obj/structure/closet/secure_closet/explorer,
+/obj/item/cataloguer,
+/obj/item/melee/umbrella/random,
+/obj/item/binoculars,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explofoyer)
+"pqa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"pqi" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"pqy" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"pqC" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"pqF" = (
+/obj/structure/firedoor_assembly,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"pqH" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ id_tag = "virology_airlock_control";
+ name = "Virology Access Console";
+ pixel_x = 30;
+ tag_exterior_door = "virology_airlock_exterior";
+ tag_interior_door = "virology_airlock_interior"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Virology)
+"pqL" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/twomed)
+"prd" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Hardsuits"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"prh" = (
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/obj/item/towel{
+ color = "#3fc0ea";
+ name = "light blue towel";
+ pixel_x = -1;
+ pixel_y = 10
+ },
+/obj/item/towel{
+ color = "#3fc0ea";
+ name = "light blue towel";
+ pixel_x = -1;
+ pixel_y = 10
+ },
+/obj/item/towel{
+ color = "#3fc0ea";
+ name = "light blue towel";
+ pixel_x = -1;
+ pixel_y = 10
+ },
+/obj/item/towel{
+ color = "#3fc0ea";
+ name = "light blue towel";
+ pixel_x = -1;
+ pixel_y = 10
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"prw" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"prz" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"prA" = (
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"prE" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"prH" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1;
+ pixel_y = -8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"prK" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 29;
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"psd" = (
+/obj/structure/transit_tube{
+ icon_state = "D-NE"
+ },
+/turf/space,
+/area/space)
+"psl" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 25;
+ pixel_x = 4
+ },
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/item/extinguisher,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"pss" = (
+/obj/structure/stairs/spawner/east,
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"psv" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"psE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Evidence_Storage)
+"psG" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"psU" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"ptf" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"ptv" = (
+/obj/structure/lattice,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"ptN" = (
+/obj/structure/table/standard,
+/obj/machinery/reagentgrinder,
+/obj/item/stack/material/phoron{
+ amount = 5
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Xenobiology 3";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"puo" = (
+/obj/structure/stairs/spawner/east,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"puH" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"puQ" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"pva" = (
+/obj/structure/railing/overhang/bronze{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"pvb" = (
+/obj/structure/ladder/up,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"pvp" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"pvD" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/Locker_Room)
+"pvG" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"pvH" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/lattice,
+/obj/item/newspaper{
+ pixel_y = 3
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"pvQ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"pvY" = (
+/obj/structure/closet/l3closet/janitor,
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/Custodial_Office)
+"pvZ" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/stand_clear/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Robotics_Lab)
+"pwI" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodport)
+"pwK" = (
+/obj/machinery/scale,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"pwV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"pwW" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/cosmos,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm2)
+"pxf" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/lattice,
+/obj/structure/flora/pottedplant/dead,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"pxi" = (
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"pxH" = (
+/turf/simulated/mineral/cetus,
+/area/storage/primary)
+"pyc" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"pyd" = (
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"pyl" = (
+/obj/structure/closet/secure_closet/cargotech{
+ name = "mailman's locker";
+ starts_with = list(/obj/item/clothing/under/rank/mailman,/obj/item/clothing/head/mailman,/obj/item/clothing/shoes/black,/obj/item/radio/headset/cargo,/obj/item/radio/headset/alt/cargo,/obj/item/storage/bag/mail,/obj/item/destTagger)
+ },
+/obj/item/mail_scanner{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/mail_scanner{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/mail_scanner{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"pyy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"pyD" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"pyF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/disposal/wall/cleaner{
+ dir = 1;
+ name = "Resleeving lost & found bin";
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"pyN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Upper Atrium 2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"pza" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Medsci Hallway 2";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"pzb" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"pzr" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 4;
+ target_pressure = 200
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"pzt" = (
+/obj/item/material/shard,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"pzX" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/rnd/destructive_analyzer,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Research_Lab)
+"pzZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ id = "janitorbelt";
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Janitorial";
+ departmentType = 1;
+ pixel_y = 28
+ },
+/obj/structure/closet/crate,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/Custodial_Office)
+"pAa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"pAc" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"pAe" = (
+/obj/structure/table/standard,
+/obj/structure/disposalpipe/segment,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/toolbox,
+/obj/fiftyspawner/plastic,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"pAI" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Research Foyer";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer_auxiliary)
+"pBn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"pBx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"pBP" = (
+/obj/structure/closet/secure_closet/warden,
+/obj/item/personal_shield_generator/belt/security/loaded,
+/obj/item/gps/security,
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/item/handcuffs/legcuffs,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"pCo" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"pCC" = (
+/obj/effect/floor_decal/corner/beige/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"pCJ" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/random/contraband,
+/turf/simulated/floor/tiled/dark,
+/area/security/Evidence_Storage)
+"pCK" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"pCS" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"pDc" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"pDp" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "d2_near_n";
+ name = "Near Cetus - Deck 2 North"
+ },
+/turf/space,
+/area/space)
+"pDv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics Monitoring Room";
+ req_access = list(24)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/cetus/atriumdeck2)
+"pDA" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"pDE" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"pDJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"pDL" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"pDN" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/biochemistry/full,
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"pDS" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/sauna)
+"pEy" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/Resleeving)
+"pEH" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"pEJ" = (
+/obj/effect/floor_decal/carpet/corners,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Galleryf1)
+"pFh" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Robotics_Lab)
+"pFs" = (
+/obj/structure/cable{
+ icon_state = "6-10"
+ },
+/obj/structure/lattice,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/ladder/updown,
+/turf/simulated/open,
+/area/engineering/cetus/starsubstation)
+"pFx" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"pFE" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"pFN" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/zerobar)
+"pFU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"pGc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"pGt" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMDelivery"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"pGu" = (
+/obj/structure/cable{
+ icon_state = "5-9"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/machinery/meter,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"pGY" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"pHc" = (
+/obj/machinery/shield_capacitor,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"pHk" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/departure)
+"pHw" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/structure/closet/crate/hydroponics/exotic,
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"pHH" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"pHQ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"pHR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"pIk" = (
+/obj/effect/floor_decal/corner/beige/diagonal,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"pIp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"pIq" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"pIv" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"pIy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"pIL" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61";
+ dir = 1
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Wardens_Office)
+"pIS" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "evashutter";
+ name = "EVA Shutters";
+ pixel_x = 27;
+ pixel_y = -24;
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"pIW" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 2;
+ pixel_y = 9
+ },
+/obj/item/clothing/gloves/yellow{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"pJp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"pJA" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"pJG" = (
+/obj/structure/closet/acloset{
+ name = "Art supplies"
+ },
+/obj/item/storage/fancy/crayons{
+ pixel_x = 11;
+ pixel_y = -3
+ },
+/obj/item/storage/fancy/crayons{
+ pixel_x = 11;
+ pixel_y = -3
+ },
+/obj/item/storage/fancy/crayons{
+ pixel_x = 11;
+ pixel_y = -3
+ },
+/obj/item/storage/fancy/crayons{
+ pixel_x = 11;
+ pixel_y = -3
+ },
+/obj/item/storage/fancy/markers{
+ pixel_x = 11;
+ pixel_y = 6
+ },
+/obj/item/storage/fancy/markers{
+ pixel_x = 11;
+ pixel_y = 6
+ },
+/obj/item/storage/fancy/markers{
+ pixel_x = 11;
+ pixel_y = 6
+ },
+/obj/item/storage/fancy/markers{
+ pixel_x = 11;
+ pixel_y = 6
+ },
+/obj/item/tape_roll,
+/obj/item/tape_roll,
+/obj/item/tape_roll,
+/obj/item/tape_roll,
+/obj/item/taperecorder,
+/obj/item/taperecorder,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/item/hand_labeler,
+/obj/item/hand_labeler,
+/obj/item/pen/multi{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/pen/multi{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/pen/multi{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/pen/multi{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/lightpainter,
+/obj/item/lightpainter,
+/obj/item/cell/device,
+/obj/item/cell/device,
+/obj/item/cell/device,
+/obj/item/cell/device,
+/obj/item/rectape/random,
+/obj/item/rectape/random,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ name = "1E-light fixture"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"pJT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"pJX" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"pKj" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"pKq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/cetus/cetus4,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"pKP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"pKS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"pLn" = (
+/obj/machinery/pointdefense{
+ id_tag = "PD Main"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/hallway/primary/seconddeck/dockhallway)
+"pLp" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"pLC" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twostar)
+"pLI" = (
+/obj/structure/table/marble,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "vacantcomissary";
+ layer = 3.3;
+ name = "Comissary Shutters"
+ },
+/obj/item/destTagger,
+/obj/item/packageWrap,
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/comissary)
+"pLL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"pLM" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"pLQ" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"pMs" = (
+/obj/structure/table/standard,
+/obj/machinery/computer/security/telescreen/entertainment{
+ layer = 4;
+ pixel_y = -32
+ },
+/obj/item/pizzavoucher,
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"pMv" = (
+/obj/machinery/autolathe,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Robotics_Lab)
+"pMT" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/shield_diffuser,
+/obj/structure/fans/tiny,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D3)
+"pMX" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/floodlight{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"pNj" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"pNp" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/hand_labeler,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Wardens_Office)
+"pNv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/glass_security/polarized{
+ id_tint = "secbriefing";
+ name = "Briefing Room"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/briefing_room)
+"pNA" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"pNB" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"pNR" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"pNU" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61";
+ dir = 1
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Reception)
+"pNY" = (
+/obj/structure/table/standard,
+/obj/item/taperecorder,
+/obj/item/rectape/random,
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"pOa" = (
+/obj/structure/sign/directions/evac,
+/turf/simulated/wall,
+/area/crew_quarters/kitchen)
+"pOf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/cargo,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"pOt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"pOw" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/hallway/primary/central_two)
+"pOy" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"pOF" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"pOH" = (
+/obj/structure/transit_tube{
+ icon_state = "E-NW"
+ },
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"pOK" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/engineering/Engineering_Workshop)
+"pOQ" = (
+/obj/structure/table/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/item/communicator{
+ pixel_y = 3
+ },
+/obj/item/starcaster_news{
+ pixel_y = -2;
+ pixel_x = -4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"pOT" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Chemist"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"pPd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_y = -30;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"pPf" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/twofp)
+"pPn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"pPr" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/fancy,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"pPL" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"pPQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"pQd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"pQe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/monotile,
+/area/hangar/three)
+"pQk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"pQp" = (
+/obj/structure/sign/directions/medical/virology{
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/medical/Virology)
+"pQq" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"pQz" = (
+/obj/machinery/mech_recharger,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 30
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor/redgrid,
+/area/rnd/Mech_Bay)
+"pQA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light{
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"pQC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"pRs" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Internal Affairs Agent"
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"pRv" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/stamp/denied{
+ pixel_x = 5
+ },
+/obj/item/stamp/ward,
+/obj/item/pen,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Wardens_Office)
+"pRD" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"pRH" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"pSg" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"pSp" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/medical/cetus/hall)
+"pSH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobotany_Lab)
+"pSK" = (
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/jrhallway)
+"pTb" = (
+/obj/structure/cable{
+ icon_state = "2-9"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/mainsupport)
+"pTg" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"pTk" = (
+/obj/structure/table/standard,
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/toolbox,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"pTs" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/foresubstation)
+"pTF" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/item/clothing/suit/space,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window/southleft{
+ name = "Spacesuits"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva/aux)
+"pTN" = (
+/obj/structure/sign/nosmoking_2,
+/turf/simulated/wall,
+/area/hydroponics)
+"pTO" = (
+/obj/structure/bed/chair/comfy/brown,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Quartermaster"
+ },
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"pTR" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"pUe" = (
+/obj/structure/table/standard,
+/obj/item/material/knife/machete/hatchet,
+/obj/item/material/knife/machete/hatchet,
+/obj/item/material/knife/machete/hatchet,
+/obj/item/material/minihoe,
+/obj/item/material/minihoe,
+/obj/item/material/minihoe,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/storage/rollingpapers/blunt,
+/obj/item/storage/rollingpapers,
+/obj/item/storage/rollingpapers,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"pUh" = (
+/obj/structure/table/bench/standard,
+/obj/item/toy/eight_ball,
+/obj/effect/floor_decal/corner/beige/diagonal,
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"pUj" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Joint Research";
+ req_one_access = list(47, 5)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/jrhall)
+"pUl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Common Brig 5";
+ dir = 9
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Brig)
+"pUs" = (
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/obj/structure/ladder,
+/turf/simulated/open,
+/area/engineering/cetus/portsubstation)
+"pUt" = (
+/obj/machinery/computer/rcon{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"pVn" = (
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"pVv" = (
+/obj/structure/table/marble,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"pVO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"pVU" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/twojrstar)
+"pVV" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"pVW" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2,
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"pWd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1;
+ pixel_y = -8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"pWS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/librarycomp,
+/obj/structure/table/hardwoodtable,
+/obj/item/radio/intercom{
+ dir = 4;
+ pixel_x = 22
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"pXd" = (
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"pXk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"pXz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"pXK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"pYb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"pYg" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/twostar)
+"pYl" = (
+/obj/machinery/conveyor{
+ id = "disposalsorter"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"pYq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D1)
+"pZi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"pZn" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/Patient_2)
+"pZp" = (
+/obj/structure/flora/pottedplant/minitree,
+/obj/machinery/light{
+ dir = 8;
+ name = "1E-light fixture"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"pZq" = (
+/obj/structure/table,
+/obj/fiftyspawner/floor,
+/turf/simulated/floor/plating,
+/area/maintenance/zerobar)
+"pZw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Central Substation";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"pZN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/computer/timeclock/premade/west,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"pZR" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/random/trash,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"qao" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/solars)
+"qap" = (
+/obj/machinery/computer/pandemic,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/greengrid,
+/area/medical/Virology)
+"qaq" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/light/spot{
+ dir = 4;
+ pixel_x = -7
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/chief)
+"qaw" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ frequency = 1381;
+ id_tag = "arrivals_dock_north_airlock";
+ master_tag = "arrivals_dock";
+ pixel_y = 27;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"qaz" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-9"
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"qaT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"qbj" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"qbl" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/medical/Virology)
+"qbs" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"qbt" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"qbx" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"qbF" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light{
+ layer = 3
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"qbL" = (
+/obj/structure/table/standard,
+/obj/item/radio/intercom/locked/ai_private{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"qbU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"qbX" = (
+/obj/effect/floor_decal/chapel{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"qcc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/medical/medsci)
+"qce" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"qcF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/random/mob/mouse,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"qcW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small/fluorescent,
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"qcX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"qdi" = (
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"qdm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/Galleryf1)
+"qdn" = (
+/obj/machinery/account_database{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"qdM" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"qdQ" = (
+/obj/machinery/transhuman/synthprinter,
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Robotics Surgery";
+ dir = 10
+ },
+/turf/simulated/floor/bluegrid,
+/area/rnd/Robotics_Lab)
+"qdX" = (
+/obj/structure/sign/directions/pool{
+ dir = 10
+ },
+/obj/structure/sign/directions/bar{
+ pixel_y = -8;
+ dir = 10
+ },
+/obj/structure/sign/directions/dorms{
+ pixel_y = 8;
+ dir = 10
+ },
+/turf/simulated/wall,
+/area/maintenance/cetus/comissary)
+"qed" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"qex" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/black{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"qez" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"qeB" = (
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"qeH" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"qeJ" = (
+/obj/machinery/vending/coffee{
+ dir = 8;
+ pixel_x = 7
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/departure)
+"qeV" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"qeZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"qfr" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"qfs" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start{
+ name = "Head of Security"
+ },
+/obj/structure/bed/chair/comfy/red{
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ id = "HoSdoor";
+ name = "Office Door";
+ pixel_x = -36;
+ pixel_y = 29
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "security_lockdown";
+ name = "Brig Lockdown";
+ pixel_x = -36;
+ pixel_y = 39;
+ req_access = list(2)
+ },
+/obj/machinery/button/windowtint{
+ id = "hosoffice";
+ pixel_x = -26;
+ pixel_y = 30;
+ req_access = list(58)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/heads/sc/hos)
+"qft" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"qfD" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"qfS" = (
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/carpet/tealcarpet,
+/area/crew_quarters/cetus/jrlounge)
+"qgk" = (
+/obj/structure/railing,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"qgD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"qgO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 2;
+ name = "Primary Tool Storage";
+ sortType = "Primary Tool Storage"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"qgT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 1;
+ name = "Bar";
+ sortType = "Bar"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"qgW" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/form_printer{
+ pixel_x = -3;
+ pixel_y = 4
+ },
+/obj/item/defib_kit/loaded,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/medsci)
+"qhb" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"qhl" = (
+/obj/machinery/disposal/wall/cleaner{
+ dir = 1;
+ name = "Resleeving lost & found bin";
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"qhV" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"qia" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"qic" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 10;
+ pixel_y = 12
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/heads/sc/hos)
+"qik" = (
+/obj/machinery/deployable/barrier,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"qin" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/loading,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Robotics_Lab)
+"qja" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"qjn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/sleevelobby)
+"qjs" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/regular,
+/obj/item/bodybag/cryobag{
+ pixel_x = 6
+ },
+/obj/random/medical/lite,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 26;
+ dir = 4;
+ pixel_y = -12
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"qjw" = (
+/obj/machinery/computer/atmos_alert{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"qjy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/central_one)
+"qjH" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"qjP" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/civilian{
+ dir = 4;
+ c_tag = "CIV - D2 Utility Atrium 2"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"qkf" = (
+/obj/machinery/papershredder,
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"qkw" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_3)
+"qkC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"qkN" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/seconddeck/dockhallway)
+"qkQ" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/brown,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/carpet/brown,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"qkV" = (
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Locker_Room)
+"qlb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"qld" = (
+/obj/machinery/light/floortube,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"qlj" = (
+/obj/machinery/disposal/wall/cleaner{
+ dir = 1;
+ name = "Resleeving lost & found bin";
+ pixel_y = -35
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"qlD" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = -24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"qlJ" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Engineering_Workshop)
+"qmt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"qmw" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "robotoffice"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/Robotics_Lab)
+"qmV" = (
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/arrivals)
+"qmX" = (
+/obj/machinery/vending/wardrobe/chefdrobe,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"qnt" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/lobby)
+"qnv" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"qnx" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"qnP" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 1
+ },
+/obj/structure/plasticflaps/mining,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"qof" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/stand_clear/yellow,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/sleevelobby)
+"qol" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61";
+ dir = 1
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Wardens_Office)
+"qoq" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/medical/cetus/atriumd2)
+"qoz" = (
+/obj/structure/girder,
+/obj/structure/grille,
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/maintenance/cetus/mainsupport)
+"qoE" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"qoG" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/obj/machinery/rnd/production/circuit_imprinter,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Research_Lab)
+"qoS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"qpg" = (
+/obj/machinery/floodlight,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"qpv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"qpG" = (
+/obj/structure/table/steel,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"qpU" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"qqa" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"qqd" = (
+/turf/simulated/wall,
+/area/medical/Lounge)
+"qrs" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"qrI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"qrU" = (
+/obj/structure/table/standard,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/recharger,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/flashlight,
+/obj/random/flashlight,
+/turf/simulated/floor/tiled/techmaint,
+/area/storage/primary)
+"qsp" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/table/bench/glass,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"qss" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"qsD" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/cetus/hall)
+"qsG" = (
+/obj/structure/bed/chair/sofa/right/blue,
+/turf/simulated/floor/carpet/blucarpet,
+/area/hallway/secondary/entry/docking_lounge)
+"qsH" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Server_Room)
+"qsX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "holodeck_tint"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/arcadestorage)
+"qtj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"qtt" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"qtw" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"qtz" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"qtH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Monkey Pen";
+ req_access = list(39)
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Virology)
+"qun" = (
+/obj/machinery/door/airlock{
+ name = "Service Closet";
+ req_one_access = list(25, 26, 27, 28, 37, 38, 72)
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/servicecloset)
+"qur" = (
+/obj/structure/closet/secure_closet/explorer,
+/obj/item/cataloguer,
+/obj/item/melee/umbrella/random,
+/obj/item/binoculars,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explofoyer)
+"quA" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"quG" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - HoS' Stairwell";
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/hos)
+"qvi" = (
+/obj/structure/transit_tube{
+ icon_state = "S-NW"
+ },
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"qvC" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"qvH" = (
+/obj/structure/railing,
+/turf/simulated/open,
+/area/security/Brig)
+"qvU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"qwg" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"qwi" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"qwr" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/central_one)
+"qwE" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_2)
+"qwH" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"qwJ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"qwK" = (
+/obj/structure/table/woodentable,
+/obj/item/paper_bin,
+/obj/item/pen/invisible,
+/obj/item/pen/multi,
+/obj/machinery/alarm{
+ pixel_y = -25;
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"qwT" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"qxe" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/zerobar)
+"qxj" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"qxu" = (
+/obj/structure/ladder/up,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"qxx" = (
+/turf/space,
+/area/shuttle/arrival/station)
+"qxI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"qyt" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"qyx" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"qyy" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"qyN" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/atrium/primary)
+"qyZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/Chapel_Office)
+"qzf" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"qzl" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"qzv" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"qzA" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills{
+ pixel_y = 4
+ },
+/obj/item/gps/security/hos,
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/heads/sc/hos)
+"qzO" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Hardsuits";
+ req_access = list(1)
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"qzU" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"qAa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/cetus/cetus6,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"qAm" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/arcadestorage)
+"qAM" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/magnetic_controller{
+ autolink = 1
+ },
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/glasses/sunglasses{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/glasses/sunglasses{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/tool/screwdriver,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Firing_Range)
+"qAY" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/Chapel_Office)
+"qBe" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"qBf" = (
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/random/soap,
+/obj/structure/curtain/open/shower,
+/obj/structure/window/basic,
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"qBg" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"qBl" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "hop_office_desk";
+ name = "HoP Office Privacy Shutters";
+ opacity = 0
+ },
+/obj/structure/noticeboard{
+ pixel_x = 32
+ },
+/obj/machinery/door/window/brigdoor/northleft{
+ req_access = list(57);
+ name = "Head of Personnel's Desk"
+ },
+/obj/machinery/door/window/southleft{
+ name = "Reception Window"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"qBv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"qBL" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"qBO" = (
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"qBU" = (
+/obj/structure/sign/directions/security/seceqp{
+ pixel_y = 12;
+ dir = 5
+ },
+/obj/structure/sign/directions/security/interrogation{
+ dir = 8
+ },
+/obj/structure/sign/directions/security/armory{
+ dir = 8;
+ pixel_y = 6
+ },
+/obj/structure/sign/directions/security/forensics{
+ pixel_y = -6;
+ dir = 8
+ },
+/obj/structure/sign/directions/security/internal_affairs{
+ pixel_y = -12
+ },
+/turf/simulated/wall/r_wall,
+/area/security/Wardens_Office)
+"qBZ" = (
+/obj/structure/flora/ausbushes/ppflowers,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"qCn" = (
+/turf/simulated/wall/r_wall,
+/area/medical/medsci)
+"qCs" = (
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/obj/random/cutout,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"qDa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"qDf" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/item/extinguisher,
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 25;
+ pixel_x = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"qDi" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"qDw" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/random/obstruction,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"qDQ" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8;
+ name = "Isolation to Waste"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"qDU" = (
+/obj/structure/closet/lasertag/red,
+/obj/item/stack/flag/red,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/arcadestorage)
+"qEj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"qEu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/random/trash,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"qEF" = (
+/obj/machinery/disposal/wall/cleaner{
+ dir = 1;
+ name = "Resleeving lost & found bin";
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"qER" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"qEV" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/obj/machinery/door/window/eastleft{
+ name = "Engineering Suits";
+ req_access = list(11)
+ },
+/obj/item/clothing/suit/space/void/engineering/alt,
+/obj/item/clothing/head/helmet/space/void/engineering/alt,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"qEZ" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"qFa" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/shield_diffuser,
+/obj/machinery/access_button{
+ name = "exterior access button";
+ pixel_x = 32;
+ pixel_y = -10
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D3)
+"qFt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/arrivals)
+"qFv" = (
+/obj/structure/table/glass,
+/obj/structure/bedsheetbin,
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"qFB" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"qFE" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"qFI" = (
+/turf/simulated/wall/r_wall,
+/area/teleporter/departure)
+"qGs" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"qGA" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/smartfridge/produce,
+/turf/simulated/floor/plating,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"qGI" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/Gym)
+"qGJ" = (
+/obj/structure/railing/overhang/grey,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"qGP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"qGT" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"qHk" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"qHq" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D1)
+"qHL" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"qHO" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"qHR" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"qHW" = (
+/turf/simulated/wall,
+/area/medical/reception)
+"qIl" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"qIL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"qIO" = (
+/obj/structure/disposalpipe/trunk,
+/obj/structure/disposaloutlet{
+ dir = 4;
+ layer = 3.3
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"qJk" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ id_tag = "HoSdoor";
+ name = "Head of Security Quarters";
+ req_access = list(58);
+ req_one_access = null
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/heads/sc/hos)
+"qJy" = (
+/turf/simulated/wall/r_lead,
+/area/asteroid/cetus/d2)
+"qJI" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ pressure_checks = 0;
+ pressure_checks_default = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/sauna)
+"qJJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"qJN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"qJP" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"qJS" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"qJV" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/item/reagent_containers/food/condiment/enzyme,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"qKu" = (
+/turf/simulated/wall/r_wall,
+/area/security/Firing_Range)
+"qKJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"qKR" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"qKU" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"qLv" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"qLy" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/auxsupport)
+"qLA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ name = "E.V.A.";
+ req_access = list(18);
+ req_one_access = list(18)
+ },
+/turf/simulated/floor/plating,
+/area/ai_monitored/storage/eva)
+"qLC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"qLN" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"qLU" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"qLZ" = (
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Containment Pen";
+ req_access = list(47)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobio6station";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobiology_Lab)
+"qMj" = (
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -37
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Locker_Room)
+"qMk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"qMs" = (
+/obj/structure/table/rack,
+/obj/random/soap{
+ pixel_y = 7
+ },
+/obj/random/soap{
+ pixel_y = 4
+ },
+/obj/random/soap,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"qMz" = (
+/obj/effect/floor_decal/rust,
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"qNb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"qNk" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/structure/disposalpipe/junction,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"qNq" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall,
+/area/medical/EMT_Bay)
+"qNB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Expedition Shuttle";
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/seconddeck/dockhallway)
+"qOc" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"qOq" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"qPe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"qPf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"qPj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/power/terminal,
+/obj/structure/cable,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"qPv" = (
+/obj/structure/bed/chair,
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Autoresleeving)
+"qPF" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"qPG" = (
+/obj/effect/shuttle_landmark/southern_cross/supply_station,
+/turf/space,
+/area/space)
+"qPP" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/corner/black/bordercorner,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"qPQ" = (
+/turf/simulated/floor/reinforced,
+/area/hangar/three)
+"qPU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"qQb" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/Locker_Room)
+"qQf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"qQS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"qRh" = (
+/obj/random/plushielarge,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"qRk" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/sauna)
+"qRp" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"qRV" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"qRZ" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"qSA" = (
+/obj/item/clothing/suit/space/skrell/white,
+/obj/item/clothing/head/helmet/space/skrell/white,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/mask/breath,
+/obj/machinery/door/window/northleft{
+ req_one_access = list(18);
+ name = "E.V.A."
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"qSX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ name = "Patient Room C"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Patient_3)
+"qTb" = (
+/obj/machinery/recycling/stamper,
+/obj/machinery/conveyor{
+ id = "disposalsorter"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"qTz" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"qTA" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"qUb" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ name = "Morgue Delivery Chute";
+ color = "green";
+ pixel_x = 33
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"qUe" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"qUg" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "EngineBlast";
+ name = "Engine Monitoring Room Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/asteroid/cetus/d2)
+"qUT" = (
+/obj/structure/sign/warning/radioactive{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"qVO" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"qVQ" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/cafeteriaf2)
+"qWa" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"qWi" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"qWs" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/embedded_controller/radio/airlock/access_controller{
+ id_tag = "SC-ALCvirology";
+ name = "Virology Access Console";
+ tag_exterior_door = "virology_airlock_exterior";
+ tag_interior_door = "virology_airlock_interior";
+ dir = 1;
+ pixel_y = -23
+ },
+/obj/structure/closet/l3closet/virology,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"qWu" = (
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"qWw" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"qWC" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"qWD" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"qWT" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"qWV" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"qXe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"qXm" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/tech)
+"qXF" = (
+/obj/structure/transit_tube/station{
+ dir = 1
+ },
+/turf/simulated/floor/greengrid,
+/area/crew_quarters/cetus/jrhallway)
+"qYn" = (
+/obj/machinery/atmospherics/binary/passive_gate{
+ regulate_mode = 0;
+ unlocked = 1
+ },
+/obj/structure/lattice,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"qYw" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"qYz" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/Recycling)
+"qYF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the divider between pens.";
+ id = "xenobioout7station";
+ name = "Containment Divider Switch";
+ req_access = list(55);
+ pixel_y = 3;
+ dir = 8
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 33
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"qYO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"qYQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/maintenance/cetus/mainsupport)
+"qYT" = (
+/obj/machinery/flasher{
+ pixel_x = -27;
+ id = "geneflash"
+ },
+/mob/living/carbon/human/monkey,
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Genetics_Lab)
+"qZd" = (
+/obj/machinery/seed_storage/xenobotany,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"qZA" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"qZG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"qZR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/vehicle/train/engine/janicart,
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"qZU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"rab" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"rav" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/station_map{
+ dir = 4;
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"raG" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"raP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ name = "Patient Room A"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Patient_1)
+"raV" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/table/standard,
+/obj/item/tabloid,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"rbW" = (
+/obj/structure/ladder,
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/solars)
+"rcd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/research{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "xenostation_airlock_interior";
+ locked = 1;
+ name = "Xenobiology Internal Airlock";
+ req_access = list(55)
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "xenostation_airlock_control";
+ name = "Xenobiology Access Button";
+ pixel_x = -26;
+ pixel_y = 6;
+ req_access = list(55)
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/Xenobiology_Lab)
+"rcs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"rcM" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/expoutpost/station)
+"rdc" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Lobby";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/Reception)
+"rdd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"rdh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"rds" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Locker_Room)
+"rdz" = (
+/obj/structure/table/woodentable,
+/obj/item/material/kitchen/utensil/spoon{
+ pixel_x = 2
+ },
+/obj/item/material/kitchen/utensil/fork,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"rdD" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"rdF" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "BrigFoyer";
+ layer = 2.8;
+ name = "Security Wing";
+ req_access = list(63);
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Reception)
+"rdR" = (
+/obj/structure/table/glass,
+/obj/item/paper_bin,
+/obj/item/folder/yellow,
+/obj/item/pen/blue{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/item/pen/red{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/item/pen,
+/turf/simulated/floor/carpet/blucarpet,
+/area/hallway/secondary/entry/docking_lounge)
+"reh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/central_four)
+"rej" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/blast/regular{
+ id = "Cell 3";
+ name = "Cell 3 Door"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"rev" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/cargo,
+/obj/random/tool,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"rey" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"rez" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"reC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"reO" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"reU" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/medical/EMT_Bay)
+"reV" = (
+/obj/structure/stairs/spawner/east,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"rfj" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"rfn" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"rfv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"rfU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"rgv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/random/pottedplant,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"rgL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"rgM" = (
+/obj/structure/table/woodentable,
+/obj/item/material/kitchen/utensil/spoon{
+ pixel_x = 2
+ },
+/obj/item/material/kitchen/utensil/fork,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"rhd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_command{
+ name = "E.V.A.";
+ req_one_access = list(18)
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_monitored/storage/eva)
+"rhg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"rht" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/medical/Virology)
+"rhC" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2,
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"rhH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"rhI" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/pack/cardemon{
+ pixel_x = -8;
+ pixel_y = 10
+ },
+/obj/item/pack/cardemon{
+ pixel_x = 10;
+ pixel_y = 10
+ },
+/obj/item/pack/cardemon{
+ pixel_x = 1;
+ pixel_y = 10
+ },
+/obj/item/pack/cardemon{
+ pixel_x = -8;
+ pixel_y = 7
+ },
+/obj/item/pack/cardemon{
+ pixel_x = 10;
+ pixel_y = 7
+ },
+/obj/item/pack/cardemon{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/item/pack/cardemon{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/pack/cardemon{
+ pixel_x = 10;
+ pixel_y = 4
+ },
+/obj/item/pack/cardemon{
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/obj/item/pack/cardemon{
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/item/pack/cardemon{
+ pixel_x = -8;
+ pixel_y = 1
+ },
+/obj/item/pack/cardemon{
+ pixel_x = 10;
+ pixel_y = 1
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"rhU" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Librarian"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"ria" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"rie" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"rii" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = -30
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"rij" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"rim" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"rix" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"riD" = (
+/obj/structure/closet/secure_closet/explorer,
+/obj/item/cataloguer,
+/obj/item/melee/umbrella/random,
+/obj/item/binoculars,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explofoyer)
+"riI" = (
+/obj/structure/stairs/spawner/east,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"riL" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"riM" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"riN" = (
+/obj/machinery/suit_cycler/engineering,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"riZ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/light/spot{
+ pixel_y = 6
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/heads/sc/chief)
+"rjc" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - R&D Lab"
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 30;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"rjd" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"rjp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"rjs" = (
+/obj/machinery/floodlight{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"rjA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Evidence Storage";
+ req_access = list(63);
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Processing_Room)
+"rjD" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/storage/primary)
+"rkn" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/cetus/cetus7,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"rkp" = (
+/obj/structure/table/standard,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Processing";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"rkt" = (
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"rkA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"rkP" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"rlc" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"rlk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_research{
+ name = "Joint Research"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/cetus/hall)
+"rlr" = (
+/turf/simulated/floor/tiled/white,
+/area/medical/Locker_Room)
+"rls" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"rlt" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/emblem/nt1,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"rlE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"rlF" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"rlM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"rlS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"rlV" = (
+/turf/simulated/wall/r_wall,
+/area/quartermaster/storage)
+"rmc" = (
+/obj/structure/table/steel,
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/toolbox,
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"rmA" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"rmL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"rnu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"rnC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"rnE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"rnF" = (
+/obj/structure/closet/emcloset,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/docklock)
+"rnJ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/arrivals)
+"rnL" = (
+/obj/structure/table/marble,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "vacantcomissary";
+ layer = 3.3;
+ name = "Comissary Shutters"
+ },
+/obj/item/capture_crystal,
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/comissary)
+"rnR" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"rof" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"rou" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Arrivals Lounge"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/docking_lounge)
+"rov" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"roJ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"roY" = (
+/obj/structure/table/bench/wooden,
+/obj/structure/flora/pottedplant/tropical{
+ pixel_y = 11
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"rpc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/jrhallway)
+"rpx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"rpC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"rpD" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"rpJ" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"rpR" = (
+/obj/structure/table/standard,
+/obj/item/folder,
+/obj/item/folder/blue,
+/obj/item/folder/red,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"rpW" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"rqD" = (
+/obj/machinery/seed_storage/garden,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"rqH" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/form_printer,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"rqY" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"rrI" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"rst" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ anchored = 0;
+ department = "Internal Affairs"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Internal_Affairs_Office)
+"rsC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"rtd" = (
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/smes/buildable/max_charge{
+ RCon_tag = "Substation - Fore"
+ },
+/obj/item/smes_coil,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"rtf" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"rtg" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Firing_Range)
+"rti" = (
+/obj/structure/loot_pile/surface/medicine_cabinet/fresh{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/closet/crate,
+/obj/item/clothing/shoes/syndigaloshes,
+/obj/random/unidentified_medicine/drug_den,
+/obj/random/unidentified_medicine/drug_den,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"rtl" = (
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/lobby)
+"rtv" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/sc/hor)
+"rtM" = (
+/obj/item/stool/padded{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Port Pod Lounge";
+ pixel_x = -1;
+ dir = 10
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{
+ frequency = 1381;
+ id_tag = "escape_pod_1_berth";
+ pixel_x = -25;
+ tag_door = "escape_pod_1_berth_hatch";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodport)
+"ruI" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/tool/crowbar,
+/obj/item/tool/crowbar/red,
+/obj/item/multitool{
+ pixel_x = 5
+ },
+/obj/item/t_scanner,
+/obj/item/tool/wrench,
+/turf/simulated/floor/tiled,
+/area/engineering/Engineering_Workshop)
+"ruK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"ruV" = (
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"ruX" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/EMT_Bay)
+"ruZ" = (
+/obj/structure/lattice,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"rvi" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/item/multitool,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"rvl" = (
+/obj/effect/wingrille_spawn/reinforced/polarized,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/quartermaster/QM_Office)
+"rvp" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/Xenobiology_Lab)
+"rvw" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"rvH" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"rvW" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/medsci)
+"rwJ" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"rwN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "library_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/Libraryf1)
+"rxb" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 2;
+ icon_state = "pdoor0";
+ id = "xenobio3station";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"rxk" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"rxt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"ryf" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/gps/security,
+/obj/item/radio,
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/item/handcuffs/legcuffs,
+/obj/item/clothing/under/swimsuit/fluff/security,
+/turf/simulated/floor/tiled/dark,
+/area/security/Locker_Room)
+"ryE" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"rzb" = (
+/obj/structure/toilet/item{
+ dir = 1
+ },
+/obj/item/bikehorn/rubberducky/pink,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"rze" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/obj/machinery/meter,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"rzX" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"rAd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"rAo" = (
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/lobby)
+"rAw" = (
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Engineering_Workshop)
+"rAD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 26;
+ dir = 4;
+ pixel_y = -12
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"rAG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/janitorialcart,
+/obj/structure/mopbucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/mop,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"rAP" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/stand_clear/yellow{
+ pixel_y = -3
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/storage/primary)
+"rAS" = (
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"rBa" = (
+/obj/item/modular_computer/console/preset/engineering{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"rBA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner/black{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"rBH" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"rBN" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/sc/hop)
+"rCd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/security{
+ name = "Security Locker Room";
+ req_access = list(1);
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/Locker_Room)
+"rCg" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Firing_Range)
+"rCo" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrlounge)
+"rCH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"rDd" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "exp_sling_hatch";
+ locked = 1;
+ name = "Carrier Sling Hatch";
+ req_access = list();
+ req_one_access = list(5,43,67)
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/expoutpost/station)
+"rDJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"rDM" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"rDR" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Chemist"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"rDT" = (
+/obj/machinery/papershredder,
+/turf/simulated/floor/tiled,
+/area/security/Internal_Affairs_Office)
+"rEc" = (
+/obj/structure/table/reinforced,
+/obj/item/hand_labeler,
+/obj/item/packageWrap,
+/obj/item/tape_roll,
+/obj/machinery/requests_console{
+ department = "Engineering";
+ departmentType = 3;
+ name = "Engineering RC";
+ pixel_x = 29
+ },
+/obj/item/destTagger{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"rEs" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"rEK" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"rEN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"rER" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Upper Atrium 4";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"rFa" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hydroponics)
+"rFd" = (
+/obj/structure/table/steel,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"rFf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Server_Room)
+"rFk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/table/steel,
+/obj/item/electronic_assembly/large{
+ pixel_y = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"rFl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"rFo" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"rFt" = (
+/obj/structure/railing/grey,
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "6-10"
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twostar)
+"rFM" = (
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"rFP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/item/radio/intercom/locked/confessional{
+ dir = 8;
+ pixel_x = -25
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/Chapel_Office)
+"rFT" = (
+/obj/structure/stairs/spawner/south,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"rGs" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"rGt" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"rGK" = (
+/obj/structure/flora/pottedplant/small,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/status_display/supply_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"rGQ" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"rHa" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Joint Research Subgrid";
+ name_tag = "Joint Research Subgrid"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"rHb" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad2"
+ },
+/obj/structure/closet/crate,
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/storage)
+"rHe" = (
+/obj/structure/stairs/spawner/east,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"rHh" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/boxing/gym,
+/area/crew_quarters/Gym)
+"rHl" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/escapepodport)
+"rHy" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"rHA" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/arrivals)
+"rHK" = (
+/obj/machinery/autolathe,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"rIa" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"rIA" = (
+/obj/structure/bed/chair/sofa/blue,
+/turf/simulated/floor/carpet/blucarpet,
+/area/hallway/primary/seconddeck/dockhallway)
+"rIR" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"rJe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/central_four)
+"rJo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"rJp" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "EMT Bay";
+ req_access = list(5);
+ dir = 2
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/EMT_Bay)
+"rJr" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/holowarrants{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/storage/box/holowarrants{
+ pixel_y = -1
+ },
+/turf/simulated/floor/carpet,
+/area/security/briefing_room)
+"rJu" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/flashlight/lamp/green,
+/obj/machinery/light/small,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"rJx" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Head of Personnel's Office"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"rJy" = (
+/obj/machinery/appliance/mixer/cereal,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"rJV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"rJZ" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/sc/hos)
+"rKh" = (
+/obj/random/junk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"rKo" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "Gym";
+ sortType = "Gym"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"rKy" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"rKZ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Paramedic"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/EMT_Bay)
+"rLw" = (
+/obj/structure/railing,
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/effect/mist,
+/turf/simulated/floor/water/hotspring,
+/area/crew_quarters/sauna)
+"rLA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"rLJ" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"rMj" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"rMo" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"rMJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"rMK" = (
+/obj/structure/closet/secure_closet/scientist,
+/obj/item/gps/science,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/clothing/under/swimsuit/fluff/science,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"rMU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"rMY" = (
+/obj/machinery/door/window/brigdoor/eastright{
+ name = "Containment Pen";
+ req_access = list(47)
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobio4station";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobiology_Lab)
+"rNK" = (
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"rNQ" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/departure)
+"rOd" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"rOg" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Central Ring 1";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"rOt" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"rOy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"rOC" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/shield_diffuser,
+/obj/machinery/access_button{
+ name = "exterior access button";
+ pixel_x = 32;
+ pixel_y = -10
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D1)
+"rOH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"rOO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/loot_pile/surface/medicine_cabinet{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"rOX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"rPi" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hottubtint"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/sauna)
+"rPs" = (
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = -26
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"rPA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/structure/closet/firecloset,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"rPK" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 2;
+ name = "Resleevers";
+ sortType = "Resleevers"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Arrivals Hallway 3";
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"rPS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"rPZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"rQa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"rQA" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/sign/directions/medical{
+ dir = 10;
+ pixel_x = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/jrhallway)
+"rQC" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/medical/Virology)
+"rQH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_one)
+"rQL" = (
+/obj/structure/lattice,
+/obj/structure/railing/grey,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"rRe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"rRj" = (
+/obj/structure/target_stake,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/plating,
+/area/security/Firing_Range)
+"rRs" = (
+/mob/living/simple_mob/animal/passive/dog/corgi/Ian,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/hop)
+"rRw" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"rRC" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"rRF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"rRG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "robotoffice"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Robotics_Lab)
+"rRZ" = (
+/obj/machinery/door/window/southleft{
+ name = "Lost and Found"
+ },
+/obj/structure/table/rack/shelf/steel{
+ pixel_y = 3
+ },
+/obj/structure/curtain/black,
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 8
+ },
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"rSb" = (
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"rSi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light/spot{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"rSB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"rSN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/space_heater,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"rSX" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Galleryf1)
+"rTj" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D2)
+"rTz" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/Gym)
+"rUn" = (
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/item/storage/box/nifsofts_medical,
+/obj/item/backup_implanter{
+ pixel_y = -6
+ },
+/obj/item/backup_implanter,
+/obj/item/backup_implanter{
+ pixel_y = 6
+ },
+/obj/item/backup_implanter{
+ pixel_y = 12
+ },
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"rUx" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Research Director's Office"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/heads/sc/hor)
+"rUB" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/medical/Virology)
+"rUK" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Auto Resleever Lobby";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Autoresleeving)
+"rUM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-6"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"rUR" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Kitchen Maintenance";
+ req_access = list(28)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/crew_quarters/kitchen)
+"rVc" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"rVd" = (
+/turf/simulated/wall/r_wall,
+/area/storage/primary)
+"rVk" = (
+/obj/structure/table/marble,
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/machinery/cash_register/civilian,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"rVB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/random/tool,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"rVD" = (
+/obj/machinery/seed_extractor,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"rVJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"rVR" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"rVS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"rWh" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"rWu" = (
+/obj/machinery/door/airlock/security{
+ name = "Warden's Office";
+ req_access = list(3);
+ req_one_access = null
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Wardens_Office)
+"rWx" = (
+/obj/structure/table/woodentable,
+/obj/machinery/computer/med_data/laptop{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"rXa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"rXy" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"rXD" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61";
+ dir = 10
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Wardens_Office)
+"rXE" = (
+/obj/structure/sign/directions/shuttle_bay{
+ name = "\improper Exploration Shuttle Bay";
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/hangar/three)
+"rXI" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = 7;
+ pixel_y = -27
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"rXM" = (
+/turf/simulated/mineral/cetus,
+/area/engineering/Breakroom)
+"rXO" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"rYd" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"rYe" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"rYu" = (
+/obj/effect/floor_decal/corner/purple{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"rYw" = (
+/obj/effect/floor_decal/asteroid,
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twoap)
+"rYB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"rYE" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"rYS" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"rZd" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"rZe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"rZg" = (
+/obj/machinery/computer/security/engineering{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"rZP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"saf" = (
+/obj/machinery/door_timer/cell_3{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"saD" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"saT" = (
+/obj/machinery/computer/scan_consolenew,
+/turf/simulated/floor/bluegrid,
+/area/medical/Genetics_Lab)
+"sbA" = (
+/obj/machinery/keycard_auth{
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"sbE" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"sbU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_four)
+"sbZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - JR Public Hallway 2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"scc" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/reagent_containers/glass/bucket,
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"sce" = (
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/departure)
+"sco" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"scp" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Robotics_Lab)
+"scz" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/tape_roll,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 6;
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"scT" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"scV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"scZ" = (
+/obj/machinery/vending/loadout/clothing,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"sdi" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"sdw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"sdx" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/disposalpipe/tagger{
+ name = "Morgue";
+ sort_tag = "Morgue"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"sdE" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"sdN" = (
+/obj/effect/mist,
+/turf/simulated/floor/water/hotspring,
+/area/crew_quarters/sauna)
+"sea" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "Space Dump";
+ sortType = "Space"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"sei" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"sek" = (
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/structure/table/steel,
+/obj/item/storage/box/mousetraps,
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed,
+/obj/item/reagent_containers/spray/cleaner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"sep" = (
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/expoutpost/station)
+"seW" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"sfg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Joint Research";
+ req_one_access = list(47, 5)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/jrhallway)
+"sfq" = (
+/obj/structure/sign/directions/science{
+ pixel_y = -11;
+ name = "Joint Research Public Entry";
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/Galleryf1)
+"sfE" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/heads/sc/hos)
+"sfN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"sgd" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Research Hallway 2";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"sgp" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"sgq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"sgx" = (
+/obj/structure/bookcase/manuals/medical,
+/obj/item/book/manual/chemistry_guide,
+/obj/item/book/manual/resleeving,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"sgA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"sgB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"sgQ" = (
+/obj/structure/table/steel,
+/obj/item/integrated_circuit_printer,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"shh" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/random/trash_pile,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"shj" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/camera/network/civilian{
+ dir = 10;
+ c_tag = "CIV - D2 Utility Atrium 1"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"shq" = (
+/obj/structure/table/steel,
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/item/destTagger{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/item/packageWrap,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"shu" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/effect/floor_decal/cetus/cetus9,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"shE" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"shF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"shJ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"sic" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"siH" = (
+/obj/structure/railing,
+/obj/effect/mist,
+/turf/simulated/floor/water/hotspring,
+/area/crew_quarters/sauna)
+"siM" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"siN" = (
+/obj/machinery/door_timer/cell_4{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"siO" = (
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"siX" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/computer/timeclock/premade/south,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"sjy" = (
+/obj/structure/sign/directions/evac{
+ dir = 6
+ },
+/turf/simulated/wall/r_wall,
+/area/security/checkpoint2)
+"sjE" = (
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/structure/table/rack,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"sjH" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"sjX" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 26;
+ dir = 4;
+ pixel_y = -12
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"skm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"skq" = (
+/obj/structure/bed/chair,
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"sku" = (
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"skz" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"skB" = (
+/obj/machinery/computer/rdservercontrol{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Server_Room)
+"skG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"skJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"skP" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Main Stairwell";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"sls" = (
+/obj/structure/filingcabinet/chestdrawer{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"slt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"slB" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva/aux)
+"slV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"smf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"smD" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/photocopier,
+/obj/structure/cable/green{
+ icon_state = "1-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"smL" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/mask/breath,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/security,
+/obj/machinery/door/window/westleft{
+ name = "Security Hardsuits";
+ req_one_access = list(1)
+ },
+/obj/item/clothing/head/helmet/space/void/security,
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"smR" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - EMT Bay";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/EMT_Bay)
+"smU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"smV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"snc" = (
+/obj/machinery/doorbell_chime{
+ id_tag = "sc-ChimeMed";
+ name = "Medbay doorbell chime"
+ },
+/turf/simulated/wall/r_wall,
+/area/medical/Surgery_Viewing)
+"snh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Dock"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/seconddeck/dockhallway)
+"snp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva/aux)
+"snt" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/Recycling)
+"snx" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ pixel_y = 34
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/Genetics_Lab)
+"snK" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/fans/tiny,
+/obj/machinery/atmospherics/unary/heater/sauna{
+ dir = 1;
+ icon_state = "heater_1";
+ use_power = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/sauna)
+"snN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"snS" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"snX" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"sof" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"sog" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Dock 3 Hallway 1";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"soo" = (
+/obj/machinery/suit_cycler/medical,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/EMT_Bay)
+"sow" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/item/stack/material/copper{
+ amount = 25
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/clothing/glasses/welding,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"soy" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"soU" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"spa" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Primary Stairwell";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"spd" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"spe" = (
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/blast/regular{
+ desc = "By gods, release the hounds!";
+ id = "xenobiostationext3";
+ name = "Containment Release"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"spJ" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"spP" = (
+/obj/machinery/door/window/southleft{
+ name = "Library Desk Door";
+ req_access = list(37)
+ },
+/obj/effect/floor_decal/carpet,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"sqb" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"sqm" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"sqs" = (
+/obj/structure/sign/directions/evac{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/medical/Autoresleeving)
+"sqz" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"sqV" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/Storage)
+"srk" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"srp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Brig)
+"srI" = (
+/obj/structure/sign/directions/engineering/reactor{
+ pixel_y = -12;
+ dir = 5
+ },
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/atriumdeck2)
+"srQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"ssb" = (
+/turf/simulated/open,
+/area/hangar/three)
+"ssi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Escape Pod"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/escapepodport)
+"ssp" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/medical/cetus/atriumd2)
+"ssA" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/body_record_disk,
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"ssO" = (
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/security/Restroom)
+"ssR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/Chemistry)
+"ssV" = (
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"ssZ" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"stb" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"ste" = (
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"stn" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hottubtint"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/sauna)
+"stx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"sty" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/mainsupport)
+"stz" = (
+/obj/random/trash,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"stW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light{
+ layer = 3
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"suB" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"suI" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"suJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"suL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - JR Public Hallway 1"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"svt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explofoyer)
+"svA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"svD" = (
+/obj/structure/closet/wardrobe/orange,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"svQ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"svX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/random/obstruction,
+/turf/simulated/floor/tiled/techmaint,
+/area/maintenance/cetus/twoap)
+"swi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"sws" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"swN" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"swS" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"swX" = (
+/obj/structure/table/rack,
+/obj/item/storage/belt/medical,
+/obj/item/storage/belt/medical,
+/obj/item/storage/belt/medical,
+/obj/item/storage/belt/medical,
+/obj/item/storage/belt/medical,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/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/item/clothing/glasses/hud/health,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Locker Room";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Locker_Room)
+"swZ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"sxj" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"sxn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"sxv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"sxK" = (
+/obj/machinery/pointdefense{
+ id_tag = "PD Main"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/hallway/secondary/entry/D1)
+"sxQ" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"syf" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "16-0"
+ },
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"syl" = (
+/obj/structure/table/standard,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/hand_labeler,
+/obj/item/pen,
+/obj/item/pen/red,
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"syn" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/space,
+/area/space)
+"syw" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"syJ" = (
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"syQ" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"szw" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Mech_Bay)
+"szF" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"szG" = (
+/obj/structure/sign/directions/cargo{
+ pixel_y = 5;
+ dir = 4
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4;
+ pixel_y = 11
+ },
+/obj/structure/sign/directions/science/exploration{
+ dir = 4;
+ pixel_y = -1
+ },
+/obj/structure/sign/directions/evac{
+ pixel_y = -7;
+ dir = 10
+ },
+/turf/simulated/wall,
+/area/crew_quarters/cetus/arcadestorage)
+"szL" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/Reception)
+"sBa" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"sBx" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"sBO" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"sCc" = (
+/obj/machinery/requests_console{
+ department = "EVA";
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"sCf" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/cafeteriaf2)
+"sCg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"sCl" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"sCm" = (
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -29;
+ dir = 4;
+ pixel_y = -7
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"sCr" = (
+/obj/machinery/computer/arcade{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/arcadestorage)
+"sCA" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"sCI" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/heads/sc/hor)
+"sCZ" = (
+/obj/machinery/recycling/sorter,
+/obj/machinery/conveyor{
+ id = "disposalsorter"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"sDf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"sDr" = (
+/obj/machinery/vending/fitness{
+ dir = 4;
+ pixel_x = -8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/departure)
+"sDz" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"sDA" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/Robotics_Lab)
+"sEi" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"sEk" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"sEo" = (
+/turf/simulated/mineral/cetus,
+/area/engineering/cetus/atriumdeck2)
+"sEM" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"sEX" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/stamp{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stamp/cargo,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"sFa" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"sFd" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"sFl" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"sGb" = (
+/obj/structure/table/steel,
+/obj/machinery/recharger,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"sGf" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"sGC" = (
+/obj/structure/bed/chair,
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"sGG" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/arrivals)
+"sGK" = (
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"sGO" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"sGV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"sGW" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_1)
+"sHi" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - JR Hallway 1";
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"sHM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer_auxiliary)
+"sIg" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"sIr" = (
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/lattice,
+/obj/machinery/maint_vendor,
+/obj/effect/recycler_vendor_beacon,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"sIu" = (
+/turf/simulated/wall/r_wall,
+/area/security/detectives_office)
+"sIv" = (
+/obj/structure/table/rack,
+/obj/item/suit_cooling_unit,
+/obj/item/suit_cooling_unit,
+/obj/item/tank/emergency/phoron/double,
+/obj/item/tank/emergency/phoron/double,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva/aux)
+"sIz" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Central Ring 5";
+ dir = 10
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"sII" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ name = "Patient Room B"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Patient_2)
+"sIR" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/junction/yjunction,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/cetus/jointsubstation)
+"sJh" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_foyer_auxiliary)
+"sJu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"sKf" = (
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"sKq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"sKv" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"sLj" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"sLl" = (
+/obj/item/gps/engineering,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/item/pickaxe/drill,
+/obj/item/clothing/under/swimsuit/fluff/engineering,
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"sLo" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/Holodeck)
+"sLN" = (
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"sLU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"sMk" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/hall)
+"sMy" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Evidence_Storage)
+"sMJ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"sMU" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/item/stool/padded,
+/obj/item/clothing/gloves/boxing,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/boxing,
+/area/crew_quarters/Gym)
+"sMZ" = (
+/turf/simulated/wall,
+/area/medical/Autoresleeving)
+"sNa" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/structure/table/marble,
+/obj/machinery/reagentgrinder,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"sNh" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"sNs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"sNC" = (
+/turf/simulated/mineral/cetus/edge,
+/area/maintenance/cetus/twoap)
+"sNZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/janitorialcart,
+/obj/structure/mopbucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/mop,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/Custodial_Office)
+"sOg" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"sOu" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/Gym)
+"sOy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"sOz" = (
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Containment Pen";
+ req_access = list(47)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobiology_Lab)
+"sOF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"sPp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"sPL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"sPZ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"sQo" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/transit_tube{
+ icon_state = "N-S-Pass"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"sQw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"sQA" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"sQB" = (
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twojrport)
+"sQG" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"sQH" = (
+/obj/structure/bookcase{
+ name = "bookcase (Librarian's Choice)"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf1)
+"sQQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/EMT_Bay)
+"sQZ" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"sRa" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"sRn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"sRz" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"sRD" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"sRG" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"sRJ" = (
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/table/standard,
+/obj/item/gene_scanner{
+ pixel_y = 4;
+ pixel_x = -3
+ },
+/obj/item/gene_scanner{
+ pixel_y = -1;
+ pixel_x = 3
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"sRL" = (
+/obj/item/stool/padded{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/zerobar)
+"sSi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"sSj" = (
+/obj/machinery/door_timer/cell_1{
+ req_access = null;
+ req_one_access = list(2,4);
+ pixel_x = 32
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Brig Hallway 2";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"sSA" = (
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ name = "Disposals Sorting";
+ sortType = "Disposal Sorting";
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/quartermaster/Recycling)
+"sSD" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"sSN" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"sSR" = (
+/obj/random/junk,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"sSU" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod 1 Hatch"
+ },
+/obj/effect/map_helper/airlock/door/simple,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod1/station)
+"sTa" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/quartermaster/Reception)
+"sTc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"sTd" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"sTj" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/landmark{
+ name = "Observer-Start"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/primary/seconddeck/dockhallway)
+"sTm" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"sTp" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "w3_b_airlock";
+ landmark_tag = "w3_b";
+ name = "Dock 3-B"
+ },
+/turf/space,
+/area/space)
+"sTG" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"sTU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"sTX" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/obj/structure/flora/pottedplant/subterranean,
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"sTZ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/security/checkpoint2)
+"sUG" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"sUN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"sUO" = (
+/obj/structure/table/reinforced,
+/obj/item/bodybag/cryobag,
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -36
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"sUP" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"sUQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"sUU" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"sUY" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 4;
+ name = "Security";
+ sortType = "Security"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/machinery/disposal{
+ pixel_y = -3
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"sVf" = (
+/obj/structure/table/marble,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/cash_register/civilian{
+ dir = 4;
+ pixel_y = 6;
+ pixel_x = -3
+ },
+/obj/item/deskbell{
+ pixel_y = 1;
+ pixel_x = -7
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "kitchenwindow";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/kitchen)
+"sWE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"sWH" = (
+/obj/machinery/porta_turret/crescent,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/redgrid,
+/area/security/checkpoint2)
+"sWS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Circuitry_Den)
+"sXc" = (
+/obj/machinery/computer/scan_consolenew{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/medical/Genetics_Lab)
+"sXf" = (
+/obj/structure/bed/chair,
+/obj/random/trash,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"sXg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"sXz" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/heads/sc/cmo)
+"sYe" = (
+/obj/machinery/door/window/eastright{
+ name = "Range Access"
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Firing_Range)
+"sYP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Security Restroom"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/security/Restroom)
+"sYV" = (
+/obj/machinery/door/airlock{
+ name = "Shower"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"sZk" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"sZs" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"sZu" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Firing_Range)
+"sZz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"sZE" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ name = "interior access button";
+ pixel_y = -11;
+ pixel_x = -32
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/mainsupport)
+"sZJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"sZR" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"sZY" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"taf" = (
+/obj/structure/railing/overhang/bronze,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"tao" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"taB" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explofoyer)
+"taE" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/workshop)
+"taS" = (
+/obj/structure/stairs/spawner/east,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"tbe" = (
+/obj/machinery/appliance/cooker/fryer,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/black/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"tbl" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"tbu" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"tbw" = (
+/obj/structure/bed/chair/wheelchair,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/effect/landmark/start{
+ name = "Paramedic"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/cetus/sleevelobby)
+"tbH" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/escape_pod1/station)
+"tbW" = (
+/obj/machinery/suit_cycler/medical,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"tbX" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "d2_near_sw";
+ name = "Near Cetus - Deck 2 South West"
+ },
+/turf/space,
+/area/space)
+"tca" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/item/material/shard,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"tcb" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"tce" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/stool/padded{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"tch" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-9"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"tcm" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"tcv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"tcO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"tcR" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/cargo,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"tcU" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/twostar)
+"tcX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Showers"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/security/Restroom)
+"tda" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"tdd" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/atrium/primary)
+"tdo" = (
+/obj/structure/toilet/item{
+ dir = 1
+ },
+/obj/item/bikehorn/rubberducky/white,
+/obj/machinery/light/small/fluorescent,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"tdq" = (
+/obj/structure/closet/crate,
+/obj/random/tank,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/drinkbottle,
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"tdr" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"tdL" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/canvas/nineteen_nineteen{
+ pixel_y = 3
+ },
+/obj/item/canvas/nineteen_nineteen{
+ pixel_y = 3
+ },
+/obj/item/canvas/nineteen_nineteen{
+ pixel_y = 3
+ },
+/obj/item/canvas/nineteen_nineteen{
+ pixel_y = 3
+ },
+/obj/item/canvas/nineteen_nineteen{
+ pixel_y = 3
+ },
+/obj/item/canvas/nineteen_nineteen{
+ pixel_y = 3
+ },
+/obj/item/canvas/nineteen_nineteen{
+ pixel_y = 3
+ },
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"teb" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Engineering_Workshop)
+"tec" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secbriefing"
+ },
+/turf/simulated/floor/plating,
+/area/security/Brig)
+"ted" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"teL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"tfn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"tfr" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/hall)
+"tfB" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/jrhallway)
+"tfM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"tfP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/maintenance/cetus/twojrport)
+"tfW" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"tge" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"tgk" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"tgl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"tgt" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor{
+ id = "QMLoad"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/storage)
+"tgu" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"tgO" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"tgR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/random/tool,
+/obj/random/toolbox,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"tha" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"thd" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"thQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_security{
+ id_tag = "BrigFoyer";
+ layer = 2.8;
+ name = "Security Wing";
+ req_access = list(63);
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Reception)
+"thU" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"tig" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobotany_Lab)
+"til" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Port Substation Bypass"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"tim" = (
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/structure/backup_implanter_ch{
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"tis" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"tiJ" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"tiL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/chapel{
+ dir = 1
+ },
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"tjp" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"tjq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Recreation"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/Gym)
+"tjr" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"tjw" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Internal_Affairs_Office)
+"tjI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/docklock)
+"tjR" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/docklock)
+"tko" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for shutters.";
+ id = "evashutter";
+ name = "EVA Shutters";
+ pixel_x = -27;
+ pixel_y = -25;
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"tkw" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"tkx" = (
+/obj/structure/table/steel,
+/obj/item/storage/bag/circuits/basic,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/workshop)
+"tkB" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/stock_parts/micro_laser{
+ pixel_y = -8;
+ pixel_x = -5
+ },
+/obj/item/stock_parts/micro_laser{
+ pixel_y = -8;
+ pixel_x = -5
+ },
+/obj/item/stock_parts/micro_laser{
+ pixel_y = -8;
+ pixel_x = -5
+ },
+/obj/item/stock_parts/scanning_module,
+/obj/item/stock_parts/scanning_module,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"tkE" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/cafeteriaf2)
+"tlw" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "9-10"
+ },
+/obj/effect/floor_decal/industrial/loading,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Robotics_Lab)
+"tlx" = (
+/obj/item/stool/padded{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"tly" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"tlz" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"tlA" = (
+/obj/structure/table/steel,
+/obj/item/storage/box,
+/obj/item/storage/box,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering{
+ pixel_y = -1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"tlM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"tlY" = (
+/obj/structure/sign/warning{
+ name = "\improper WARNING: CLIFF"
+ },
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/atrium/primary)
+"tme" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"tmj" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/security/Brig)
+"tmt" = (
+/obj/effect/floor_decal/chapel,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"tmv" = (
+/turf/simulated/mineral/cetus,
+/area/security/briefing_room)
+"tmD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D1)
+"tmF" = (
+/obj/structure/disposalpipe/junction,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"tnn" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"tnz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"tnQ" = (
+/turf/simulated/mineral/cetus,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"tnS" = (
+/turf/simulated/mineral/cetus/edge,
+/area/engineering/cetus/starsubstation)
+"tnU" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/Libraryf1)
+"tob" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"toi" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"tou" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"tov" = (
+/obj/structure/railing/grey,
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"toI" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/micro_tunnel/random,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twocave)
+"toJ" = (
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Cargo Shuttle Airlock";
+ req_access = list(31);
+ req_one_access = list(48)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ name = "exterior access button";
+ pixel_x = 32;
+ pixel_y = -10
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/structure/fans/tiny,
+/turf/simulated/floor/tiled/techmaint,
+/area/quartermaster/storage)
+"toN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"toY" = (
+/obj/structure/lattice,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"tpf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"tpj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"tpm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"tpH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"tpI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"tpO" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"tqx" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/EMT_Bay)
+"tqG" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"trf" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/EMT_Bay)
+"trq" = (
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/obj/item/towel/random{
+ pixel_y = 12
+ },
+/obj/item/towel/random{
+ pixel_y = 12
+ },
+/obj/item/towel/random{
+ pixel_y = 12
+ },
+/obj/item/towel/random{
+ pixel_y = 12
+ },
+/obj/machinery/light,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"trv" = (
+/turf/simulated/wall,
+/area/medical/medsci)
+"trU" = (
+/obj/structure/table/standard,
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 34;
+ name = "1E-inset disposal unit"
+ },
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/folder/yellow{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/item/pen{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"trV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/Custodial_Office)
+"tsk" = (
+/turf/simulated/floor/tiled,
+/area/medical/Autoresleeving)
+"tso" = (
+/turf/simulated/wall,
+/area/engineering/cetus/jointsubstation)
+"tsv" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/black/border,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"tsx" = (
+/obj/structure/closet/secure_closet/quartermaster,
+/obj/random/soap,
+/obj/item/towel/random,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"tsy" = (
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
+/obj/machinery/atmospherics/pipe/zpipe/down/supply,
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "32-2"
+ },
+/obj/structure/disposalpipe/down,
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"tsO" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/steel,
+/obj/item/storage/bag/mail{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 34;
+ name = "1E-inset disposal unit"
+ },
+/obj/item/destTagger{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/mail_scanner{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/wrapping_paper{
+ pixel_x = -10;
+ pixel_y = 10
+ },
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/wrapping_paper{
+ pixel_x = -10;
+ pixel_y = 10
+ },
+/obj/item/storage/box{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/box{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/box{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"tsU" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"tto" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters{
+ color = "#aa5f61"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/Reception)
+"tuh" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 32
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"tuj" = (
+/obj/structure/sign/directions/pool{
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/bridge,
+/obj/structure/sign/directions/command{
+ pixel_y = -8
+ },
+/turf/simulated/wall,
+/area/crew_quarters/cetus/atrium/primary)
+"tuB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"tuD" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"tuG" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/mainsupport)
+"tuK" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"tuP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"tuQ" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/Chapel_Office)
+"tuS" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"tuT" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/plating,
+/area/security/Firing_Range)
+"tuV" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/stool/padded{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"tvd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/sign/directions/security/armory{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"tve" = (
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Patient Room A";
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_1)
+"tvn" = (
+/obj/structure/table/standard,
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"tvT" = (
+/obj/structure/bed/chair/sofa/corp,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"twA" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/access_button{
+ dir = 1;
+ name = "interior access button";
+ pixel_y = 11;
+ pixel_x = -32
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D2)
+"twE" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"twP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"twS" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"twY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"txp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"txq" = (
+/obj/effect/floor_decal/chapel{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"txy" = (
+/obj/structure/table/bench/glass,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Viewing)
+"txB" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"txC" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/sauna)
+"txI" = (
+/obj/structure/table/bench/standard,
+/obj/item/reagent_containers/food/drinks/britcup,
+/obj/effect/floor_decal/corner/beige/diagonal,
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"txM" = (
+/obj/structure/closet/jcloset,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/item/soap/nanotrasen,
+/obj/item/soap/nanotrasen,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"txN" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explofoyer)
+"txP" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"tyJ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ id = "qpwld";
+ name = "Checkpoint Lockdown"
+ },
+/turf/simulated/floor/plating,
+/area/security/checkpoint2)
+"tyQ" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"tze" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"tzG" = (
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/snacks/mint,
+/obj/item/reagent_containers/dropper,
+/obj/effect/floor_decal/corner/black/diagonal,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"tzM" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/cafeteriaf2)
+"tzU" = (
+/obj/structure/table/woodentable,
+/obj/random/maintenance/foodstuff,
+/turf/simulated/floor/plating,
+/area/maintenance/zerobar)
+"tAw" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "w2_a_airlock";
+ pixel_y = -27;
+ req_one_access = list(13);
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"tAy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"tAI" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"tBd" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"tBg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/door/morgue{
+ dir = 2;
+ name = "Confession Booth (Chaplain)";
+ req_access = list(22)
+ },
+/obj/structure/railing/overhang/bronze,
+/turf/simulated/floor/wood,
+/area/crew_quarters/Chapel_Office)
+"tBy" = (
+/obj/structure/easel,
+/obj/item/canvas/twentythree_twentythree,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"tBB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"tBK" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/jrhall)
+"tBQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"tCw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/sign/dock/one,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D1)
+"tCN" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"tCS" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = -27
+ },
+/obj/machinery/button/remote/airlock{
+ id = "qpdoormain";
+ name = "Qpad Door Bolts";
+ pixel_y = -34;
+ req_one_access = list(1,19);
+ specialfunctions = 4;
+ dir = 1;
+ pixel_x = 5
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "qpadblast";
+ name = "Qpad Lockdown";
+ pixel_x = -3;
+ pixel_y = -34;
+ req_one_access = list(1,19);
+ dir = 1
+ },
+/obj/machinery/turretid/stun{
+ check_access = 0;
+ check_anomalies = 0;
+ check_down = 0;
+ check_records = 0;
+ pixel_y = -27;
+ req_access = null;
+ req_one_access = list(1,19);
+ name = "Teleporter turret control panel";
+ pixel_x = -27;
+ control_area = "\improper Arrivals Teleporter"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"tDa" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used to monitor the engine room.";
+ layer = 3.3;
+ name = "Engine Monitor";
+ network = list("Engine");
+ pixel_x = 31
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"tDc" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"tDi" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/central_one)
+"tEr" = (
+/turf/simulated/wall,
+/area/maintenance/substation/central)
+"tEQ" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explofoyer)
+"tET" = (
+/obj/structure/table/bench/wooden,
+/obj/item/flashlight/lamp/green,
+/obj/machinery/button/remote/airlock{
+ id = "cabin2";
+ name = "Bolt Control";
+ pixel_y = -25;
+ specialfunctions = 4;
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm2)
+"tFh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"tFl" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/airlock_sensor{
+ pixel_y = 23;
+ pixel_x = 5
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "primary_support_meteor";
+ pixel_y = 24;
+ pixel_x = -6
+ },
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/mainsupport)
+"tFA" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm4)
+"tFK" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"tFM" = (
+/obj/machinery/button/holosign{
+ id = "roboton";
+ name = "Roboticist on duty sign";
+ pixel_x = 1;
+ pixel_y = -23
+ },
+/obj/machinery/light_switch{
+ pixel_x = -6;
+ pixel_y = -23
+ },
+/obj/machinery/button/windowtint{
+ id = "robotoffice";
+ pixel_x = 8;
+ pixel_y = -23
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -35;
+ pixel_x = -5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"tFZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"tGb" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"tGB" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/jrlounge)
+"tHj" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"tHs" = (
+/obj/structure/table/standard,
+/obj/item/folder/red,
+/obj/item/folder/red,
+/obj/item/folder/red,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"tHH" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/twojrport)
+"tHM" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/light{
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"tHW" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"tHZ" = (
+/obj/machinery/iv_drip,
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_2)
+"tIl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"tIq" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Xenoflora Research";
+ req_access = list(55)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobotany_Lab)
+"tIA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"tJu" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"tJS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"tKp" = (
+/obj/random/vendorfood{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"tKw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"tKF" = (
+/obj/structure/railing/overhang/grey,
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/quartermaster/Recycling)
+"tKG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/research{
+ id_tag = "researchdoor";
+ name = "Research Division Access";
+ req_access = list(47)
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/cetus/hall)
+"tKJ" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"tKP" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"tLd" = (
+/obj/structure/table/reinforced,
+/obj/item/packageWrap,
+/obj/item/destTagger{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/packageWrap,
+/obj/item/hand_labeler,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"tLi" = (
+/obj/structure/closet/crate,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"tLo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Communications Infrastructure";
+ req_one_access = list(16,17)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/tcomm/tcomfoyer)
+"tLu" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"tLF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"tLM" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"tMl" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"tMM" = (
+/obj/structure/ladder/up,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"tMO" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/machinery/biogenerator,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"tMQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"tMY" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"tNd" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"tNk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/computer/arcade/clawmachine,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"tNm" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Research Director"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/heads/sc/hor)
+"tNu" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/Xenobotany_Lab)
+"tNv" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ pixel_x = 22;
+ dir = 4
+ },
+/obj/structure/sink/kitchen{
+ dir = 4;
+ pixel_x = 13
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"tNG" = (
+/obj/machinery/disposal,
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"tNM" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "xenobioextra3";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"tNO" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"tOw" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/jrhallway)
+"tOA" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/storage/bag/sheetsnatcher,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"tOF" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/item/radio/beacon,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/medsci)
+"tOG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"tOK" = (
+/obj/effect/floor_decal/industrial/stand_clear/yellow,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/button/windowtint{
+ id = "cmooffice";
+ pixel_x = -11;
+ pixel_y = 26
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/heads/sc/cmo)
+"tPm" = (
+/obj/structure/table/standard,
+/obj/item/storage/laundry_basket,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/security/Evidence_Storage)
+"tPu" = (
+/obj/structure/bed/chair,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"tPU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"tPZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/power/quantumpad{
+ map_pad_id = "cetus_sci_padout";
+ map_pad_link_id = "cetus_sci_padin";
+ name = "Joint Research Q-Pad"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/greengrid,
+/area/rnd/cetus/hall)
+"tQb" = (
+/obj/structure/sign/directions/science{
+ pixel_y = -11;
+ name = "Joint Research Public Entry";
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/medical/medsci)
+"tQC" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/hallway/cetus/stairwellf2)
+"tQG" = (
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/asteroid/cetus/d2/jr)
+"tQM" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"tRu" = (
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/Patient_3)
+"tRA" = (
+/obj/structure/closet/crate,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/item/clothing/shoes/syndigaloshes,
+/obj/random/contraband,
+/obj/random/toy,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"tRQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"tRU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/closet/emcloset,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"tSm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"tSr" = (
+/obj/machinery/gateway{
+ dir = 1;
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/machinery/cryopod/robot/door/gateway,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/departure)
+"tSs" = (
+/obj/machinery/vending/snack{
+ dir = 8;
+ pixel_x = 5
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/observatory)
+"tSt" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"tSB" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"tSF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/access_button{
+ name = "exterior access button";
+ pixel_y = -27;
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/mainsupport)
+"tSN" = (
+/obj/structure/railing/overhang/bronze{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"tSU" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"tTk" = (
+/obj/structure/sign/hangar/one,
+/turf/simulated/wall,
+/area/hangar/cetus/explofoyer)
+"tTl" = (
+/obj/effect/floor_decal/spline/fancy{
+ dir = 6
+ },
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/rnd/Xenobotany_Lab)
+"tTH" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 5
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "D2_starboard";
+ dir = 4;
+ pixel_y = -8;
+ pixel_x = -23
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"tTQ" = (
+/obj/machinery/light/small/emergency,
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"tTT" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hangar/three)
+"tUl" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Firing_Range)
+"tUB" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters,
+/obj/machinery/keycard_auth{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/heads/sc/hop)
+"tUE" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"tUH" = (
+/turf/simulated/open,
+/area/hangar/cetus/explofoyer)
+"tUN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "MedbayFoyer";
+ name = "Resleever Bay Lobby";
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/sleevelobby)
+"tUV" = (
+/obj/structure/ladder/updown,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/engineering/cetus/foresubstation)
+"tUZ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ name = "Genetics Lab";
+ req_one_access = list(5,47)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/medical/Genetics_Lab)
+"tVn" = (
+/obj/structure/sign/warning/high_voltage,
+/turf/simulated/wall/r_wall,
+/area/security/Brig)
+"tVE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/rnd/Server_Room)
+"tVJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"tVL" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"tVZ" = (
+/obj/machinery/shield_diffuser,
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"tWk" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Firing_Range)
+"tWl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ id_tag = "qpdoorin";
+ name = "Inner Checkpoint Airlock";
+ normalspeed = 0
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "qpdld";
+ name = "Checkpoint Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/security/checkpoint2)
+"tWL" = (
+/turf/simulated/wall,
+/area/crew_quarters/Holodeck)
+"tWR" = (
+/obj/machinery/floodlight{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twoap)
+"tXm" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"tXA" = (
+/turf/simulated/shuttle/wall/no_join/orange,
+/area/shuttle/escape_pod1/station)
+"tXE" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"tXH" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/surgery{
+ pixel_y = 7
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/button/windowtint{
+ id = "robotsurgery";
+ pixel_x = 8;
+ pixel_y = 24
+ },
+/obj/item/stack/cable_coil/random_belt,
+/obj/item/stack/cable_coil/random_belt,
+/obj/item/stack/cable_coil/random_belt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Robotics_Lab)
+"tXN" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Chief Medical Officer"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/crew_quarters/heads/sc/cmo)
+"tXP" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"tXQ" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"tXV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ req_one_access = list(11, 24, 47, 5);
+ pixel_x = -24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"tXZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"tYk" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 1
+ },
+/obj/structure/plasticflaps/mining,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"tYw" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"tYB" = (
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ id_tag = "MedbayFoyer1";
+ name = "Medical Bay";
+ req_access = list(5);
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/cetus/hall)
+"tYH" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobotany_Lab)
+"tYL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"tYM" = (
+/obj/structure/easel,
+/obj/item/canvas/twentythree_nineteen,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"tYQ" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"tYX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/mainsupport)
+"tZz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"tZJ" = (
+/obj/structure/bed/chair/sofa/right/teal{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/beige/diagonal,
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"tZX" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"tZZ" = (
+/turf/simulated/wall,
+/area/asteroid/cetus/d2/jr)
+"uaf" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"uar" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/twomed)
+"uat" = (
+/obj/structure/table/woodentable,
+/obj/item/storage/bag/circuits/basic,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/atrium/primary)
+"ubd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"ubw" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/heads/sc/hor)
+"ubM" = (
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/cee,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/checkpoint2)
+"ubW" = (
+/obj/structure/bookcase{
+ name = "bookcase (Reference- Legal)"
+ },
+/obj/item/book/manual/command_guide,
+/obj/item/book/manual/standard_operating_procedure,
+/obj/item/book/manual/wiki/security_space_law,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"ucg" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/engineering/Reception)
+"ucm" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"uct" = (
+/obj/machinery/button/windowtint{
+ id = "lawyer_tint";
+ pixel_x = -11;
+ pixel_y = 25;
+ req_access = list(58)
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Internal_Affairs_Office)
+"ucJ" = (
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2,
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"ucK" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva)
+"ucN" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"ucV" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -15;
+ pixel_y = -3
+ },
+/obj/structure/reagent_dispensers/virusfood{
+ pixel_x = -31
+ },
+/obj/machinery/button/flasher{
+ id = "viroflash";
+ name = "Test Cell Flasher";
+ pixel_y = -6;
+ pixel_x = -36
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"udn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "pr2_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/medical/Patient_2)
+"udo" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"udq" = (
+/obj/item/clothing/suit/space/skrell/black,
+/obj/item/clothing/head/helmet/space/skrell/black,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/mask/breath,
+/obj/machinery/door/window/northleft{
+ req_one_access = list(18);
+ name = "E.V.A."
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"udE" = (
+/obj/structure/table/standard,
+/obj/structure/sink/countertop{
+ pixel_y = 7
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"uen" = (
+/obj/structure/window/basic,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"uep" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"ueW" = (
+/obj/structure/closet/secure_closet/cargotech,
+/obj/item/stamp/cargo,
+/obj/item/storage/backpack/dufflebag,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"ufc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/hangar/three)
+"ufw" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twojrport)
+"ufz" = (
+/obj/item/tabloid{
+ pixel_y = 13;
+ pixel_x = -1
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/tabloid{
+ pixel_y = 8;
+ pixel_x = -1
+ },
+/obj/item/newspaper{
+ pixel_y = 3
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Autoresleeving)
+"ufE" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/cetus/atriumdeck2)
+"ufH" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"ufK" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/obj/machinery/chem_master/condimaster{
+ name = "CondiMaster Neo"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/crew_quarters/kitchen)
+"ugp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_four)
+"ugu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"ugJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"ugY" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"uhh" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start{
+ name = "Engineer"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"uhr" = (
+/obj/structure/closet/radiation,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"uht" = (
+/obj/machinery/door/airlock/mining{
+ name = "Quartermaster";
+ req_access = list(41)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techmaint,
+/area/quartermaster/QM_Office)
+"uhw" = (
+/obj/machinery/vending/cola{
+ dir = 4;
+ pixel_x = -7
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"uhx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"uhz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"uhG" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"uid" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"uie" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/jrhallway)
+"uih" = (
+/obj/machinery/iv_drip,
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_3)
+"uio" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_four)
+"uiq" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/jrhallway)
+"uiv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"uiz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"uiB" = (
+/obj/machinery/door/firedoor/glass/hidden/steel,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"uja" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"ujd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"ujx" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/vending/dinnerware{
+ pixel_y = 25;
+ density = 0
+ },
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"ujE" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"ujO" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"ujX" = (
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/blast/regular{
+ desc = "By gods, release the hounds!";
+ id = "xenobiostationext1";
+ name = "Containment Release"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"ujZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"uki" = (
+/obj/structure/table/glass,
+/obj/item/tool/screwdriver,
+/obj/machinery/recharger,
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"ukq" = (
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "32-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/open,
+/area/maintenance/substation/central)
+"ukD" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/random/flashlight,
+/obj/random/flashlight,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"ukG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"uli" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"ulq" = (
+/obj/machinery/gateway,
+/obj/effect/landmark{
+ name = "JoinLateStationGateway"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/departure)
+"ulA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/item/pen,
+/obj/item/paper_bin,
+/obj/item/folder,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/twojrport)
+"ulJ" = (
+/obj/structure/closet,
+/obj/item/storage/backpack/dufflebag,
+/obj/item/stamp/cargo,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"ulT" = (
+/obj/structure/lattice,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "32-1"
+ },
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"unr" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/Libraryf1)
+"unt" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"unv" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/Locker_Room)
+"unB" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"unF" = (
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/atrium/primary)
+"unT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"unW" = (
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Containment Pen";
+ req_access = list(47)
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobiology_Lab)
+"uok" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_y = -30;
+ pixel_x = -6
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"uot" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/sc/cmo)
+"uoN" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall/r_wall,
+/area/security/Brig)
+"upd" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"upg" = (
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/quartermaster/Recycling)
+"upm" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"upq" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ layer = 4;
+ pixel_y = -32
+ },
+/obj/machinery/vitals_monitor,
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_1)
+"upu" = (
+/obj/random/pottedplant,
+/obj/effect/floor_decal/corner/beige/diagonal,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"upx" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/security/Brig)
+"upC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/computer/timeclock/premade/east,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"upI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"upJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/medsci)
+"upK" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Central Ring 7";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"upS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"upU" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"uqf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "tabletop_window_tint"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/Libraryf1)
+"uqh" = (
+/obj/structure/fitness/punchingbag,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/turf/simulated/floor/boxing/gym,
+/area/crew_quarters/Gym)
+"uqu" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/twosec)
+"uqD" = (
+/obj/machinery/rnd/production/circuit_imprinter,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"uqM" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"uqP" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/window/reinforced/full,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobio4station";
+ name = "Containment Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"uqQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/random/trash_pile,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"uqT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"uqU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"urS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"urZ" = (
+/obj/structure/transit_tube{
+ icon_state = "D-SW"
+ },
+/turf/space,
+/area/space)
+"usr" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"usv" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/Holodeck)
+"usB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"utd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"utm" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/fancy,
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"utU" = (
+/obj/structure/disposaloutlet,
+/obj/structure/plasticflaps/mining,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"uug" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"uus" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"uuC" = (
+/obj/structure/railing/overhang/bronze{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"uuH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/station_map{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"uuW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"uva" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"uvf" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/atrium/primary)
+"uvA" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/arcadestorage)
+"uvQ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_y = 9;
+ pixel_x = 23
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "primary_support_main";
+ pixel_y = -6;
+ pixel_x = 23;
+ dir = 8
+ },
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/mainsupport)
+"uvR" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Dock 2 Hallway 1";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"uwa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"uwe" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/window/basic,
+/obj/structure/window/basic{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"uwi" = (
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"uwu" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"uwz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"uwE" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/medical/Distillery)
+"uwM" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -38;
+ pixel_y = 6
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/item/destTagger{
+ pixel_x = -5;
+ pixel_y = 7
+ },
+/obj/item/packageWrap,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/pen,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"uxb" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"uxd" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/plating,
+/area/security/Brig)
+"uxe" = (
+/obj/structure/bed/pillowpile/teal,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm3)
+"uxi" = (
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/carpet/blucarpet,
+/area/hallway/primary/seconddeck/dockhallway)
+"uxx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/firealarm{
+ pixel_y = 27
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"uxD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"uxF" = (
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"uxR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"uxT" = (
+/obj/structure/lattice,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"uya" = (
+/obj/effect/floor_decal/corner/beige/diagonal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"uyi" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"uyk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"uym" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Server Room";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Server_Room)
+"uyG" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"uzj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"uzq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"uzt" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"uzv" = (
+/obj/machinery/light,
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"uzZ" = (
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/thirddeck/roof)
+"uAi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/Chapel_Office)
+"uAn" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = -30
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Virology)
+"uAC" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"uAV" = (
+/obj/machinery/vending/cola,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrlounge)
+"uBm" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"uBv" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"uBx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"uBB" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"uBC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"uBE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"uCh" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/docklock)
+"uCm" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/mob/living/carbon/human/monkey,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/medical/Genetics_Lab)
+"uCn" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ layer = 4;
+ pixel_y = -32
+ },
+/obj/machinery/vitals_monitor,
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_2)
+"uCq" = (
+/obj/random/pottedplant,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/security/Locker_Room)
+"uCI" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = -24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"uCL" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"uDg" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-10"
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -38;
+ pixel_y = 6
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"uDE" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"uDR" = (
+/obj/structure/window/reinforced/polarized{
+ id = "robotsurgery";
+ dir = 8
+ },
+/obj/machinery/computer/transhuman/resleeving{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 5
+ },
+/turf/simulated/floor/bluegrid,
+/area/rnd/Robotics_Lab)
+"uDT" = (
+/obj/random/translator,
+/obj/random/fromList/TFGuns,
+/obj/random/fromList/TFGuns,
+/obj/item/pickaxe/drill,
+/obj/item/clothing/glasses/meson,
+/obj/structure/closet/crate,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"uEf" = (
+/obj/machinery/atmospherics/binary/passive_gate{
+ dir = 8;
+ regulate_mode = 0;
+ unlocked = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"uEw" = (
+/obj/structure/cable/green{
+ icon_state = "2-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"uEx" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/security/detectives_office)
+"uER" = (
+/obj/structure/closet/crate,
+/obj/random/drinkbottle,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"uFO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"uFY" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "d2_w3_b_airlock";
+ pixel_y = 27;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"uGi" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"uGq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"uGE" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"uGG" = (
+/obj/structure/table/bench/steel,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"uGI" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/button/remote/blast_door{
+ id = "xenobiopublic";
+ name = "Containment Blast Doors";
+ pixel_y = 1;
+ req_access = list(55);
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"uGU" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/briefing_room)
+"uGV" = (
+/obj/machinery/light/fluorescent,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"uHc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"uHi" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/hop)
+"uHl" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"uHm" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/newscaster{
+ pixel_y = 3;
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"uHI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"uHJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"uHL" = (
+/obj/structure/sign/directions/evac{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/hallway/secondary/entry/D1)
+"uIf" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -37
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"uIi" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"uIq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"uIC" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"uIL" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"uIN" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"uIV" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/EMT_Bay)
+"uJa" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"uJj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"uJp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"uJI" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"uJL" = (
+/obj/random/obstruction,
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"uJM" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61";
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ color = "#aa5f61"
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Reception)
+"uJR" = (
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/structure/curtain/open/shower/medical,
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/freezer,
+/area/rnd/Xenobiology_Lab)
+"uKb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"uKm" = (
+/turf/simulated/floor/tiled/dark,
+/area/security/Processing_Room)
+"uKn" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"uKp" = (
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/machinery/medical_kiosk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"uKz" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"uKI" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/full,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"uKL" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/cetus/explofoyer)
+"uKS" = (
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"uLd" = (
+/turf/simulated/floor/carpet,
+/area/security/briefing_room)
+"uLf" = (
+/obj/machinery/computer/aifixer{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Research Director's Desk";
+ departmentType = 5;
+ name = "Research Director RC";
+ pixel_y = -23;
+ dir = 1
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - RD's Office";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/heads/sc/hor)
+"uLh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/ladder/updown{
+ pixel_y = 13
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"uLK" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Locker_Room)
+"uLT" = (
+/obj/effect/floor_decal/industrial/stand_clear/yellow,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hydroponics)
+"uMd" = (
+/obj/machinery/vending/wardrobe/scidrobe,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"uMm" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/observatory)
+"uMy" = (
+/turf/simulated/floor/reinforced,
+/area/asteroid/cetus/d2)
+"uMH" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"uMV" = (
+/obj/structure/railing/overhang/bronze{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/black/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"uNj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"uNq" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"uNB" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D3)
+"uNE" = (
+/obj/structure/flora/pottedplant/stoutbush{
+ pixel_y = 8
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = -22
+ },
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"uNJ" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"uNM" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"uNS" = (
+/turf/simulated/wall,
+/area/hangar/cetus/explofoyer)
+"uNY" = (
+/obj/machinery/gateway{
+ dir = 8
+ },
+/obj/machinery/gateway{
+ dir = 9;
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/departure)
+"uOl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Security Hallway";
+ dir = 5
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"uOn" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/masks,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"uOs" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"uOD" = (
+/obj/machinery/hyperpad/centre{
+ map_pad_id = "pad_1_station";
+ map_pad_link_id = "pad_1_away"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/arrivals)
+"uOE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Locker_Room)
+"uPg" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D2 Art Cafe 2";
+ dir = 6
+ },
+/obj/structure/sign/directions/science{
+ pixel_y = 22;
+ name = "Joint Research Public Entry";
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"uPM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/maintenance/cetus/mainsupport)
+"uQc" = (
+/obj/machinery/chemical_dispenser/bar_soft{
+ pixel_y = 12
+ },
+/obj/structure/table/woodentable,
+/turf/simulated/floor/tiled,
+/area/maintenance/zerobar)
+"uQo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 2;
+ name = "Maintenance Access"
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"uQN" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/atrium/primary)
+"uQS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"uRl" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"uRn" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/up{
+ dir = 4
+ },
+/obj/structure/ladder,
+/turf/simulated/open,
+/area/engineering/cetus/jointsubstation)
+"uRp" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"uRz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/dockhallway)
+"uRD" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/twojrstar)
+"uRJ" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"uRM" = (
+/obj/structure/table/steel,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/random/maintenance/foodstuff,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"uRN" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/transit_tube,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/cetus/hall)
+"uRU" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 1;
+ name = "exterior access button";
+ pixel_x = -31;
+ pixel_y = 10
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"uSw" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/space,
+/area/space)
+"uSL" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/trash,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"uSM" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/blue{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/item/pen/red{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/item/pen/multi{
+ pixel_y = 7;
+ pixel_x = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"uTm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"uTA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"uTL" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-10"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"uTW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/holosign/robotics{
+ id = "roboton"
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "robotoffice"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Robotics_Lab)
+"uUr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"uUG" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - JR Pod Hall";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"uUI" = (
+/obj/machinery/conveyor{
+ id = "disposalsorter";
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"uVC" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"uWi" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Botanist"
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"uWC" = (
+/obj/effect/floor_decal/corner/black/diagonal,
+/obj/effect/landmark/start{
+ name = "Chef"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"uWO" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -35;
+ pixel_y = 6
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"uWP" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"uXb" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"uXn" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "exp_sling_station";
+ name = "shuttle bay controller";
+ pixel_y = 26;
+ tag_door = "exp_sling_station_door"
+ },
+/obj/machinery/computer/shuttle_control/exploration{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"uXZ" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/heads/sc/hos)
+"uYj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/computer/med_data/laptop{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/medsci)
+"uYn" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"uYt" = (
+/turf/simulated/floor/carpet/sblucarpet,
+/area/crew_quarters/heads/sc/cmo)
+"uYx" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Evidence Storage";
+ req_access = list(63);
+ req_one_access = null
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Evidence_Storage)
+"uYG" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/cetus/observatory)
+"uYW" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/wall/voidcraft/blue,
+/area/shuttle/expoutpost/station)
+"uZa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"uZi" = (
+/obj/machinery/vending/coffee{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/medical/cetus/sleevelobby)
+"uZr" = (
+/turf/simulated/wall/r_wall,
+/area/security/Internal_Affairs_Office)
+"uZy" = (
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Xenobiology 2";
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"uZO" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"uZS" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"uZX" = (
+/obj/machinery/vending/cigarette{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Breakroom)
+"vac" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 1;
+ icon_state = "freezer"
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"vaj" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"vap" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"vau" = (
+/obj/structure/bed/chair/sofa/left/blue,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/hallway/primary/seconddeck/dockhallway)
+"vav" = (
+/turf/simulated/mineral/cetus,
+/area/hangar/cetus/explofoyer)
+"vbc" = (
+/obj/structure/sign/directions/evac{
+ dir = 10;
+ pixel_y = 6
+ },
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/atrium/primary)
+"vbg" = (
+/obj/structure/closet/l3closet/medical,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"vbG" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"vbO" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/cetus/stairwellf2)
+"vbX" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"vca" = (
+/obj/structure/lattice,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"vcc" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"vcg" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"vcp" = (
+/obj/structure/closet/chefcloset,
+/obj/item/glass_jar,
+/obj/item/retail_scanner/civilian,
+/obj/item/soap/nanotrasen,
+/obj/item/destTagger{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/clothing/gloves/sterile/latex,
+/obj/item/clothing/gloves/sterile/latex,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/freezer/cold,
+/area/crew_quarters/kitchen)
+"vcG" = (
+/obj/structure/closet/wardrobe/science_white,
+/obj/item/radio/headset/headset_sci{
+ pixel_x = -3
+ },
+/obj/item/radio/headset/headset_sci{
+ pixel_x = -3
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"vcO" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/medical/Genetics_Lab)
+"vcQ" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"vcS" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"vcU" = (
+/obj/structure/transit_tube{
+ icon_state = "E-NW"
+ },
+/turf/space,
+/area/space)
+"vdd" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"vde" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"vdi" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"vdk" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/gloves{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/syringes{
+ pixel_y = 1;
+ pixel_x = -5
+ },
+/obj/item/storage/box/botanydisk{
+ pixel_y = -1;
+ pixel_x = -7
+ },
+/obj/item/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"vdr" = (
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D3)
+"vds" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"vec" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMDelivery"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Recycling)
+"vej" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twocave)
+"veK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"veO" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/Libraryf1)
+"veQ" = (
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/secondary/entry/D1)
+"vfb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"vfg" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodport)
+"vfm" = (
+/obj/effect/floor_decal/corner/beige/diagonal,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"vfE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/dockhallway)
+"vfO" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"vfP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Reception";
+ req_access = list(5)
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/reception)
+"vhh" = (
+/obj/machinery/power/solar,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"vhO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"vhY" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"vik" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/comissary)
+"vim" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"viq" = (
+/obj/machinery/computer/supplycomp{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"vit" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Internal Affairs";
+ req_access = list(38)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Internal_Affairs_Office)
+"viy" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"viC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"viH" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "w1_a_airlock";
+ landmark_tag = "w1_a";
+ name = "Dock 1-A"
+ },
+/turf/space,
+/area/space)
+"vjc" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad2"
+ },
+/obj/structure/closet/crate,
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Cargo Bay Port";
+ dir = 1;
+ name = "security camera"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/storage)
+"vjn" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall,
+/area/crew_quarters/cetus/atrium/primary)
+"vjr" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"vjs" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/camera/network/exploration{
+ c_tag = "EXP - D2 Hangar 2";
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"vjR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"vkf" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"vkz" = (
+/obj/machinery/vending/assist,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/storage/primary)
+"vkJ" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/cafeteriaf2)
+"vkW" = (
+/obj/structure/closet/acloset{
+ name = "Art supplies"
+ },
+/obj/item/paint_palette{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/paint_palette{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/paint_palette{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/paint_palette{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/paint_brush{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/paint_brush{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/paint_brush{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/paint_brush{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/camera_film,
+/obj/item/camera_film,
+/obj/item/camera_film,
+/obj/item/camera_film,
+/obj/item/camera_film,
+/obj/item/camera_film,
+/obj/item/camera,
+/obj/item/camera,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/storage/photo_album,
+/obj/item/storage/photo_album,
+/obj/item/floor_painter,
+/obj/item/floor_painter,
+/obj/item/laser_pointer/blue,
+/obj/item/laser_pointer/green,
+/obj/item/laser_pointer/purple,
+/obj/item/laser_pointer/red,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf1)
+"vlM" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/vending/wallmed1{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/cetus/sleevelobby)
+"vmg" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/cell{
+ maxcharge = 2000
+ },
+/obj/item/module/power_control,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"vms" = (
+/obj/structure/closet/secure_closet/hos2,
+/obj/item/cell/device/empproof,
+/obj/item/rig/ch/pursuit/equipped,
+/obj/item/holowarrant,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/item/handcuffs/legcuffs,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"vmG" = (
+/obj/structure/table/woodentable,
+/obj/item/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3;
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3;
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/food/condiment/small/sugar{
+ pixel_y = 13
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"vmM" = (
+/obj/structure/railing/overhang/grey,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/atrium/primary)
+"vmP" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Utility Hallway 2";
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"vmV" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_one)
+"vnj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"vnF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"vnJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"vnN" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"vnV" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/heads/sc/chief)
+"vnX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"vod" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"vpd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/primary/central_three)
+"vpe" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"vpk" = (
+/obj/structure/table/marble,
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "kitchen";
+ layer = 3.3;
+ name = "Kitchen Shutters"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/kitchen)
+"vpQ" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ dir = 8;
+ pixel_y = -11
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"vqn" = (
+/turf/simulated/floor/boxing/gym,
+/area/crew_quarters/Gym)
+"vqp" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/spline/plain/cee,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"vqC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"vqR" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"vqY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_research{
+ req_one_access = list(43,67);
+ name = "Exploration Foyer"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hangar/cetus/explofoyer)
+"vrh" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"vrF" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"vrR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"vrW" = (
+/obj/structure/closet/radiation,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"vsd" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Reception)
+"vsf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/monotile,
+/area/hangar/three)
+"vsm" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"vsy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"vsI" = (
+/obj/structure/sign/directions/command{
+ pixel_y = -20;
+ dir = 9
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/central_one)
+"vsJ" = (
+/obj/item/cell/high{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/cell/high{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/cell/high{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/cell/high{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/healthanalyzer,
+/obj/item/healthanalyzer,
+/obj/item/healthanalyzer,
+/obj/item/flash/synthetic,
+/obj/item/flash/synthetic,
+/obj/item/flash/synthetic,
+/obj/item/flash/synthetic,
+/obj/item/flash/synthetic,
+/obj/item/flash/synthetic,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/structure/closet{
+ name = "robotics parts"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"vsS" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/cetus/jrhall)
+"vtb" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"vtf" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"vti" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"vtl" = (
+/obj/machinery/status_display,
+/turf/simulated/wall,
+/area/security/Internal_Affairs_Office)
+"vtm" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/bed/chair/backed_red,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/bcarpet,
+/area/crew_quarters/heads/sc/hos)
+"vtn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"vtG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"vtZ" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/Holodeck)
+"vub" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"vuc" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"vud" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"vul" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Chapel Office";
+ req_access = list(27)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/Chapel_Office)
+"vuv" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"vuy" = (
+/turf/simulated/floor/plating{
+ icon_state = "dmg4"
+ },
+/area/security/Firing_Range)
+"vuR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"vva" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"vvI" = (
+/obj/structure/closet,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/item/melee/umbrella/random,
+/obj/random/maintenance/engineering,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"vvS" = (
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/random/material,
+/obj/random/material,
+/obj/random/material,
+/obj/random/material,
+/obj/random/material,
+/obj/random/material,
+/obj/random/material/refined,
+/obj/structure/closet,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"vvY" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/Breakroom)
+"vwK" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/obj/machinery/door/window/westleft{
+ name = "Atmospherics Suits";
+ req_access = list(24)
+ },
+/obj/item/clothing/head/helmet/space/void/atmos/alt,
+/obj/item/clothing/suit/space/void/atmos/alt,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"vwV" = (
+/obj/item/gun/energy/mouseray/teppi,
+/obj/structure/table/steel_reinforced,
+/obj/item/reagent_containers/food/drinks/bottle/applejuice,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"vwX" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"vxD" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/table/marble,
+/obj/item/tabloid,
+/obj/item/tabloid,
+/turf/simulated/floor/carpet/tealcarpet,
+/area/rnd/cetus/jrhall)
+"vxP" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/arrivals)
+"vxY" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"vyk" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"vyG" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/asteroid/cetus/d2/jr)
+"vyS" = (
+/obj/structure/table/woodentable,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/zerobar)
+"vyV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Cargo Access"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/techmaint,
+/area/quartermaster/Reception)
+"vza" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ id = "genobserve1";
+ name = "Genpop Shutters"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Prison Gate";
+ name = "Communal Brig Blast Door";
+ opacity = 0
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/security/Brig)
+"vzC" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/twostar)
+"vzP" = (
+/obj/structure/railing/overhang/grey,
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/table/marble,
+/obj/machinery/recharger,
+/turf/simulated/floor/carpet/purcarpet,
+/area/rnd/cetus/jrhall)
+"vzW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/cetus/hall)
+"vAf" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/twocargo)
+"vAY" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"vBf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"vBh" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"vBn" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Dock"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D2)
+"vBu" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"vBF" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"vBG" = (
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"vBJ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/storage/primary)
+"vBK" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4;
+ layer = 3.3;
+ pixel_y = -3;
+ pixel_x = -5;
+ throw_speed = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/heads/sc/chief)
+"vBW" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/zerobar)
+"vBZ" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/table/steel,
+/obj/item/multitool{
+ pixel_y = 3;
+ pixel_x = -4
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Circuit Workshop";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"vCm" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/arrivals)
+"vCn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"vCN" = (
+/obj/structure/table/steel,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/item/pizzabox,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"vCU" = (
+/obj/machinery/light/spot,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"vCY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"vDg" = (
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/EMT_Bay)
+"vDk" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "tabletop_window_tint"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"vDq" = (
+/turf/simulated/wall,
+/area/hydroponics)
+"vDx" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"vDz" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"vDK" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/structure/railing/overhang/bronze{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"vDR" = (
+/turf/simulated/wall/r_wall,
+/area/medical/Genetics_Lab)
+"vDS" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/mainsupport)
+"vEh" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"vEk" = (
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"vEl" = (
+/obj/structure/sign/directions/telecomms{
+ dir = 5;
+ pixel_y = -24
+ },
+/obj/structure/sign/directions/ai_core{
+ dir = 5;
+ pixel_y = -32
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"vEx" = (
+/obj/structure/table/steel,
+/obj/item/storage/bag/circuits/basic,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"vEC" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"vEP" = (
+/obj/machinery/rnd/production/protolathe/department/cargo,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"vEQ" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"vET" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/sign/warning/evac,
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D3)
+"vEV" = (
+/obj/machinery/door/airlock{
+ name = "Locker Room"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/crew_quarters/cetus/dockrestrooms)
+"vEZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/plating,
+/area/medical/Distillery)
+"vFd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Starboard Substation";
+ req_one_access = list(11, 24)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"vFu" = (
+/obj/effect/floor_decal/corner/beige/diagonal,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"vFP" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Firing Range";
+ req_access = list(63);
+ req_one_access = null
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/Firing_Range)
+"vFV" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"vHa" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/floor_decal/spline/plain/cee,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/docklock)
+"vHe" = (
+/obj/machinery/door/window/brigdoor/eastright{
+ name = "Containment Pen";
+ req_access = list(47)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobiology_Lab)
+"vHJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Arrivals checkpoint 1";
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"vHT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hosoffice"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/plating,
+/area/security/Reception)
+"vHU" = (
+/obj/structure/bed/chair/sofa/right/orange{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"vHX" = (
+/turf/simulated/wall,
+/area/medical/Patient_2)
+"vIp" = (
+/obj/structure/bed/chair/comfy/rounded/beige{
+ dir = 8
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"vIA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"vIE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"vIK" = (
+/obj/structure/table/steel,
+/obj/item/analyzer/plant_analyzer,
+/obj/item/material/minihoe,
+/obj/item/clothing/head/greenbandana,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"vIQ" = (
+/obj/structure/transit_tube{
+ icon_state = "D-NE"
+ },
+/obj/structure/railing/overhang/grey,
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"vIR" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"vIX" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"vJq" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"vJL" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"vJU" = (
+/obj/structure/closet/emcloset,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"vKc" = (
+/obj/structure/disposalpipe/up{
+ dir = 4
+ },
+/obj/random/junk,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"vKG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ frequency = 1381;
+ id_tag = "escape_dock_snorth_airlock";
+ master_tag = "escape_dock";
+ pixel_y = 27;
+ req_one_access = list(13)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"vKY" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"vLk" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"vLt" = (
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"vLD" = (
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 5
+ },
+/obj/structure/curtain/open/privacy,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"vLT" = (
+/turf/simulated/mineral/cetus,
+/area/security/Processing_Room)
+"vMm" = (
+/obj/structure/railing,
+/turf/simulated/open,
+/area/crew_quarters/cetus/cafeteriaf2)
+"vMo" = (
+/obj/machinery/button/windowtint{
+ id = "workshoptint";
+ pixel_x = -12;
+ pixel_y = -24
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/workshop)
+"vMq" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"vMs" = (
+/obj/structure/table/steel,
+/obj/item/reagent_containers/glass/beaker/sulphuric{
+ pixel_y = 9;
+ pixel_x = -8
+ },
+/obj/item/reagent_containers/food/drinks/cans/space_mountain_wind{
+ pixel_y = 11;
+ pixel_x = 8
+ },
+/obj/item/reagent_containers/food/snacks/cheesiehonkers{
+ pixel_x = 6
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"vMC" = (
+/turf/simulated/wall/r_wall,
+/area/tcomm/tcomfoyer)
+"vMM" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"vNE" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"vNL" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/random/pottedplant,
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"vOi" = (
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Quartermaster Office";
+ dir = 8;
+ name = "security camera"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"vOk" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"vOW" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall/r_wall,
+/area/engineering/Reception)
+"vPj" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-5"
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Common Brig 6";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"vPl" = (
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocave)
+"vPo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobotany_Lab)
+"vPv" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"vPF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/tool/crowbar/red,
+/obj/item/tool/crowbar/red,
+/obj/item/tool/crowbar/red,
+/obj/item/tool/crowbar/red,
+/obj/item/flashlight,
+/obj/item/flashlight,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Emergency EVA";
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva/aux)
+"vPN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Escape Pod"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/escapepodport)
+"vQo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"vQq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secward"
+ },
+/obj/machinery/door/blast/shutters{
+ id = "Warden_Shutters";
+ name = "Warden Shutters";
+ dir = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/turf/simulated/floor/plating,
+/area/security/Wardens_Office)
+"vQt" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"vQw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"vQQ" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"vRj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/quartermaster)
+"vRs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"vRC" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"vRG" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/Locker_Room)
+"vRJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/structure/bed/chair/shuttle_padded,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"vSt" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "pr3_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/medical/Patient_3)
+"vSF" = (
+/obj/structure/transit_tube/station,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/transit_tube_pod{
+ dir = 4
+ },
+/turf/simulated/floor/bluegrid,
+/area/medical/cetus/hall)
+"vSM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"vSN" = (
+/obj/effect/floor_decal/carpet,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Galleryf1)
+"vSR" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"vTC" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 1
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"vTD" = (
+/obj/structure/table/glass,
+/obj/item/denecrotizer/medical,
+/obj/item/sleevemate,
+/obj/item/holosign_creator/medical,
+/obj/item/holosign_creator/medical,
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"vTH" = (
+/obj/effect/floor_decal/corner/paleblue/diagonal{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"vTT" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"vUu" = (
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -35;
+ pixel_y = 6
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"vUx" = (
+/turf/simulated/wall,
+/area/engineering/Breakroom)
+"vUT" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"vVi" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"vVw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/rnd,
+/turf/simulated/floor/plating,
+/area/rnd/cetus/hall)
+"vVZ" = (
+/turf/simulated/wall/r_wall,
+/area/asteroid/cetus/d2)
+"vWl" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"vWK" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm2)
+"vWT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "Chapel";
+ sortType = "Chapel"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_four)
+"vXa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"vXc" = (
+/obj/structure/transit_tube,
+/turf/space,
+/area/space)
+"vXe" = (
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"vXI" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"vXW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D3)
+"vYj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"vYG" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/light,
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -30;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"vYH" = (
+/obj/random/trash,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"vYL" = (
+/turf/simulated/mineral/cetus,
+/area/security/Firing_Range)
+"vYR" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"vZV" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"vZZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"waf" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"wai" = (
+/obj/item/stack/rods,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"waj" = (
+/obj/structure/cable{
+ icon_state = "5-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"waD" = (
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"waJ" = (
+/obj/structure/closet,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/maintenance/security,
+/obj/random/tech_supply/component,
+/obj/random/tech_supply/component,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"waQ" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/item/stool/padded,
+/obj/item/clothing/gloves/boxing/blue,
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/boxing,
+/area/crew_quarters/Gym)
+"waS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"waU" = (
+/obj/structure/closet/athletic_mixed,
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/turf/simulated/floor/tiled/monotile,
+/area/crew_quarters/Gym)
+"wbn" = (
+/obj/structure/window/basic,
+/obj/machinery/button/remote/driver{
+ id = "enginecore";
+ name = "Emergency Core Eject";
+ pixel_y = 2
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/floor/redgrid,
+/area/crew_quarters/heads/sc/chief)
+"wbp" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D1)
+"wbA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"wbF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/closet/jcloset,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/item/soap/nanotrasen,
+/obj/item/soap/nanotrasen,
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"wca" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"wcc" = (
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"wcN" = (
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Containment Pen";
+ req_access = list(47)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobiopublic";
+ name = "Containment Blast Doors";
+ opacity = 0;
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobiology_Lab)
+"wda" = (
+/obj/structure/table/bench/standard,
+/obj/item/starcaster_news,
+/obj/effect/floor_decal/corner/beige/diagonal,
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"wdo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Port Pod Hall";
+ pixel_x = -1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"wdF" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/storage/briefcase{
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/item/storage/briefcase{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"wdQ" = (
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/primary/seconddeck/dockhallway)
+"wdR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass{
+ name = "Joint Research";
+ req_one_access = list(47, 5)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/jrhall)
+"wdX" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/button/remote/blast_door{
+ id = "xenobio1station";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access = list(55);
+ pixel_x = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for a door to space.";
+ id = "xenobiostationext2";
+ name = "Containment Release Switch";
+ req_access = list(55);
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"wes" = (
+/obj/structure/closet/secure_closet/scientist,
+/obj/item/gps/science,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/clothing/under/swimsuit/fluff/science,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"weu" = (
+/obj/structure/closet/emcloset/legacy,
+/obj/random/flashlight,
+/obj/random/flashlight,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"weD" = (
+/obj/structure/table/bench/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"weF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"weR" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/machinery/door/window/northright{
+ req_access = list(5);
+ name = "Medical Reception"
+ },
+/obj/item/book/manual/stasis,
+/obj/item/radio{
+ anchored = 1;
+ canhear_range = 1;
+ frequency = 1487;
+ icon_state = "red_phone";
+ name = "Reception Emergency Phone"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/medsci)
+"wfb" = (
+/obj/structure/curtain/medical{
+ anchored = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/Robotics_Lab)
+"wfc" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"wff" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/twojrport)
+"wfA" = (
+/obj/structure/bed/chair/sofa/teal{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/beige/diagonal,
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"wfH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Port Subgrid";
+ name_tag = "Port Subgrid"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"wfV" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"wfY" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/beakers{
+ pixel_y = 12;
+ pixel_x = 6
+ },
+/obj/item/storage/box/beakers,
+/obj/machinery/button/windowtint{
+ id = "chemtint";
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -29;
+ dir = 4;
+ pixel_y = -7
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Chemistry)
+"wgd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/random/junk,
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"wgl" = (
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"wgE" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"wgI" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_four)
+"wgK" = (
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Detective Office";
+ dir = 10
+ },
+/obj/item/storage/secure/safe{
+ pixel_x = 5;
+ pixel_y = -26
+ },
+/turf/simulated/floor/carpet,
+/area/security/detectives_office)
+"wgQ" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"wha" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/engineering/cetus/atriumdeck2)
+"whb" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Joint Research Restroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/crew_quarters/cetus/jrrestrooms)
+"whc" = (
+/obj/machinery/atmospherics/binary/passive_gate{
+ dir = 4;
+ regulate_mode = 0;
+ unlocked = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"whi" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"whq" = (
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "32-8"
+ },
+/obj/structure/lattice,
+/obj/structure/disposalpipe/down{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/engineering/cetus/starsubstation)
+"whv" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"whL" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1;
+ name = "Port to Isolation"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"wir" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"wiE" = (
+/obj/structure/closet/secure_closet/hydroponics{
+ req_access = list(47)
+ },
+/obj/item/material/knife/machete/hatchet,
+/obj/item/material/minihoe,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"wiH" = (
+/obj/structure/table/reinforced,
+/obj/item/form_printer{
+ pixel_x = 1;
+ pixel_y = 7
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"wiP" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/Brig)
+"wiQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics Monitoring Room";
+ req_access = list(24)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/cetus/atriumdeck2)
+"wjo" = (
+/turf/simulated/mineral/cetus/edge,
+/area/maintenance/cetus/twosec)
+"wjy" = (
+/obj/machinery/conveyor{
+ id = "QMLoad";
+ dir = 8
+ },
+/obj/structure/closet/crate,
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/storage)
+"wjJ" = (
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/item/gps/engineering/atmos,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/clothing/under/swimsuit/fluff/engineering,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"wjM" = (
+/obj/machinery/recycling/crusher,
+/obj/machinery/conveyor{
+ id = "disposalsorter"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/button/garbosystem{
+ pixel_x = 10;
+ pixel_y = 17
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"wjY" = (
+/obj/machinery/vending/wardrobe/secdrobe,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 18
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Locker_Room)
+"wkb" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"wkc" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8;
+ target_pressure = 200
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"wkh" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/Xenobotany_Lab)
+"wks" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/cetus/jrhall)
+"wlf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"wls" = (
+/turf/simulated/wall/r_wall,
+/area/medical/Virology)
+"wlu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Engineering_Workshop)
+"wlZ" = (
+/obj/machinery/teleport/hub{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/tcomm/entrance/cetus)
+"wma" = (
+/obj/structure/table/standard,
+/obj/item/megaphone,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"wmE" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/book/codex/lore/news,
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"wmM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"wmN" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"wmY" = (
+/turf/simulated/wall,
+/area/storage/primary)
+"wno" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D3)
+"wnx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/vending/hydronutrients{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"wnL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "virology"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/plating,
+/area/medical/Virology)
+"wnT" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twostar)
+"wnX" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"wok" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"woo" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 29;
+ dir = 8
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"woF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"woG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"wpe" = (
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Galleryf1)
+"wpg" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Fore Substation Bypass"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "SUBS- Fore";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"wpo" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/mob/living/carbon/human/monkey,
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"wpr" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hosoffice"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/security/Reception)
+"wpB" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/medical/Distillery)
+"wpT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"wpV" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"wpW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"wqc" = (
+/obj/machinery/shieldgen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"wqf" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"wqp" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/cafeteriaf2)
+"wqq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "holodeck_tint"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/Holodeck)
+"wqG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"wqL" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/arrivals)
+"wqM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/polarized{
+ id = "virogenetics"
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "geneticsviro";
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/medical/Virology)
+"wqW" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"wrc" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/drinks/jar,
+/obj/item/paicard{
+ pixel_x = 4
+ },
+/obj/item/taperecorder{
+ pixel_x = -3
+ },
+/obj/item/rectape/random,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/heads/sc/hor)
+"wrj" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"wrv" = (
+/obj/machinery/suit_cycler/engineering,
+/obj/machinery/camera/network/command{
+ c_tag = "EVA - EVA 1";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"wrz" = (
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/machinery/camera/network/medbay{
+ c_tag = "MED - Patient Room C";
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_3)
+"wrQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/machinery/light,
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"wrV" = (
+/obj/machinery/door/airlock{
+ name = "Showers"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/medical/Restrooms)
+"wtp" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"wtr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"wtM" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/tealcarpet,
+/area/rnd/cetus/jrhall)
+"wtX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodport)
+"wui" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 8;
+ name = "Joint Research"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/jrhallway)
+"wur" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobotany_Lab)
+"wuB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Reception)
+"wuH" = (
+/obj/machinery/fitness/heavy/lifter,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/boxing/gym,
+/area/crew_quarters/Gym)
+"wuM" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"wuT" = (
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf1)
+"wvf" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twocave)
+"wvk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Cabin 4";
+ id_tag = "cabin4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/sleep/cetus/jrdorm4)
+"wvG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/sleevelobby)
+"wvH" = (
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"wvX" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Holodeck Port";
+ dir = 4
+ },
+/turf/simulated/floor/reinforced{
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/alphadeck)
+"wwy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Custodial Closet";
+ req_access = list(26)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/Custodial_Office)
+"wwV" = (
+/obj/machinery/atmospherics/unary/heater{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/Distillery)
+"wxy" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"wxO" = (
+/obj/machinery/computer/cloning{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/medical/Genetics_Lab)
+"wxP" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"wxQ" = (
+/obj/structure/closet/l3closet/medical,
+/obj/item/extinguisher/atmo{
+ desc = "A heavy duty fire extinguisher meant to fight large fires, this one has tape covering up an Atmospherics symbol, with the word \"Chemistry\" scribbled onto it.";
+ name = "chemistry fire extinguisher"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"wxW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"wxZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"wyd" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Research Access"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/medsci)
+"wyr" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"wyw" = (
+/obj/structure/window/reinforced/polarized{
+ id = "robotsurgery";
+ dir = 8
+ },
+/obj/structure/table/standard,
+/obj/item/defib_kit/jumper_kit/loaded,
+/obj/item/book/manual/robotics_cyborgs{
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Robotics_Lab)
+"wyF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/cetus/sleevelobby)
+"wyG" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"wyI" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobio1station";
+ name = "Containment Blast Doors";
+ opacity = 0;
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"wyV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ name = "Joint Research";
+ sortType = "Joint Research";
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/medical/medsci)
+"wze" = (
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/obj/structure/ladder,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twojrstar)
+"wzn" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"wzq" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"wzr" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/medical{
+ autoclose = 0;
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_interior";
+ locked = 1;
+ name = "Virology Interior Airlock";
+ req_access = list(39)
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1379;
+ master_tag = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_y = 23;
+ req_access = list(39);
+ pixel_x = -1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/Virology)
+"wzs" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/medical/reception)
+"wzt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"wzz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"wzC" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/random/trash_pile,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"wzV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Emergency EVA"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva/aux)
+"wAc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"wAf" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/obj/machinery/door/window/westright{
+ name = "Atmospherics Suits";
+ req_access = list(24)
+ },
+/obj/item/clothing/head/helmet/space/void/atmos/alt,
+/obj/item/clothing/suit/space/void/atmos/alt,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"wAh" = (
+/obj/machinery/floodlight{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twobar)
+"wAm" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"wAq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "lawyer_tint"
+ },
+/turf/simulated/floor/plating,
+/area/security/Internal_Affairs_Office)
+"wAF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva/aux)
+"wAL" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twobar)
+"wAR" = (
+/obj/structure/table/steel_reinforced,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/random/tech_supply,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"wBh" = (
+/obj/structure/bed/pillowpile,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm3)
+"wBj" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/hall)
+"wBz" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/turf/simulated/floor/tiled/dark,
+/area/security/checkpoint2)
+"wBA" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"wBX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"wCa" = (
+/obj/random/trash,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"wCe" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"wCo" = (
+/obj/structure/table/bench/standard,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"wCO" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"wDg" = (
+/obj/structure/closet,
+/obj/item/clothing/shoes/galoshes,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/clothing/accessory/armband/science,
+/obj/item/toy/figure/janitor,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/effect/floor_decal/spline/plain/cee,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"wDx" = (
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"wDz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"wDH" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"wEg" = (
+/obj/structure/bookcase{
+ name = "bookcase (Reference- Misc)"
+ },
+/obj/item/book/manual/hydroponics_pod_people,
+/obj/item/book/manual/evaguide,
+/obj/item/book/manual/detective,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"wEr" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Evidence Storage";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Evidence_Storage)
+"wEz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"wEX" = (
+/obj/structure/dispenser/oxygen,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/seconddeck/dockhallway)
+"wEY" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D2)
+"wFh" = (
+/obj/machinery/status_display,
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/hall)
+"wFt" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/cafeteriaf2)
+"wFu" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"wFF" = (
+/mob/living/simple_mob/animal/passive/mouse/white/virology,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/white,
+/area/medical/Virology)
+"wFI" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"wFN" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"wGa" = (
+/obj/structure/window/reinforced/tinted/frosted{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 10
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 9
+ },
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower/medical{
+ anchored = 1
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Resleeving)
+"wGb" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/medical/cetus/sleevelobby)
+"wGU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"wGY" = (
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/dockhallway)
+"wGZ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"wHf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"wHl" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"wHM" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "32-8"
+ },
+/turf/simulated/open,
+/area/engineering/cetus/starsubstation)
+"wHS" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"wHU" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"wIL" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/table/standard,
+/obj/machinery/reagentgrinder,
+/obj/item/stack/material/phoron{
+ amount = 5
+ },
+/obj/machinery/light_switch{
+ pixel_y = -11;
+ pixel_x = -26;
+ dir = 8
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"wIN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/primary/seconddeck/dockhallway)
+"wJi" = (
+/obj/random/pottedplant,
+/obj/machinery/camera/network/command{
+ c_tag = "COM - HoP's Office";
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"wJA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Shower"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"wJK" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/wall/r_wall,
+/area/medical/Chemistry)
+"wKa" = (
+/obj/structure/sink/puddle,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"wKd" = (
+/obj/structure/bed/chair/wood,
+/turf/simulated/floor/plating,
+/area/maintenance/zerobar)
+"wKe" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0;
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ id_tag = "MedbayFoyer2";
+ name = "Medical Bay";
+ req_access = list(5);
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/cetus/hall)
+"wKh" = (
+/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,
+/obj/machinery/atmospherics/pipe/zpipe/up/supply,
+/obj/structure/disposalpipe/up,
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/structure/cable{
+ icon_state = "16-0"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"wKv" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "w1_b_airlock";
+ landmark_tag = "w1_b";
+ name = "Dock 1-B"
+ },
+/turf/space,
+/area/space)
+"wKy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"wKF" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/item/clothing/suit/space/void/medical,
+/obj/item/clothing/suit/space/void/medical,
+/obj/item/clothing/head/helmet/space/void/medical,
+/obj/item/clothing/head/helmet/space/void/medical,
+/obj/machinery/door/window/southleft{
+ req_one_access = list(5,18);
+ name = "E.V.A."
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/EMT_Bay)
+"wKK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"wKL" = (
+/obj/structure/disposalpipe/up{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twoap)
+"wLa" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Biohazard";
+ name = "Biohazard Shutter";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/polarized{
+ id = "researchoffice";
+ dir = 8
+ },
+/obj/machinery/door/window/northleft{
+ name = "Research and Development Desk";
+ req_access = list(7)
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/rnd/Research_Lab)
+"wLh" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central7,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/monotile,
+/area/hangar/three)
+"wLk" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/sleevelobby)
+"wLv" = (
+/obj/structure/table/steel,
+/obj/item/gps/medical{
+ pixel_x = -8
+ },
+/obj/item/gps/medical{
+ pixel_x = -4
+ },
+/obj/item/gps/medical,
+/obj/item/gps/medical{
+ pixel_x = 4
+ },
+/obj/item/gps/medical{
+ pixel_x = 8
+ },
+/obj/machinery/firealarm{
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/EMT_Bay)
+"wLL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"wLN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"wLX" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/tank/emergency/oxygen/engi,
+/obj/item/clothing/mask/gas,
+/obj/item/melee/umbrella/random,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/arrivals)
+"wMb" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S-Pass"
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"wMl" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"wMs" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/item/cane{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/cane{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/structure/table/glass,
+/obj/item/storage/box/rxglasses{
+ pixel_y = 6;
+ pixel_x = -7
+ },
+/obj/item/wheelchair{
+ pixel_y = 8;
+ pixel_x = 3
+ },
+/obj/item/wheelchair,
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/button/windowtint/multitint{
+ id = "resleever";
+ pixel_x = -11;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Resleeving)
+"wMu" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"wMz" = (
+/obj/structure/sign/directions/evac{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/medical/Chemistry)
+"wMV" = (
+/obj/structure/table/standard,
+/obj/item/storage/box,
+/obj/item/tool/crowbar,
+/obj/item/tool/crowbar,
+/obj/item/tool/crowbar,
+/obj/item/tool/crowbar,
+/obj/item/hand_labeler,
+/obj/item/flashlight,
+/obj/item/flashlight,
+/obj/item/flashlight,
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -28;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Locker_Room)
+"wMY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"wNb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"wNs" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"wOj" = (
+/obj/machinery/beehive,
+/turf/simulated/floor/grass,
+/area/hydroponics)
+"wOy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Central Subgrid";
+ name_tag = "Central Subgrid"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"wOC" = (
+/turf/simulated/wall,
+/area/maintenance/zerobar)
+"wOE" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/security/Internal_Affairs_Office)
+"wOS" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"wPb" = (
+/obj/item/modular_computer/console/preset/medical,
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"wPC" = (
+/obj/item/form_printer{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"wPS" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"wQe" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/lobby)
+"wQo" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/jrhall)
+"wQC" = (
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_four)
+"wQJ" = (
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"wQL" = (
+/obj/structure/table/woodentable,
+/obj/item/storage/fancy/candle_box,
+/turf/simulated/floor/carpet,
+/area/chapel/main)
+"wQS" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"wQT" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/twojrport)
+"wRc" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/secondary/entry/D1)
+"wRp" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"wRO" = (
+/obj/structure/table/woodentable,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/clipboard,
+/obj/item/folder/blue,
+/obj/item/folder/red,
+/obj/item/folder/blue,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"wSc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Chemistry Distillery";
+ req_access = list(5)
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/Distillery)
+"wSg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/tech)
+"wSl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm3)
+"wSM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"wSV" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/Libraryf1)
+"wTt" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"wTA" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"wTH" = (
+/obj/structure/transit_tube{
+ icon_state = "D-NW"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/jrhallway)
+"wUl" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/head/helmet/space/void/engineering,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/engineering,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/bot_outline/yellow,
+/obj/machinery/door/window/eastleft{
+ name = "Engineering Suits";
+ req_access = list(11)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"wUH" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"wUQ" = (
+/obj/structure/closet/secure_closet/scientist,
+/obj/item/gps/science,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/clothing/under/swimsuit/fluff/science,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"wUR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"wUX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"wUY" = (
+/obj/random/vendorfood,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"wVa" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/heads/sc/hos)
+"wVb" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/Engineering_EVA)
+"wVf" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/central_two)
+"wVs" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"wVu" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/Xenobiology_Lab)
+"wVV" = (
+/obj/structure/table/bench/glass,
+/obj/item/clipboard,
+/obj/item/paper,
+/obj/item/paper,
+/obj/item/pen,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/item/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Surgery_Viewing)
+"wWf" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/ai_monitored/storage/eva/aux)
+"wWj" = (
+/obj/machinery/light,
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"wWH" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"wWI" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"wXb" = (
+/turf/simulated/floor/boxing,
+/area/crew_quarters/Gym)
+"wXx" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/sign/directions/security/interrogation{
+ dir = 8;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"wXB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/sign/dock/two,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"wXD" = (
+/obj/structure/table/reinforced,
+/obj/random/tool,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"wXK" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"wXM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_research,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/jrhallway)
+"wYc" = (
+/obj/structure/table/standard,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/carpet,
+/area/security/briefing_room)
+"wYm" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Common Brig 4";
+ dir = 5
+ },
+/turf/simulated/floor/glass/reinforced,
+/area/security/Brig)
+"wYo" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_3)
+"wYL" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/floortube{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"wYM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"wYV" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twocargo)
+"wYX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"wZn" = (
+/obj/effect/mist,
+/turf/simulated/floor/water/hotspring{
+ depth = 1
+ },
+/area/crew_quarters/sauna)
+"wZS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"xaa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/sign/poster,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"xaf" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/sign/directions/cargo/mining{
+ dir = 1;
+ pixel_x = -32
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"xag" = (
+/obj/machinery/vending/snack{
+ dir = 8;
+ pixel_x = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"xaw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "pr1_window_tint"
+ },
+/turf/simulated/floor/plating,
+/area/medical/Patient_1)
+"xaO" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"xaZ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"xbj" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/atriumdeck2)
+"xbD" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"xbI" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/shield_diffuser,
+/obj/machinery/access_button{
+ name = "exterior access button";
+ pixel_x = 32;
+ pixel_y = -10
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D2)
+"xbK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"xbS" = (
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/item/gps/engineering/atmos,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/clothing/under/swimsuit/fluff/engineering,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"xcf" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"xci" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Chief Engineer's Office";
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/heads/sc/chief)
+"xck" = (
+/obj/machinery/shower,
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower/engineering,
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"xcz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ sortType = "Drone Fabricators";
+ name = "Drone Fabricators"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_two)
+"xcI" = (
+/obj/structure/table/standard,
+/obj/item/megaphone,
+/obj/item/taperecorder,
+/obj/item/rectape/random,
+/obj/item/clothing/glasses/hud/security,
+/obj/item/radio,
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -28;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Locker_Room)
+"xcX" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/hangar/cetus/explofoyer)
+"xdf" = (
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Autoresleeving)
+"xdC" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twocargo)
+"xdE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"xdH" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"xeh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid,
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"xen" = (
+/obj/machinery/seed_extractor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"xet" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"xeM" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Robotics_Lab)
+"xeV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"xeW" = (
+/turf/simulated/open,
+/area/security/Brig)
+"xfK" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"xfQ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/random/pottedplant,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"xgh" = (
+/obj/machinery/vending/loadout/uniform,
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Autoresleeving)
+"xgj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "hottubtint"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/sauna)
+"xgx" = (
+/turf/simulated/floor/plating,
+/area/security/Firing_Range)
+"xgJ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "8-9"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/Wardens_Office)
+"xgO" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/escape_pod1/station)
+"xhE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/medical/Distillery)
+"xhQ" = (
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"xio" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"xiH" = (
+/obj/structure/transit_tube{
+ icon_state = "S-NE"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/jrhallway)
+"xiN" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"xjw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"xjO" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/lobby)
+"xkg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/stationshuttle)
+"xkj" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/twojrstar)
+"xkS" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/hor)
+"xkV" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"xkW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_one)
+"xli" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -15;
+ pixel_y = -3
+ },
+/obj/machinery/button/flasher{
+ name = "Test Cell Flasher";
+ id = "geneflash";
+ pixel_x = -29
+ },
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"xlo" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"xlI" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"xlZ" = (
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"xmr" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Engineering Access"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/Reception)
+"xmv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"xmC" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/item/stack/material/glass/phoronrglass{
+ amount = 20
+ },
+/obj/fiftyspawner/rods,
+/obj/fiftyspawner/rods,
+/obj/random/tech_supply,
+/obj/machinery/light{
+ layer = 3
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"xnf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/medical/medsci)
+"xnr" = (
+/obj/machinery/washing_machine,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"xny" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Psychiatrist"
+ },
+/turf/simulated/floor/carpet/sblucarpet,
+/area/medical/psych)
+"xnz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/crew_quarters/cetus/jrlounge)
+"xnI" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/bed/chair/sofa/corp/right{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/rnd/cetus/jrhall)
+"xnJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"xoc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_research{
+ req_one_access = list(43,67);
+ name = "Exploration Foyer"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/hangar/cetus/explofoyer)
+"xoj" = (
+/obj/structure/bed/chair,
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"xom" = (
+/obj/machinery/button/remote/airlock{
+ id = "cabin3";
+ name = "Bolt Control";
+ pixel_y = -25;
+ specialfunctions = 4;
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/sleep/cetus/jrdorm3)
+"xox" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"xoz" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"xoS" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/secondary/entry/D2)
+"xpb" = (
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"xpr" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"xpK" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"xpO" = (
+/obj/item/stool/padded,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26;
+ pixel_x = -32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"xpQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf2)
+"xpT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8;
+ target_pressure = 200
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"xpX" = (
+/obj/structure/noticeboard/airlock,
+/turf/simulated/wall,
+/area/crew_quarters/Chapel_Office)
+"xqf" = (
+/obj/machinery/gateway{
+ dir = 10
+ },
+/obj/effect/landmark{
+ name = "JoinLateStationGateway"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/teleporter/departure)
+"xqj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"xql" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"xqn" = (
+/obj/structure/table/steel,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen/red{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/item/pen/blue{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/item/pen{
+ pixel_y = 7;
+ pixel_x = 2
+ },
+/obj/item/taperecorder,
+/obj/random/toolbox,
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"xqs" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"xqw" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Research_Lab)
+"xqy" = (
+/obj/effect/floor_decal/steeldecal/steel_decals_central5,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/light,
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -43;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"xqA" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -8
+ },
+/obj/structure/mirror{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"xqK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"xqN" = (
+/obj/structure/dispenser/phoron,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ai_monitored/storage/eva/aux)
+"xqR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/twosci)
+"xqX" = (
+/obj/structure/bed/chair/sofa/right/orange{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/cafeteriaf2)
+"xrn" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"xrp" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/teleporter/departure)
+"xrA" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"xrE" = (
+/obj/structure/bed/chair/sofa/blue{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/medical/psych)
+"xrF" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"xrJ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"xsb" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"xsj" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/red,
+/area/security/Brig)
+"xsz" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/hall)
+"xsU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Art Cafe"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/Galleryf1)
+"xtd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/jrlounge)
+"xtf" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"xty" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Robotics";
+ dir = 6
+ },
+/obj/structure/table/standard,
+/obj/machinery/computer/med_data/laptop,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/Robotics_Lab)
+"xtA" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "secbriefing"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/security/briefing_room)
+"xtB" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"xtF" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "xenobio4station";
+ name = "Containment Blast Doors";
+ pixel_y = 3;
+ req_access = list(55);
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"xuk" = (
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"xun" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/security/Brig)
+"xur" = (
+/obj/structure/railing/overhang/grey,
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/quartermaster/Recycling)
+"xut" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"xuy" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"xuI" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "xenobio2station";
+ name = "Containment Blast Doors";
+ opacity = 0;
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/rnd/Xenobiology_Lab)
+"xuO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"xuR" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/twojrport)
+"xuS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Brig Hallway 3";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"xuT" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D1)
+"xuU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"xuY" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"xve" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"xvh" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D2)
+"xvl" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/structure/sink/kitchen{
+ dir = 8;
+ pixel_x = -13
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"xvm" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/jrrestrooms)
+"xvn" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 8
+ },
+/turf/simulated/shuttle/wall/voidcraft/blue,
+/area/shuttle/expoutpost/station)
+"xvt" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/briefing_room)
+"xvw" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/Brig)
+"xvx" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ sortType = "Janitor Closet";
+ name = "Janitor Closet"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"xvy" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"xvH" = (
+/obj/machinery/light,
+/obj/machinery/atm{
+ pixel_y = -30
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"xwl" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"xwo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"xwp" = (
+/obj/machinery/vending/wardrobe/engidrobe,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Locker_Room)
+"xwr" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/seconddeck/dockhallway)
+"xxj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/item/frame,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"xxk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"xxp" = (
+/obj/machinery/vending/cola{
+ dir = 8;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/observatory)
+"xxr" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"xxu" = (
+/obj/structure/outcrop/iron,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"xxw" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"xxz" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Xenoflora Isolation Aft";
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/Xenobotany_Isolation_Chamber)
+"xxA" = (
+/obj/machinery/vending/coffee{
+ dir = 4;
+ pixel_x = -6
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -38
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/observatory)
+"xxF" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"xxJ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ name = "Engineering Locker Room";
+ req_one_access = list(10)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/Locker_Room)
+"xxX" = (
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/dockrestrooms)
+"xyu" = (
+/obj/random/cutout,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/twosec)
+"xyM" = (
+/turf/simulated/floor/tiled,
+/area/maintenance/zerobar)
+"xyS" = (
+/obj/structure/table/bench/wooden{
+ pixel_y = 7
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ sortType = "Art Cafe";
+ name = "Art Cafe"
+ },
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/item/newspaper{
+ pixel_y = 3
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf1)
+"xyX" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf2)
+"xzm" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/stand_clear/yellow{
+ pixel_y = -3
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/Custodial_Office)
+"xzo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/structure/dummystairs,
+/obj/machinery/door/window/brigdoor/southleft{
+ name = "Secure Door";
+ req_access = list(63)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/briefing_room)
+"xzv" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"xzw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/medical/reception)
+"xzy" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/hallway/secondary/entry/D1)
+"xzD" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "medbayquar";
+ name = "Medbay Emergency Lockdown Shutters";
+ opacity = 0
+ },
+/obj/machinery/door/window/westright{
+ name = "Chemistry Desk";
+ req_access = list(33)
+ },
+/obj/machinery/door/window/eastright{
+ name = "Chemistry Desk"
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 4;
+ icon_state = "shutter0";
+ id = "chemwindow";
+ name = "Chemistry Window Shutters";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/Chemistry)
+"xzI" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"xAt" = (
+/obj/structure/table/reinforced,
+/obj/item/circuitboard/aicore{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/circuitboard/teleporter,
+/obj/item/cartridge/signal/science{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/cartridge/signal/science{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/cartridge/signal/science{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/megaphone,
+/obj/item/clothing/glasses/welding/superior,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/heads/sc/hor)
+"xAF" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/donut,
+/turf/simulated/floor/carpet,
+/area/security/briefing_room)
+"xAP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"xBF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance{
+ name = "Hydroponics Maintenance";
+ req_access = list(35)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twobar)
+"xBM" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/twojrport)
+"xCe" = (
+/obj/effect/floor_decal/chapel{
+ dir = 4
+ },
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/tiled/dark,
+/area/chapel/main)
+"xCg" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/reception)
+"xCl" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/item/storage/backpack/dufflebag/syndie,
+/obj/item/storage/backpack/dufflebag/syndie,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"xCJ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"xDc" = (
+/obj/structure/railing,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"xDg" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/space,
+/area/space)
+"xDL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"xEW" = (
+/turf/simulated/wall,
+/area/engineering/cetus/portsubstation)
+"xFd" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/computer/guestpass{
+ pixel_y = -25;
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"xFJ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/item/storage/photo_album{
+ pixel_y = -10
+ },
+/turf/simulated/floor/wood,
+/area/security/detectives_office)
+"xFR" = (
+/obj/structure/table/steel,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 5
+ },
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Circuitry_Den)
+"xFS" = (
+/obj/machinery/photocopier,
+/obj/machinery/light,
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"xFV" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"xGB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_two)
+"xGI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/Galleryf1)
+"xGL" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"xHd" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/seconddeck/dockhallway)
+"xHn" = (
+/obj/machinery/vending/hydronutrients,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"xHx" = (
+/obj/random/soap,
+/turf/simulated/floor/tiled/kafel_full,
+/area/engineering/engi_restroom)
+"xHF" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"xIf" = (
+/obj/structure/bed/chair/sofa/right/blue{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/hallway/primary/seconddeck/dockhallway)
+"xIu" = (
+/obj/item/stool/padded,
+/obj/effect/landmark/start{
+ name = "Janitor"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Custodial_Office)
+"xIS" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/twosec)
+"xJc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"xJn" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Storage)
+"xJG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twofp)
+"xJL" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Engineering_EVA)
+"xJY" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/item/multitool,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"xKg" = (
+/obj/structure/closet/crate,
+/obj/random/material,
+/obj/random/material,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"xKu" = (
+/obj/effect/shuttle_landmark/southern_cross/sling_station,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/expoutpost/station)
+"xKA" = (
+/obj/structure/lattice,
+/obj/structure/railing,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"xKR" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"xKT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Xenobiology_Lab)
+"xKZ" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"xLy" = (
+/obj/machinery/firealarm{
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"xLD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"xLR" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/Custodial_Office)
+"xLS" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/table/bench/steel,
+/obj/random/drinkbottle,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"xLU" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/jrhall)
+"xLV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/vomit/old,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"xMV" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/button/remote/blast_door{
+ id = "xenobio5station";
+ name = "Containment Blast Doors";
+ pixel_y = 4;
+ req_access = list(55);
+ pixel_x = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for a door to space.";
+ id = "xenobiostationext1";
+ name = "Containment Release Switch";
+ req_access = list(55);
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"xNi" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"xNl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/primary)
+"xNB" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"xNF" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/item/radio/headset,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/prison{
+ c_tag = "SEC - Brig Cell 1";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"xOi" = (
+/obj/structure/sign/hangar/two,
+/turf/simulated/wall/r_wall,
+/area/hangar/three)
+"xOv" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/open,
+/area/crew_quarters/cetus/cafeteriaf2)
+"xOy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"xOE" = (
+/obj/structure/sink/kitchen{
+ dir = 4;
+ pixel_x = 13
+ },
+/obj/item/reagent_containers/glass/bucket,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobotany_Lab)
+"xOG" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/rnd/cetus/hall)
+"xOS" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"xOY" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"xPu" = (
+/obj/structure/closet/crate,
+/obj/item/gun/energy/sizegun,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/flashlight,
+/obj/random/flashlight,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"xPv" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/rnd/Research_Lab)
+"xPI" = (
+/turf/simulated/floor/tiled/white,
+/area/rnd/research_restroom_sc)
+"xPS" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/teleporter/arrivals)
+"xQb" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrport)
+"xQc" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D2)
+"xQd" = (
+/obj/structure/disposalpipe/junction/yjunction,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"xQC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/fancy{
+ dir = 1
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/medical/medsci)
+"xQP" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"xRo" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"xRu" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosec)
+"xSw" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Hallway"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/cetus/atriumdeck2)
+"xSH" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/obj/machinery/button/windowtint{
+ id = "hottubtint";
+ pixel_x = 23;
+ pixel_y = 23;
+ req_access = list(58)
+ },
+/obj/machinery/button/remote/airlock{
+ id = "hottub";
+ name = "Hot Tub Bolts";
+ pixel_y = 25;
+ pixel_x = 32;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/sauna)
+"xTh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/engineering/cetus/atriumdeck2)
+"xTS" = (
+/obj/machinery/vending/tool,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/storage/primary)
+"xTU" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/twosec)
+"xUy" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"xUY" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/medical/Genetics_Lab)
+"xVb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Dock"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D1)
+"xVf" = (
+/obj/machinery/bluespace_beacon,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/entrance/cetus)
+"xVm" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"xVs" = (
+/obj/machinery/vending/fitness,
+/obj/effect/floor_decal/corner/beige/diagonal,
+/turf/simulated/floor/tiled,
+/area/medical/Lounge)
+"xVB" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/hydro,
+/area/hydroponics)
+"xVI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/docklock)
+"xVM" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/accessory/armband/cargo,
+/obj/item/clothing/accessory/armband/cargo,
+/obj/item/clothing/accessory/armband/cargo,
+/obj/item/retail_scanner/cargo,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/storage)
+"xVN" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/atriumd2)
+"xVQ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/chem)
+"xVY" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"xWx" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"xWy" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/D3)
+"xWD" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Holodeck)
+"xWG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/jrhallway)
+"xWO" = (
+/obj/structure/transit_tube{
+ icon_state = "D-NE"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/jrhallway)
+"xWW" = (
+/obj/machinery/light,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_y = -30;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"xXH" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/multi,
+/obj/item/folder/white_rd,
+/obj/item/stamp/rd{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/heads/sc/hor)
+"xXT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/hydro,
+/area/rnd/Xenobotany_Lab)
+"xYx" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/steeldecal/steel_decals_central5{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/Gym)
+"xYE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/security{
+ id_tag = "detdoor";
+ name = "Detective";
+ req_access = list(4);
+ req_one_access = null
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/detectives_office)
+"xYS" = (
+/obj/item/roller{
+ pixel_y = -6
+ },
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/structure/table/rack/shelf,
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/EMT_Bay)
+"xYW" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/quartermaster/Recycling)
+"xYZ" = (
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/obj/structure/ladder,
+/turf/simulated/open,
+/area/maintenance/cetus/twocave)
+"xZl" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/shield_diffuser,
+/obj/structure/fans/tiny,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D2)
+"xZp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"xZx" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/carpet/graycarpet,
+/area/tcomm/tcomfoyer)
+"xZz" = (
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"xZG" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/tiled/dark,
+/area/security/Internal_Affairs_Office)
+"xZJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twojrstar)
+"xZR" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"xZT" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = -22;
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/Reception)
+"yaN" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twosci)
+"yaY" = (
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/central_three)
+"ybk" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Dock"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D3)
+"ybs" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/bed/chair/sofa/corp/right{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/rnd/cetus/jrhall)
+"ybz" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"ybK" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/Chemistry)
+"ybM" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills{
+ dir = 8
+ },
+/obj/item/gps/command,
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 30
+ },
+/obj/machinery/computer/guestpass{
+ pixel_x = 28;
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/hop)
+"ybN" = (
+/obj/machinery/suit_cycler/mining,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/storage/eva)
+"ybR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Arrivals Lounge";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/secondary/entry/docking_lounge)
+"ycF" = (
+/obj/structure/window/reinforced,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/rnd/Xenobiology_Lab)
+"ycO" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/security/Wardens_Office)
+"ycP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/checkpoint2)
+"ycU" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/cetus/atriumdeck2)
+"ycW" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"ydn" = (
+/turf/simulated/floor/carpet/blucarpet,
+/area/hallway/secondary/entry/docking_lounge)
+"ydv" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"ydB" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/rnd/research_restroom_sc)
+"ydD" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/Patient_3)
+"yeb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"yee" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clamp,
+/obj/item/clamp,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_EVA)
+"yef" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/hall)
+"yei" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/medical/Restrooms)
+"yej" = (
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/maintenance/cetus/auxsupport)
+"yeF" = (
+/obj/structure/bookcase{
+ name = "bookcase (Reference- Culinary)"
+ },
+/obj/item/book/manual/bar_guide,
+/obj/item/book/manual/barman_recipes,
+/obj/item/book/manual/chef_recipes,
+/obj/item/book/codex/chef_recipes,
+/obj/item/book/manual/cook_guide,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"yeG" = (
+/obj/machinery/vending/wardrobe/chapdrobe,
+/turf/simulated/floor/lino,
+/area/crew_quarters/Chapel_Office)
+"yeS" = (
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"yeT" = (
+/turf/simulated/mineral/cetus/edge,
+/area/asteroid/cetus/d2)
+"yeV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/ai_monitored/storage/eva/aux)
+"yfc" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/Brig)
+"yfo" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"yfy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/research{
+ name = "Workshop";
+ req_access = list(7);
+ req_one_access = list(47)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/Research_Lab)
+"yfD" = (
+/obj/random/junk,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/solars)
+"yfU" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Auxiliary Storage";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/storage/tools)
+"ygs" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/starsubstation)
+"ygJ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/security/Reception)
+"yhe" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/monotile,
+/area/hallway/secondary/entry/D2)
+"yhy" = (
+/turf/simulated/wall,
+/area/crew_quarters/kitchen)
+"yhY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/atrium/primary)
+"yit" = (
+/turf/simulated/wall,
+/area/chapel/main)
+"yiy" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/green/border,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/central_three)
+"yiz" = (
+/obj/structure/closet/bombcloset,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/Xenobiology_Lab)
+"yiZ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hangar/three)
+"yjt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/medsci)
+"yjw" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-5"
+ },
+/turf/simulated/floor/tiled,
+/area/security/Brig)
+"yjO" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/cetus/jrrestrooms)
+"ykl" = (
+/obj/machinery/vending/engivend,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Engineering_Workshop)
+"ykm" = (
+/obj/structure/closet/secure_closet{
+ desc = "It's an immobile card-locked storage unit. A note on the door reads: It's dangerous to go alone. This should help a little bit.";
+ name = "Press Locker";
+ req_one_access = list(21,37)
+ },
+/obj/item/clothing/shoes/boots/combat{
+ desc = "A pair of steel-toed synthleather boots. The tag indicates this pair belongs to the Librarian.";
+ name = "press combat boots"
+ },
+/obj/item/clothing/shoes/boots/combat{
+ desc = "A pair of steel-toed synthleather boots. The tag indicates this pair belongs to the Librarian.";
+ name = "press combat boots"
+ },
+/obj/item/clothing/under/suit_jacket/navy/skirt,
+/obj/item/clothing/under/suit_jacket/navy,
+/obj/item/clothing/gloves/swat{
+ desc = "These tactical gloves are somewhat fire and impact-resistant. The tag within indicates that this pair belongs to the Librarian.";
+ name = "press gloves"
+ },
+/obj/item/clothing/gloves/swat{
+ desc = "These tactical gloves are somewhat fire and impact-resistant. The tag within indicates that this pair belongs to the Librarian.";
+ name = "press gloves"
+ },
+/obj/item/clothing/suit/storage/vest/press,
+/obj/item/clothing/suit/storage/vest/press,
+/obj/item/clothing/head/helmet{
+ desc = "Standard issue gear for frontline press. Protects the head from impacts.";
+ name = "press helmet"
+ },
+/obj/item/clothing/head/helmet{
+ desc = "Standard issue gear for frontline press. Protects the head from impacts.";
+ name = "press helmet"
+ },
+/obj/item/clothing/accessory/armor/helmcover/navy,
+/obj/item/clothing/accessory/armor/helmcover/navy,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf1)
+"ykv" = (
+/turf/simulated/wall/r_wall,
+/area/ai_monitored/storage/eva/aux)
+"ykC" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/Engineering_Workshop)
+"ykT" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/primary)
+"yle" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/quartermaster/QM_Office)
+"yls" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/secondary/entry/D3)
+"ylv" = (
+/obj/structure/transit_tube,
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/greengrid,
+/area/rnd/cetus/hall)
+"ylN" = (
+/obj/item/storage/backpack/dufflebag/syndie/med,
+/obj/random/flashlight,
+/obj/structure/closet,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/mainttoyloot,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twomed)
+"ylY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "5-9"
+ },
+/obj/machinery/light/small/yellowed,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/twostar)
+"ymh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/storage/primary)
+
+(1,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(2,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(3,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(4,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(5,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(6,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(7,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(8,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(9,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(10,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(11,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(12,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(13,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(14,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(15,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(16,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(17,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(18,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(19,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(20,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(21,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(22,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(23,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(24,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(25,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(26,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(27,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(28,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(29,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(30,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(31,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(32,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(33,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(34,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(35,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+eBh
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(36,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+tfP
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+cLh
+cLh
+cLh
+cLh
+kmJ
+cLh
+cLh
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(37,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+xBM
+kZC
+kZC
+kZC
+iUM
+kZC
+kZC
+xBM
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+cLh
+cLh
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(38,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+xBM
+nhw
+ljC
+kAn
+ulA
+frO
+tHH
+xBM
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+cLh
+cLh
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(39,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+iMO
+xBM
+aPt
+azP
+ljC
+vuR
+aIn
+qpU
+xBM
+esf
+esf
+esf
+esf
+esf
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(40,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+xBM
+nzo
+vBh
+ean
+wff
+dHb
+nzo
+xBM
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+aKL
+tGB
+tGB
+tGB
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(41,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+esf
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+nzo
+nzo
+kAn
+hiN
+nzo
+nzo
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+esf
+esf
+esf
+esf
+gxG
+cIp
+jXY
+tGB
+tGB
+tGB
+oJw
+oJw
+oJw
+cLh
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(42,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+esf
+iMO
+bRa
+bRa
+bRa
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+nzo
+nzo
+nzo
+nzo
+nzo
+iMO
+iMO
+nzo
+edl
+png
+nzo
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+gxG
+uAV
+ham
+cdo
+aaG
+tGB
+tGB
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(43,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+iMO
+iMO
+iMO
+bRa
+ufw
+bRa
+bRa
+bRa
+bRa
+bRa
+bRa
+iMO
+nzo
+vBG
+lXT
+rFd
+nzo
+nzo
+nzo
+nzo
+eMT
+rim
+nzo
+nzo
+nzo
+nzo
+nzo
+iMO
+iMO
+iMO
+iMO
+osi
+osi
+osi
+osi
+hQz
+xtd
+fEu
+xnz
+cfM
+tGB
+tGB
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(44,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+iMO
+iMO
+iMO
+bRa
+bRa
+ufw
+hrJ
+bRa
+bRa
+bRa
+ufw
+bRa
+bRa
+nzo
+xuR
+ojv
+lLE
+qzl
+cJm
+wQT
+nzo
+ean
+rim
+ahb
+mFX
+mFX
+ahb
+nzo
+iMO
+iMO
+iMO
+iMO
+osi
+gah
+uxe
+osi
+iTe
+rCo
+igg
+mMQ
+qfS
+aPY
+aKL
+esf
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(45,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+iMO
+iMO
+iMO
+bRa
+bRa
+ufw
+ufw
+ufw
+ufw
+ufw
+ufw
+ufw
+ufw
+bRa
+nzo
+pnm
+vBG
+ajb
+qzl
+luz
+wQT
+nzo
+ahb
+rim
+bRa
+xBM
+mFX
+mFX
+nzo
+iMO
+iMO
+iMO
+iMO
+osi
+wBh
+xom
+osi
+tGB
+gZy
+gxG
+fMt
+bnd
+dvI
+gxG
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(46,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+bRa
+sQB
+hrJ
+ufw
+ufw
+ufw
+ufw
+iim
+bRa
+ufw
+bRa
+nzo
+cGo
+vBG
+bDC
+ojv
+ojv
+cGo
+aIP
+ahb
+lPo
+xBM
+bRa
+mFX
+mFX
+nzo
+iMO
+iMO
+iMO
+iMO
+osi
+nUn
+wSl
+jBV
+sdi
+eAr
+aOR
+aOR
+aOR
+aOR
+gxG
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(47,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+bRa
+bRa
+bRa
+ufw
+ufw
+ufw
+ufw
+bRa
+bRa
+ufw
+hrJ
+nzo
+qzl
+hun
+wQT
+sXf
+luz
+dYG
+nzo
+gAX
+rim
+bRa
+xBM
+mFX
+mFX
+nzo
+iMO
+iMO
+iMO
+iMO
+osi
+osi
+osi
+osi
+nyu
+jqV
+aOR
+kqV
+plH
+aOR
+iMO
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(48,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+bRa
+bRa
+ufw
+ufw
+hrJ
+ufw
+ufw
+bRa
+ufw
+nzo
+tPu
+uRM
+wQT
+qzl
+vCN
+wQT
+nzo
+dkC
+ewh
+xBM
+bRa
+mFX
+mFX
+nzo
+iMO
+iMO
+iMO
+iMO
+eEO
+jqR
+eUB
+eEO
+muR
+nOg
+wvk
+tFA
+aWF
+aOR
+iMO
+esf
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(49,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+bRa
+bRa
+ufw
+ufw
+ufw
+ufw
+ufw
+ufw
+nzo
+nzo
+nzo
+nzo
+nzo
+nzo
+nzo
+nzo
+ahb
+rim
+vBh
+vBh
+rjs
+mFX
+nzo
+bRa
+bRa
+bRa
+bRa
+eEO
+fRW
+vWK
+cbc
+pvp
+hZg
+aOR
+mia
+daN
+aOR
+iMO
+esf
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(50,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+bRa
+bRa
+ufw
+ufw
+ufw
+ufw
+ufw
+aIP
+ahb
+ahb
+qpU
+uVC
+ahb
+ahb
+ahb
+qpU
+sLU
+bmJ
+lMa
+stx
+stx
+fEw
+eyh
+wSM
+chJ
+bRa
+eEO
+pwW
+tET
+eEO
+kym
+pyF
+xvm
+xvm
+xvm
+xvm
+xvm
+xvm
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(51,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+rvp
+rvp
+rvp
+rvp
+rvp
+rvp
+rvp
+rvp
+rvp
+bRa
+ufw
+ufw
+hrJ
+ufw
+pcR
+pcR
+pcR
+pcR
+pcR
+xKg
+ahb
+apQ
+wls
+wls
+wls
+wls
+wls
+gxr
+ahb
+jGF
+dkC
+vSM
+bNY
+eEO
+eEO
+eEO
+eEO
+aDc
+lOL
+xvm
+ckB
+lHV
+jIm
+tdo
+xvm
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(52,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+rvp
+hnC
+oBv
+oBv
+rvp
+hnC
+oBv
+oBv
+rvp
+bRa
+bRa
+mes
+ufw
+ahb
+pcR
+btA
+qYT
+btA
+pcR
+xCl
+aYr
+oHB
+wls
+qtw
+iYo
+qtw
+wls
+szF
+kBS
+mFX
+dkC
+bUK
+eKF
+fqw
+gMM
+adY
+fqw
+aat
+iIY
+xvm
+oZX
+sWE
+xvm
+xvm
+xvm
+esf
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(53,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+rvp
+aPV
+oBv
+dtA
+rvp
+aPV
+oBv
+dtA
+rvp
+bRa
+bRa
+bRa
+ahb
+xQb
+pcR
+uCm
+dAV
+oFn
+pcR
+pcR
+pcR
+pcR
+wls
+wpo
+vIX
+jbR
+wls
+wls
+wls
+wls
+wls
+ibn
+eKF
+fqw
+gVx
+aaf
+bke
+mBq
+pVW
+whb
+yjO
+pbz
+jaz
+ajx
+xvm
+iMO
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(54,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+rvp
+aPV
+oBv
+oBv
+rvp
+aPV
+oBv
+oBv
+rvp
+bRa
+bRa
+ibn
+ahb
+cSe
+pcR
+vcO
+hUY
+vcO
+pcR
+rii
+jzB
+lee
+wls
+rQC
+qtH
+rQC
+wls
+qbl
+aav
+uAn
+wls
+wls
+eKF
+fqw
+mJQ
+hYI
+fqw
+tuD
+nOG
+xvm
+igw
+mxQ
+xvm
+xvm
+xvm
+xvm
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(55,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+rvp
+bGn
+qLZ
+adE
+rvp
+lSt
+njs
+gnK
+rvp
+bRa
+bRa
+bUK
+uVC
+ktr
+nYB
+mPF
+ndh
+tbu
+xli
+gno
+ofP
+hMz
+wls
+eeY
+shJ
+sqm
+ucV
+kzL
+rUB
+kXm
+jLQ
+wls
+irX
+fqw
+fqw
+fqw
+fqw
+uiq
+jHl
+xvm
+xnr
+fZU
+dwC
+gZZ
+hFL
+xvm
+iMO
+esf
+esf
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(56,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+rvp
+fPm
+vHe
+aeZ
+rvp
+ycF
+vHe
+aJV
+rvp
+rvp
+rvp
+rvp
+rvp
+rvp
+vDR
+arS
+sdx
+xUY
+eXa
+uOs
+jWW
+sRJ
+wls
+ogC
+jOY
+wFF
+gLk
+rht
+pqH
+oXA
+beQ
+wls
+otv
+ahb
+agE
+ahb
+aIP
+aQB
+fIM
+aAG
+dZi
+dZi
+dZi
+cjW
+qMs
+xvm
+iMO
+esf
+esf
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(57,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+kmJ
+kmJ
+kmJ
+esf
+rvp
+rvp
+rvp
+rvp
+rvp
+rvp
+wAm
+vXe
+vXe
+mqo
+vXe
+vXe
+vXe
+cZw
+kTW
+rvp
+flB
+hUU
+uJR
+vDR
+kLy
+qrs
+iqx
+hIm
+ogz
+uHl
+hIm
+wqM
+dpT
+uUr
+hmQ
+gHu
+wls
+wls
+wzr
+wls
+wls
+xOS
+nzo
+nzo
+nzo
+nzo
+tuS
+vIA
+uie
+aga
+pSK
+bYi
+gjK
+xvm
+xvm
+iMO
+esf
+esf
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+kmJ
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(58,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+gsf
+ujX
+bNh
+oyt
+oyt
+gcu
+fyz
+vXe
+juB
+qTA
+qTA
+qTA
+gdJ
+dzX
+ccz
+tSB
+rcd
+fbY
+sco
+uUG
+vDR
+snx
+eOr
+kBu
+saT
+eRK
+iRG
+sXc
+mtK
+bWI
+nAI
+fnZ
+fBf
+wls
+ibR
+oZH
+qWs
+wls
+pHH
+nzo
+adI
+adI
+dZi
+sbZ
+eYk
+wXM
+oAy
+bad
+bYi
+apx
+apx
+iMO
+iMO
+esf
+esf
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+apx
+apx
+yej
+apx
+apx
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+apx
+apx
+yej
+apx
+apx
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+apx
+apx
+yej
+apx
+apx
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(59,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+gsf
+ujX
+tMQ
+oBv
+oBv
+nKN
+oSd
+vXe
+pLM
+gnR
+lsg
+vqp
+tnn
+eEj
+rvp
+rvp
+rvp
+rvp
+rvp
+fDR
+vDR
+pcR
+hAp
+wxO
+hCP
+lSp
+iXX
+eAD
+gtj
+mMI
+ehD
+hWG
+qap
+wls
+oCB
+nRr
+oJb
+wls
+otv
+nzo
+adI
+adI
+dZi
+bwA
+oOR
+aOd
+knF
+tfB
+qXF
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+yej
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+yej
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+yej
+apx
+apx
+apx
+apx
+apx
+apx
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(60,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+gsf
+ujX
+tMQ
+exx
+oBv
+moY
+xMV
+vXe
+pLM
+ivs
+mng
+srk
+uIL
+kUz
+uGI
+jkY
+wyI
+wIL
+uwM
+wWI
+phz
+pcR
+tUZ
+ktF
+pcR
+gNv
+gNv
+gNv
+wls
+ohk
+wnL
+ohk
+wls
+wls
+wls
+pQp
+cOE
+wls
+mlW
+nzo
+lPE
+tBK
+ozl
+rEN
+xFd
+dZi
+dZi
+dZi
+eYq
+xWO
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+oUw
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+wvH
+wvH
+wvH
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+wvH
+jay
+lLX
+apx
+apx
+apx
+apx
+apx
+apx
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+kmJ
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(61,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+kmJ
+kmJ
+kmJ
+iMG
+rvp
+rvp
+rvp
+rvp
+rvp
+qDf
+vXe
+pLM
+hVs
+srk
+srk
+srk
+mFb
+srk
+oRn
+wyI
+eev
+lMQ
+gVV
+cmf
+ggz
+kWT
+aZU
+bbj
+oDl
+mIG
+mIG
+olU
+oDl
+bSx
+mIG
+pKP
+asL
+sHi
+lcb
+wDH
+wdR
+wok
+uIf
+foA
+ltd
+fkV
+own
+gfG
+wui
+gDw
+mmF
+aLw
+dbP
+gTd
+sTG
+sTG
+sTG
+sTG
+sTG
+epq
+sTG
+sTG
+sTG
+sTG
+sTG
+sTG
+sTG
+epq
+sTG
+gvu
+gvu
+gvu
+sTG
+epq
+sTG
+sTG
+sTG
+sTG
+sTG
+sTG
+sTG
+epq
+sTG
+sTG
+sTG
+sTG
+sTG
+sTG
+sTG
+sTG
+sTG
+epq
+lDZ
+jph
+xZz
+wvH
+wvH
+oUw
+wvH
+wvH
+iNX
+wvH
+wvH
+wvH
+wvH
+wvH
+iNX
+wvH
+wvH
+iIl
+krz
+rxt
+fQa
+rxt
+lLX
+apx
+apx
+apx
+kmJ
+cLh
+cLh
+cLh
+kmJ
+cLh
+cLh
+cLh
+cLh
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(62,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+cLh
+oJw
+oJw
+oJw
+gsf
+iFw
+bNh
+oyt
+oyt
+cvy
+qwg
+vXe
+rQa
+ekF
+srk
+czt
+srk
+jiB
+mng
+rpR
+wyI
+czN
+pNj
+njp
+feO
+agV
+pHR
+uRl
+uxb
+dXo
+akr
+xnI
+vxD
+akr
+xnI
+gyB
+sjH
+uMH
+rSB
+sDf
+tcv
+wks
+nQp
+ftM
+vsS
+qWD
+fcM
+eTd
+gfG
+uiq
+gDw
+mmF
+dPI
+xiH
+gTd
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+mLp
+gvu
+mLp
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+bfj
+oCQ
+pOH
+eWL
+rfn
+sQo
+gvu
+sQo
+rfn
+rfn
+rfn
+rfn
+rfn
+rfn
+rfn
+rfn
+rfn
+sQo
+lZA
+sQo
+kmv
+vIQ
+wvH
+iIl
+wvH
+apx
+apx
+apx
+oJw
+kmJ
+oJw
+oJw
+kmJ
+oJw
+oJw
+cLh
+cLh
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+jFT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(63,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+dRK
+oJw
+oJw
+oJw
+gsf
+iFw
+tMQ
+bmO
+oBv
+ioI
+oSd
+vXe
+rQa
+ekF
+srk
+fwR
+srk
+mFb
+srk
+gpu
+oQO
+czN
+xVQ
+vWl
+mie
+gkW
+dEB
+eyQ
+qwT
+iOG
+iOG
+iOG
+oVy
+wtM
+wtM
+wtM
+iQg
+tXZ
+opA
+mbJ
+gAa
+pUj
+wQo
+cmU
+erE
+wxZ
+sfg
+mPS
+siX
+dZi
+dZi
+dZi
+ntW
+wTH
+apx
+jay
+rxt
+rxt
+rxt
+rxt
+uwz
+rxt
+rxt
+rxt
+rxt
+rxt
+rxt
+rxt
+uwz
+rxt
+lLX
+aIX
+jay
+rxt
+uwz
+rxt
+rxt
+rxt
+rxt
+rxt
+rxt
+rxt
+uwz
+rxt
+rxt
+rxt
+rxt
+rxt
+rxt
+rxt
+rxt
+rxt
+uwz
+igt
+ijJ
+cJf
+rxt
+gTt
+aIX
+jay
+rxt
+uwz
+rxt
+rxt
+rxt
+rxt
+rxt
+uwz
+rxt
+lLX
+fjg
+vwV
+oep
+qvi
+wMb
+lZA
+wMb
+uwu
+uwu
+uwu
+bdD
+tSU
+bdD
+bdD
+tSU
+fyA
+psd
+oJw
+cLh
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(64,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+cLh
+oJw
+oJw
+gsf
+gsf
+iFw
+tMQ
+exx
+oBv
+xuI
+aMn
+vXe
+pLM
+udE
+srk
+srk
+lyk
+uxR
+uEw
+myW
+wyI
+nqx
+jnC
+fUa
+kfh
+hyj
+guk
+tIq
+tNu
+mBb
+ybs
+bLg
+aFl
+ybs
+bLg
+vzP
+tNu
+bgk
+guk
+hVH
+kUD
+aRG
+iQC
+iQC
+xLU
+oeM
+bAa
+xWG
+cKP
+uie
+dnd
+rpc
+hyL
+apx
+apx
+reC
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+krz
+rxt
+bBt
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+kyT
+apx
+apx
+krz
+rxt
+bBt
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+krz
+bBt
+vIp
+apx
+apx
+hqN
+fjg
+onD
+apx
+apx
+apx
+oJw
+kmJ
+oJw
+oJw
+kmJ
+urZ
+vcU
+oJw
+cLh
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(65,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+kmJ
+kmJ
+iMG
+iMG
+rvp
+rvp
+rvp
+rvp
+rvp
+psl
+vXe
+pLM
+qHL
+mng
+srk
+ewc
+lJN
+rvp
+bdl
+rvp
+rvp
+rvp
+rvp
+rvp
+wkh
+axk
+lVk
+tNu
+tNu
+tNu
+tNu
+tNu
+tNu
+tNu
+tNu
+tNu
+pTg
+hyj
+hel
+hEb
+sLj
+msA
+iQC
+qUT
+lxo
+dZi
+suL
+dpU
+cAj
+nBV
+bnO
+apx
+apx
+jay
+bBt
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+yej
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+kyT
+apx
+apx
+apx
+yej
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+apx
+yej
+apx
+apx
+apx
+wvH
+mWy
+rhg
+apx
+apx
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+opv
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(66,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+gsf
+gsf
+spe
+qIO
+oyt
+oyt
+pbk
+qwg
+vXe
+pLM
+ptN
+aBH
+wDg
+byX
+uIi
+uZy
+vXe
+mYU
+tNM
+oyt
+oyt
+aEQ
+wkh
+qZd
+qxj
+lwI
+lXB
+aKV
+cYv
+cVi
+cYv
+cYv
+lIX
+fLT
+tIl
+hyj
+xFR
+htg
+uKn
+vMs
+iQC
+reV
+reV
+dZi
+mIW
+icf
+rQA
+tOw
+nTV
+deM
+jay
+bBt
+apx
+apx
+apx
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+apx
+apx
+yej
+apx
+apx
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+apx
+kyT
+apx
+apx
+apx
+yej
+apx
+apx
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+apx
+apx
+yej
+apx
+apx
+apx
+wvH
+efp
+hms
+apx
+apx
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+vXc
+oJw
+cLh
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(67,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+gsf
+gsf
+spe
+tMQ
+oBv
+oBv
+wcN
+oSd
+vXe
+xKT
+guf
+guf
+guf
+kCz
+eud
+vXe
+vXe
+unW
+cUc
+oBv
+bmO
+oBv
+wkh
+xHn
+qxj
+dar
+hWY
+tig
+hWY
+hWY
+hWY
+hWY
+tig
+iBN
+naA
+moB
+rFk
+sWS
+fcN
+vBZ
+iQC
+xkj
+xkj
+xkj
+coM
+xkj
+xkj
+xkj
+tso
+tso
+uok
+clT
+apx
+apx
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eiH
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+apx
+apx
+wvH
+dKq
+hms
+apx
+apx
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+vXc
+oJw
+cLh
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(68,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+gsf
+gsf
+spe
+tMQ
+exx
+oBv
+hCM
+wdX
+vXe
+vXe
+vXe
+vXe
+vXe
+vXe
+vXe
+vXe
+vXe
+ecI
+dTU
+oBv
+exx
+oBv
+wkh
+kwO
+qxj
+lLC
+cYv
+tig
+mTc
+hBJ
+kJY
+hWY
+wur
+aDq
+pkI
+hyj
+bxu
+rkA
+egI
+iUT
+iQC
+rdd
+wgd
+peV
+fdW
+waj
+fAn
+mfb
+tso
+djO
+nNY
+clT
+apx
+iMO
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kue
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+apx
+apx
+dUe
+qbs
+hms
+apx
+apx
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+vXc
+oJw
+cLh
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(69,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+kmJ
+kmJ
+iMG
+esf
+rvp
+rvp
+rvp
+rvp
+rvp
+rvp
+eLI
+sOz
+gWd
+qYF
+xtF
+sOz
+iEB
+jIX
+wFu
+kLz
+rvp
+rvp
+rvp
+rvp
+wkh
+lWY
+jDZ
+lLC
+cYv
+tig
+coz
+alo
+tTl
+pmz
+tYH
+vRs
+eRA
+ocT
+fOg
+mFm
+sgQ
+vEx
+iQC
+phH
+php
+tso
+tso
+tso
+tso
+jGB
+tso
+tso
+acn
+clT
+iMO
+iMO
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kue
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+apx
+apx
+pzr
+efp
+hms
+apx
+apx
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+vXc
+oJw
+cLh
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(70,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+esf
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+rvp
+dsM
+fOT
+rxb
+rvp
+dJK
+rMY
+uqP
+rvp
+xzI
+yiz
+rvp
+vyG
+vyG
+lhk
+wkh
+jUx
+fLE
+riM
+hWY
+vPo
+nCd
+bcf
+pSH
+cgY
+hWY
+dic
+vdk
+hyj
+ekx
+iQC
+iQC
+iQC
+iQC
+rdD
+rKy
+tso
+uRn
+iKi
+upd
+rHa
+pGu
+tXV
+pbe
+tso
+qao
+fwD
+fwD
+fwD
+oJw
+fwD
+fwD
+fwD
+oJw
+fwD
+fwD
+fwD
+oJw
+fwD
+fwD
+fwD
+oJw
+fwD
+fwD
+fwD
+oJw
+fwD
+fwD
+fwD
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eiH
+kmJ
+kmJ
+kmJ
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+apx
+apx
+ilT
+hZP
+qpv
+apx
+apx
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+kmJ
+opv
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(71,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+rvp
+aPV
+oBv
+sTm
+cpR
+tMQ
+oBv
+aPV
+rvp
+oXO
+vrW
+rvp
+rvp
+lhk
+vyG
+wkh
+wiE
+fLE
+maC
+mru
+cYv
+wur
+oJk
+cYv
+cYv
+nHm
+fND
+bPA
+hyj
+pgP
+ndE
+fKI
+bvS
+xqs
+rGt
+fKI
+tso
+sIR
+cNH
+hYS
+lEt
+aPO
+qcX
+dFh
+kcL
+pFU
+tSm
+rNK
+fwD
+oJw
+fwD
+dVg
+fwD
+oJw
+fwD
+ste
+fwD
+oJw
+fwD
+imy
+fwD
+oJw
+fwD
+vvS
+fwD
+oJw
+fwD
+dVg
+fwD
+oJw
+oJw
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+eiH
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+apx
+apx
+kjZ
+tpf
+reC
+apx
+apx
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+vXc
+oJw
+kmJ
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(72,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+rvp
+bzy
+oBv
+sTm
+cpR
+tMQ
+oBv
+qcW
+rvp
+lEs
+jom
+jom
+rvp
+vyG
+vyG
+hyj
+xOE
+gOe
+okk
+lPO
+sEM
+xnJ
+dzj
+xXT
+xXT
+sfN
+woF
+ahU
+hyj
+mFa
+xZJ
+adm
+bcg
+bcg
+xxF
+fKI
+tso
+koN
+mAW
+nlu
+oEy
+sxn
+gvP
+cWx
+tso
+qao
+fwD
+lak
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+fwD
+wTA
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+fwD
+krs
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+oJw
+fwD
+gmh
+oic
+krs
+oAE
+oic
+siO
+avz
+aCy
+oic
+oic
+iJO
+fwD
+eiH
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+apx
+apx
+xQP
+lKv
+rij
+apx
+apx
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+vXc
+oJw
+cLh
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(73,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+iMO
+iMO
+iMO
+rvp
+oJA
+oBv
+sTm
+cpR
+tMQ
+oBv
+wVu
+rvp
+rvp
+rvp
+rvp
+rvp
+vyG
+iMO
+hyj
+hyj
+efB
+kGz
+rVD
+lAS
+pFE
+etp
+gEB
+qYw
+ngx
+hye
+hyj
+hyj
+fFf
+xZJ
+qwJ
+xkj
+xkj
+xkj
+xkj
+tso
+tso
+tso
+tso
+tso
+tso
+tso
+tso
+tso
+iMO
+qao
+uqU
+fwD
+oJw
+fwD
+wTA
+fwD
+oJw
+fwD
+krs
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+fwD
+wTA
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+oJw
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+xzv
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+eiH
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+apx
+apx
+apx
+qLy
+eYR
+apx
+apx
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+vXc
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(74,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+iMO
+iMO
+rvp
+rvp
+rvp
+rvp
+rvp
+rvp
+rvp
+rvp
+rvp
+iMO
+iMO
+tQG
+vyG
+vyG
+iMO
+iMO
+tZZ
+iJC
+iJC
+iJC
+iJC
+eNR
+qGA
+aKz
+iJC
+iJC
+iJC
+iJC
+wze
+vfb
+xZJ
+rdD
+xkj
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+fwD
+dvs
+fwD
+oJw
+fwD
+rKh
+fwD
+oJw
+fwD
+avz
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+fwD
+ezq
+fwD
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+fwD
+xzv
+fwD
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kue
+kmJ
+kmJ
+kmJ
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+apx
+apx
+hic
+cHV
+gzp
+apx
+apx
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+vXc
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(75,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+vyG
+lhk
+iMO
+iMO
+iMO
+iMO
+tnQ
+cpk
+gVJ
+vpQ
+jBy
+nso
+ruK
+fuR
+nux
+slt
+oFt
+smU
+rdh
+xZJ
+rdD
+xkj
+iMO
+iMO
+eMW
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+qao
+uqU
+fwD
+fwD
+fwD
+oic
+fwD
+fwD
+fwD
+oic
+fwD
+fwD
+fwD
+oic
+fwD
+fwD
+fwD
+oic
+fwD
+fwD
+fwD
+tgO
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+xzv
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+eiH
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+hxu
+apx
+apx
+apx
+bPr
+fOX
+apx
+apx
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+kmJ
+kue
+kmJ
+cLh
+oJw
+kmJ
+kmJ
+kmJ
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(76,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+vyG
+vyG
+iMO
+iMO
+iMO
+iMO
+uRJ
+vTC
+qed
+mKJ
+pIy
+ofZ
+hJp
+eXn
+eBp
+vac
+uRJ
+pVU
+cJE
+dkz
+lij
+xkj
+iMO
+eMW
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+esf
+esf
+fwD
+idD
+cFt
+hVk
+hVk
+cFs
+hVk
+hVk
+hVk
+hVk
+hVk
+hVk
+hVk
+hVk
+hVk
+pQC
+hVk
+hVk
+hVk
+hVk
+qft
+bDM
+xve
+tuP
+hVk
+hVk
+prA
+hVk
+hVk
+cFs
+qft
+eiu
+oic
+oic
+oic
+oic
+eiJ
+fwD
+eiH
+oJw
+oJw
+oJw
+hxu
+hxu
+hxu
+hxu
+hxu
+hxu
+hxu
+hxu
+hxu
+hxu
+hxu
+hxu
+hxu
+hxu
+hxu
+uxF
+ooo
+ooo
+tuB
+hxu
+hxu
+hxu
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+vXc
+oJw
+cLh
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(77,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+vyG
+iMO
+iMO
+iMO
+iMO
+iMO
+tnQ
+cpk
+iao
+aUf
+fKa
+pOF
+dlN
+eXn
+tVL
+inK
+tnQ
+uRD
+ejL
+vDS
+fAz
+sty
+sty
+iMO
+iMO
+iMO
+eMW
+iMO
+iMO
+iMO
+iMO
+esf
+esf
+esf
+esf
+fwD
+oic
+fwD
+fwD
+fwD
+krs
+fwD
+fwD
+fwD
+oic
+fwD
+fwD
+fwD
+oic
+fwD
+fwD
+fwD
+avz
+fwD
+fwD
+fwD
+sRa
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+uqU
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+eiH
+oJw
+oJw
+oJw
+hxu
+wzC
+jGl
+lGd
+lGd
+rlM
+xqR
+scV
+bIy
+wMY
+rfU
+ntk
+lYR
+uyk
+uyk
+uyk
+dve
+veK
+xet
+rUM
+hxu
+hxu
+hxu
+hxu
+tbH
+igb
+tbH
+rHl
+vXc
+oJw
+kmJ
+oJw
+oJw
+cLh
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(78,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+uRJ
+vTC
+qed
+mKJ
+xuU
+qDQ
+ali
+jmk
+eqW
+rwJ
+uRJ
+pVU
+tMM
+vDS
+tFl
+tuG
+sty
+sty
+iMO
+eMW
+iMO
+iMO
+iMO
+iMO
+esf
+esf
+esf
+oJw
+oJw
+fwD
+avz
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+fwD
+wTA
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+fwD
+uqU
+fwD
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kue
+kmJ
+kmJ
+kmJ
+hxu
+nZq
+gBm
+rYE
+wzC
+oEh
+imK
+fny
+bFQ
+wHS
+wpW
+rYE
+hMC
+hMC
+hMC
+hMC
+hMC
+hMC
+tdL
+eNC
+dzP
+hxu
+hxu
+hxu
+tbH
+hVB
+tbH
+rHl
+vXc
+oJw
+kmJ
+kmJ
+kmJ
+cLh
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(79,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+tnQ
+cpk
+iao
+aUf
+faw
+wqf
+kmo
+kmo
+whL
+gaZ
+tnQ
+uRD
+pVU
+vDS
+atJ
+sty
+sty
+sty
+sty
+iMO
+iMO
+iMO
+eMW
+esf
+esf
+esf
+oJw
+oJw
+oJw
+fwD
+krs
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+fwD
+wTA
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+fwD
+eCV
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+oJw
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+uqU
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+eiH
+oJw
+oJw
+oJw
+hxu
+hpv
+gBm
+rYE
+juE
+oEh
+oni
+qYn
+rQL
+nmk
+rcs
+wzC
+hMC
+tBy
+tYM
+apY
+bFS
+hMC
+ehS
+ooo
+qGP
+wmM
+hxu
+hxu
+tXA
+nos
+tXA
+rHl
+vXc
+oJw
+kmJ
+oJw
+oJw
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(80,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+uRJ
+oas
+vwX
+mKJ
+obq
+xxz
+bnH
+uJa
+tvn
+pHw
+uRJ
+iMO
+sty
+sty
+nOS
+jDz
+nCm
+sty
+sty
+sty
+iMO
+eMW
+esf
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+fwD
+bVu
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+fwD
+oic
+fwD
+oJw
+fwD
+nkx
+fwD
+oJw
+oJw
+fwD
+jce
+buz
+avz
+krs
+nFE
+jFy
+oic
+yfD
+oic
+oic
+bdR
+fwD
+eiH
+oJw
+oJw
+oJw
+hxu
+rYE
+sZz
+rYE
+wOS
+oEh
+oEh
+oEh
+xEW
+xEW
+mUu
+xEW
+hMC
+rIa
+gqy
+gqy
+gfW
+hMC
+hMC
+qdm
+hMC
+lyD
+ooo
+hxu
+tbH
+mHI
+tbH
+rHl
+hXv
+imb
+imb
+imb
+dsZ
+oJw
+kmJ
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(81,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+tnQ
+uRJ
+tnQ
+uRJ
+tnQ
+uRJ
+tnQ
+uRJ
+tnQ
+uRJ
+tnQ
+eMW
+sty
+sty
+fGx
+tYX
+jDz
+nCm
+sty
+sty
+sty
+esf
+esf
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+fwD
+rbW
+fwD
+oJw
+fwD
+qCs
+fwD
+oJw
+fwD
+yeS
+fwD
+oJw
+fwD
+kRv
+fwD
+oJw
+fwD
+ssV
+fwD
+oJw
+fwD
+wcc
+fwD
+oJw
+oJw
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+czq
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+eiH
+oJw
+oJw
+oJw
+hxu
+rYE
+sZz
+qWT
+wOS
+oEh
+oZi
+iOe
+xEW
+pUs
+uli
+til
+hMC
+kDo
+gZq
+eLD
+ort
+eIv
+gyw
+ldB
+hMC
+rOO
+bpH
+hxu
+xgO
+sSU
+xgO
+rHl
+dbx
+hJu
+joV
+dhQ
+dsZ
+oJw
+kmJ
+oJw
+oJw
+kmJ
+oJw
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(82,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+fwD
+fwD
+fwD
+oJw
+fwD
+fwD
+fwD
+oJw
+fwD
+fwD
+fwD
+oJw
+fwD
+fwD
+fwD
+oJw
+fwD
+fwD
+fwD
+oJw
+fwD
+fwD
+fwD
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+fwD
+jZp
+fwD
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kue
+kmJ
+kmJ
+kmJ
+hxu
+oRP
+tAy
+rYE
+wOS
+oEh
+tXm
+nkI
+jsf
+wfH
+mvf
+kcF
+hMC
+hMC
+hMC
+hMC
+oIf
+mMJ
+mMJ
+qeB
+hMC
+tFZ
+oEh
+hxu
+rHl
+iaq
+rHl
+rHl
+vSF
+gjS
+nRV
+nPL
+dsZ
+oJw
+kmJ
+oJw
+oJw
+kmJ
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+cLh
+cLh
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(83,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+eMW
+iMO
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+jSr
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+eiH
+oJw
+oJw
+oJw
+hxu
+rYE
+gBm
+rYE
+fOu
+oEh
+odC
+fCq
+xEW
+lKC
+upI
+kGl
+hMC
+mka
+hAG
+pJG
+qeB
+rSX
+wpe
+hUW
+hMC
+pLp
+nBP
+vPN
+vfg
+pwI
+rtM
+rHl
+dsZ
+irm
+phq
+uar
+uar
+uar
+vap
+uar
+uar
+uar
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+cLh
+cLh
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(84,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+iMO
+eMW
+iMO
+iMO
+iMO
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+fwD
+dfZ
+jUN
+krT
+krT
+waS
+rnC
+oic
+oic
+avz
+krs
+tTQ
+fwD
+eiH
+oJw
+oJw
+oJw
+hxu
+rYE
+gBm
+lrJ
+rYE
+nZq
+rYE
+fCq
+xEW
+xEW
+xEW
+xEW
+hMC
+uPg
+qgk
+vkW
+sZY
+mMJ
+mMJ
+jio
+hMC
+bGj
+rRC
+jAR
+jAR
+jAR
+jAR
+jAR
+qqd
+lRr
+tcb
+aEi
+xpb
+kYl
+kYl
+cYS
+xxw
+uar
+uar
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+cLh
+cLh
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(85,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+iMO
+iMO
+iMO
+iMO
+iMO
+esf
+esf
+iMO
+eMW
+esf
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+qoz
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+jau
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+eiH
+oJw
+oJw
+oJw
+hxu
+uLh
+pZi
+vnN
+vTT
+vnN
+bKS
+iRd
+xrJ
+pZR
+cAt
+cAt
+xGI
+tNd
+cZi
+fnz
+mAD
+asg
+vSN
+hdW
+hMC
+pgl
+nBJ
+qqd
+lFT
+fUb
+vFu
+upu
+jni
+pKj
+lgM
+uar
+bol
+hRB
+eVi
+hRB
+xxw
+eVi
+uar
+uar
+uar
+uar
+uar
+uar
+uar
+uar
+uar
+uar
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(86,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+esf
+eMW
+esf
+esf
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+qoz
+qoz
+qoz
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+fwD
+bkE
+fwD
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kue
+kmJ
+kmJ
+kmJ
+hxu
+uiz
+gBm
+rYE
+rYE
+rYE
+hHH
+tlz
+peo
+hlb
+juE
+fny
+hMC
+cqH
+iou
+qeB
+awM
+mMJ
+mMJ
+czE
+hMC
+tpm
+eRF
+djL
+pCC
+pIk
+vfm
+gBF
+imf
+bmX
+kLx
+lxA
+lxA
+lxA
+lxA
+lxA
+xxw
+xPu
+myx
+hJz
+glC
+hJz
+myx
+vbg
+hRB
+eVi
+eVi
+uar
+uar
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(87,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+esf
+esf
+esf
+esf
+esf
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+qYQ
+kPg
+qoz
+sty
+sty
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+qdi
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+vBf
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+jaS
+uzZ
+uzZ
+uzZ
+hxu
+uiz
+gBm
+rYE
+juE
+fny
+bFQ
+rYE
+dvN
+rYE
+wOS
+oZi
+hMC
+fZM
+xyS
+qeB
+sQG
+pEJ
+ifi
+nRg
+hMC
+wdo
+mXO
+qqd
+eii
+lXh
+uya
+lXh
+jni
+rCH
+cHZ
+eHl
+swX
+iZF
+jRZ
+lxA
+xxw
+cYS
+myx
+pqL
+geR
+psG
+rrI
+xxw
+xxw
+kYl
+xxw
+mFB
+uar
+uar
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(88,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+kmJ
+oJw
+oJw
+kmJ
+kmJ
+sty
+sty
+sty
+jTV
+uPM
+qYQ
+nCm
+sty
+sty
+sty
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+khy
+uRU
+ozv
+xKR
+rPs
+krT
+krT
+waD
+oic
+aCy
+oic
+eDr
+eDr
+fwD
+jaS
+uzZ
+uzZ
+uzZ
+hxu
+uiz
+gBm
+rYE
+wOS
+oEh
+tXm
+rYE
+ljM
+rYE
+wOS
+oZi
+hMC
+bxJ
+wqW
+oJy
+jqD
+qIL
+fFa
+jYJ
+hMC
+iFT
+rgv
+qqd
+gWE
+mFs
+wda
+fGj
+qqd
+hUE
+rhC
+azJ
+pvD
+qQb
+ngs
+lxA
+xxw
+kYl
+myx
+kfM
+ksN
+jFA
+jFA
+jFA
+jFA
+jFA
+eVi
+xxw
+kYl
+uar
+uar
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(89,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+dRK
+cLh
+cLh
+kmJ
+oJw
+sty
+qoz
+qoz
+jTV
+tYX
+jDz
+nCm
+sty
+sty
+sty
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+eQQ
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+qdi
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+fwD
+jaS
+uzZ
+uzZ
+uzZ
+hxu
+uiz
+gBm
+rYE
+wOS
+oEh
+oZi
+oZi
+tQM
+wVs
+oZi
+aAD
+nUw
+nUw
+nUw
+sfq
+xsU
+jyQ
+eWD
+hMC
+hMC
+tha
+vJq
+qqd
+grL
+txI
+pUh
+wfA
+qqd
+bjD
+qMk
+eHl
+eza
+bqr
+lwv
+lxA
+obk
+xxw
+myx
+kfM
+jvH
+jFA
+cLJ
+qBf
+kgn
+jFA
+xZR
+xxw
+cYS
+xxw
+uar
+kmJ
+kmJ
+kmJ
+cLh
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(90,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+cLh
+oJw
+oJw
+oJw
+qoz
+qoz
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+kmJ
+kmJ
+kmJ
+kue
+kmJ
+kmJ
+kmJ
+hxu
+gFW
+luj
+sDA
+sDA
+sDA
+sDA
+sDA
+egk
+sDA
+sDA
+aAD
+mUI
+pQz
+iSc
+aAD
+sRD
+dpH
+cEd
+ssi
+oZJ
+wtX
+dLM
+qqd
+xVs
+tZJ
+gYc
+kzU
+qqd
+rCH
+oeA
+eHl
+eza
+qkV
+iKr
+lxA
+xNB
+xxw
+myx
+myx
+rrI
+jFA
+bwb
+hdu
+gVf
+jFA
+qBL
+aXc
+pCK
+uSL
+uar
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(91,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dJH
+dJH
+dJH
+dJH
+uRN
+icM
+icM
+icM
+icM
+hRM
+txp
+sDA
+amc
+cFG
+nDp
+vsJ
+cUb
+rAS
+nZn
+iSm
+szw
+jKU
+aED
+ejN
+eJc
+wyV
+bEz
+nPa
+nPa
+nPa
+nPa
+nPa
+nPa
+nPa
+nPa
+nPa
+nPa
+hUE
+ndn
+eHl
+eza
+rlr
+iKr
+lxA
+mLW
+xxw
+hJz
+hJz
+hJz
+jFA
+jFA
+wrV
+jFA
+jFA
+jFA
+jFA
+plj
+piz
+uar
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(92,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+cLh
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dJH
+sGC
+pOQ
+tPZ
+ylv
+icM
+kYJ
+aNm
+icM
+iyS
+kCp
+sDA
+syl
+lhD
+aSe
+dcX
+bIj
+gIW
+tsv
+nVy
+oOH
+aMS
+clp
+ejN
+eJc
+qcc
+oeK
+nPa
+wfY
+hJM
+nlS
+uKI
+fir
+ljb
+nWr
+cGd
+nPa
+mUH
+xWW
+gdS
+gdS
+gdS
+gdS
+gdS
+gdS
+gdS
+gdS
+xxw
+hJz
+jFA
+prh
+hdu
+pyd
+eHq
+qtz
+jFA
+rti
+sOy
+uar
+kmJ
+kmJ
+kmJ
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(93,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+kmJ
+kmJ
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dJH
+uzt
+eIB
+ozQ
+mzX
+icM
+bOj
+hiV
+icM
+lbk
+kCp
+sDA
+xty
+oFC
+hgZ
+tlw
+oCv
+ljQ
+axE
+cuj
+pdd
+mRQ
+oTY
+aAD
+cQG
+qcc
+oeK
+nPa
+gcK
+aMR
+ofb
+puQ
+puQ
+grc
+xlI
+bZc
+ssR
+rCH
+qhV
+ayJ
+iVp
+sCm
+ucJ
+gYn
+pgg
+kIn
+gdS
+kYl
+qMz
+jFA
+wuM
+inS
+lAa
+dbB
+dbB
+jFA
+lig
+xxw
+uar
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(94,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+dRK
+cLh
+cLh
+kmJ
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+jTo
+pnd
+rlk
+kMA
+icM
+icM
+tVE
+jVJ
+icM
+dfM
+kCp
+sDA
+kbb
+fSn
+oyN
+aMp
+oCv
+pFh
+vYG
+sDA
+wyw
+uDR
+fsS
+sDA
+vtb
+rvW
+coE
+nPa
+bhC
+nIl
+knp
+jDj
+iHI
+iHI
+vqR
+loL
+ssR
+yef
+iTq
+wpB
+wxQ
+rFM
+xhE
+htr
+fGp
+wwV
+gdS
+xxw
+qRh
+jFA
+hpU
+hdu
+hdu
+yei
+rzb
+jFA
+hRB
+xxw
+uar
+uar
+uar
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(95,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+cLh
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+jTo
+kNP
+eID
+icM
+ovS
+skB
+gkB
+oDw
+icM
+fjJ
+yaN
+sDA
+pMv
+fSn
+jLR
+qin
+gmy
+cAk
+gih
+wfb
+scp
+cnN
+fFN
+sDA
+mOw
+heX
+oeK
+nPa
+eYw
+wzn
+pqC
+bvy
+ybK
+ybK
+ybK
+xVm
+ojd
+qNk
+cOV
+wSc
+egf
+kOt
+kTR
+bff
+uwE
+jua
+gdS
+kdc
+ylN
+jFA
+lwB
+rjp
+jTg
+dbB
+dbB
+jFA
+xLV
+lhI
+cYS
+rpJ
+uar
+uar
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(96,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+jTo
+ffD
+dTH
+icM
+rFf
+fHx
+nuw
+gKf
+icM
+npv
+weF
+sDA
+cHX
+fdF
+gZj
+qBv
+jaG
+ljQ
+tFM
+sDA
+tXH
+gFH
+cuA
+sDA
+jwX
+heX
+oeK
+wMz
+eyX
+dza
+ieH
+ewW
+ieH
+pOT
+ieH
+hMM
+lQX
+iDv
+gem
+wpB
+orS
+rFM
+auy
+bff
+uwE
+mxH
+gdS
+mtc
+evY
+jFA
+oEO
+hKB
+gsP
+cnU
+jGI
+jFA
+kly
+hEe
+kYl
+kYl
+lzN
+uar
+kmJ
+kmJ
+kmJ
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(97,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+cLh
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+jTo
+wCo
+bqH
+icM
+oiv
+htj
+egh
+uym
+icM
+wLL
+fMZ
+sDA
+aEc
+pvZ
+xeM
+wPS
+mzE
+wUH
+qHO
+npD
+jCS
+bpl
+qdQ
+sDA
+okm
+heX
+qmt
+nPa
+dhq
+rDR
+get
+pDN
+kzM
+cSX
+ihQ
+lWZ
+nPa
+kvz
+osb
+fxe
+nfo
+jHE
+gMv
+aiZ
+vEZ
+eEA
+gdS
+knY
+bCh
+jFA
+kWS
+nWK
+uot
+uot
+uot
+uot
+uot
+uot
+uot
+dpN
+jaY
+vap
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(98,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kth
+kth
+kth
+kwq
+dtj
+pPd
+icM
+qsH
+icM
+icM
+icM
+icM
+jTo
+vVw
+sDA
+sDA
+sDA
+rRG
+gKJ
+sDA
+uTW
+otF
+qmw
+qCn
+qCn
+qCn
+tQb
+cGU
+xnf
+qez
+nPa
+iyr
+xzD
+bhe
+bhe
+nPa
+wJK
+nPa
+gtN
+nPa
+def
+xNi
+gdS
+gdS
+gdS
+gdS
+gdS
+gdS
+gdS
+gdS
+fkp
+uar
+jFA
+nEb
+jFA
+uot
+iEC
+doN
+jKG
+dTF
+eNe
+uot
+xxw
+hyH
+vap
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(99,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kth
+kth
+gdY
+xxA
+kwq
+irQ
+bqH
+gVo
+cse
+cgd
+czV
+wes
+wUQ
+rMK
+gWL
+vcG
+dje
+sMk
+rlF
+cQY
+bcw
+lWD
+kgl
+ixi
+qCn
+hFi
+pcL
+gGu
+eNS
+kem
+rOy
+eNS
+gAW
+hOO
+auc
+eBF
+pSp
+mFc
+sUO
+hmi
+imb
+nVF
+hCf
+fTC
+bDz
+mSs
+qFv
+mQr
+kbD
+uOn
+eRi
+ldw
+ajY
+aoB
+xaZ
+kBP
+jGu
+mwZ
+asw
+kxm
+uYt
+iEU
+uot
+jSa
+xLS
+uar
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(100,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kth
+mPb
+bKx
+uMm
+hQF
+lRJ
+wqG
+spJ
+qTz
+iwF
+hmX
+hmX
+hmX
+hWb
+olD
+hmX
+hmX
+fye
+lnq
+lhC
+bcw
+sJh
+mnR
+bwM
+aUp
+etH
+ybz
+mIC
+bSs
+prE
+kRB
+hJw
+vod
+sLN
+hyr
+ycW
+wKe
+wBj
+bFy
+ini
+tYB
+vtf
+kCs
+xoz
+xHF
+xoz
+xoz
+cKX
+xoz
+xoz
+hNu
+xoz
+xoz
+pLL
+sRz
+vBu
+dMu
+qKU
+kzX
+iqu
+tXN
+lVt
+uot
+piz
+plj
+uar
+kmJ
+kmJ
+kmJ
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(101,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+kmJ
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kth
+mPb
+uYG
+nka
+lth
+sgd
+jvZ
+sZs
+lcX
+vBF
+xOG
+xOG
+xOG
+mgP
+mdH
+wzz
+wzz
+leJ
+pTR
+tmF
+tKG
+lrX
+elq
+orl
+wyd
+viy
+kwx
+oIU
+uTA
+qcc
+sqb
+mjP
+nsY
+hSN
+bfw
+jKO
+qsD
+jWy
+nsm
+tfr
+vzW
+hph
+uIN
+azf
+pNR
+pNR
+pNR
+hJY
+pNR
+pNR
+eom
+pNR
+pNR
+azf
+bCN
+oWd
+jGu
+sls
+sXz
+gKH
+uYt
+iDb
+uot
+viC
+gce
+uar
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(102,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+kmJ
+oJw
+kmJ
+kmJ
+kmJ
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kth
+mPb
+jyJ
+hwf
+cEJ
+mLG
+aSJ
+wkb
+rYS
+tCN
+ebG
+ebG
+ebG
+bKX
+ebG
+ebG
+gAn
+hZV
+ppr
+ftp
+bcw
+kuY
+sHM
+ljF
+hWF
+uGi
+nTU
+nQg
+bfa
+qcc
+utm
+nTU
+nTU
+uyG
+hjg
+cCl
+pSp
+kHS
+ozr
+weD
+imb
+hOw
+qvC
+hOa
+fgI
+fgI
+nPv
+fgI
+fgI
+fgI
+fgI
+nPv
+buU
+fnd
+hjK
+kcG
+uot
+tOK
+ifr
+lbG
+iyw
+jMZ
+uot
+xxw
+xxw
+vap
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(103,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+cLh
+cLh
+kmJ
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kth
+kth
+xxp
+tSs
+kwq
+wgl
+dEM
+gJH
+lUq
+gJH
+uMd
+plr
+xsz
+nEY
+cij
+vsm
+fTf
+wFh
+wDz
+nGE
+bcw
+nGz
+mks
+pAI
+qCn
+ydv
+nTU
+wUY
+acU
+qcc
+mSr
+iUF
+nTU
+jsa
+eqJ
+nHH
+qHW
+wzs
+wzs
+wzs
+jSk
+hqU
+xVN
+jJd
+ssp
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+gDa
+fnd
+hjK
+cVf
+gMn
+uot
+uot
+uot
+uot
+uot
+uot
+dpN
+eVi
+vap
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(104,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+cLh
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kth
+kth
+kth
+kwq
+vdd
+tnz
+gJH
+txP
+gJH
+rtv
+imT
+imT
+gpP
+iGy
+imT
+rtv
+olw
+mdK
+diZ
+olw
+mdK
+hWT
+beW
+olw
+nFG
+rYu
+fae
+bfa
+qcc
+utm
+bFj
+nTU
+qFB
+uYj
+hMg
+bFZ
+qkf
+uki
+nOX
+qHW
+qzU
+xVN
+pVV
+klR
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+gDa
+fnd
+hjK
+qyx
+xaw
+kDL
+oah
+tve
+mbg
+kPZ
+hRB
+xxw
+eVi
+uar
+kmJ
+kmJ
+kmJ
+cLh
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(105,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+kmJ
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+jTo
+wgl
+dEM
+gJH
+mjz
+gJH
+ubw
+xkS
+aZy
+gzy
+vrh
+mzO
+ubw
+olw
+rjc
+xPv
+tkB
+iQa
+sGK
+jKe
+olw
+lzP
+nTU
+ahi
+rXO
+qcc
+utm
+eHI
+nTU
+qLU
+hFb
+neK
+ohF
+mdP
+iJg
+erp
+nKk
+vEk
+rpW
+mOE
+klR
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+gDa
+fnd
+roJ
+gGB
+raP
+gPx
+gGe
+hgP
+mux
+kPZ
+xxw
+kYl
+uar
+uar
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(106,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+qoz
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cPF
+cPF
+cPF
+cPF
+cPF
+cPF
+hfp
+gJH
+cOT
+pPf
+rtv
+usr
+oCY
+ntO
+nwf
+kPV
+rtv
+gCn
+sic
+luZ
+sZJ
+gXQ
+jwx
+hHI
+olw
+nTU
+nTU
+ckq
+jRQ
+tOF
+pPr
+xoj
+nTU
+qLU
+qgW
+wPb
+nYp
+ssA
+bRB
+twE
+leL
+bOu
+wMu
+hZG
+klR
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+gDa
+fnd
+ekr
+oWd
+xaw
+sGW
+nXZ
+oZM
+upq
+kPZ
+xxw
+xxw
+uar
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(107,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+qoz
+qoz
+qoz
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+hVd
+jWe
+ocl
+wJA
+kVc
+vUu
+pqi
+gJH
+tgu
+gJH
+ubw
+tkw
+xAt
+dIq
+xXH
+wrc
+ubw
+olw
+mgW
+xxr
+xqw
+sSi
+ohO
+aPd
+nAd
+qbx
+nTU
+uen
+bfa
+qcc
+utm
+eHI
+nTU
+qLU
+weR
+neK
+iYy
+rUn
+vTD
+vTH
+xzw
+vnj
+wnX
+hZG
+klR
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+gDa
+fnd
+hjK
+bLX
+dMz
+dMz
+dMz
+dMz
+dMz
+kPZ
+xxw
+cYS
+vap
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(108,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+qYQ
+kPg
+qoz
+sty
+sty
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+hVd
+dfn
+ydB
+cPF
+evc
+rZP
+huB
+gJH
+txP
+pPf
+rtv
+fzr
+gIr
+tNm
+gIr
+uLf
+rtv
+gCn
+iGd
+eQY
+hJl
+eQY
+mQZ
+oqV
+wLa
+xuy
+nTU
+anC
+bfa
+qcc
+utm
+eHI
+nTU
+eNy
+cgH
+emo
+xCg
+mdP
+iJg
+kVv
+vfP
+uNq
+bRX
+fHN
+klR
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+gDa
+fnd
+dAr
+pRH
+udn
+oIX
+aBA
+czo
+tHZ
+ibc
+xxw
+eVi
+uar
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(109,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+kmJ
+kmJ
+sty
+sty
+sty
+jTV
+uPM
+qYQ
+nCm
+sty
+sty
+sty
+oJw
+kmJ
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+yeT
+yeT
+cPF
+cPF
+cPF
+cPF
+bfn
+qaT
+oJQ
+gJH
+txP
+gJH
+ubw
+czH
+gIr
+jBS
+gIr
+jaH
+ubw
+olw
+cyg
+bQA
+bQA
+pzX
+bMP
+oqV
+lIv
+xuy
+nTU
+cvI
+bfa
+qcc
+utm
+tim
+nTU
+aOE
+ana
+rxk
+hJd
+baN
+iCK
+eUz
+qHW
+oaT
+npT
+pVV
+klR
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+gDa
+fnd
+hjK
+hTh
+sII
+gsr
+ltN
+pZn
+miq
+ibc
+kYl
+hGC
+uar
+kmJ
+kmJ
+kmJ
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(110,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+dRK
+cLh
+cLh
+kmJ
+oJw
+sty
+qoz
+qoz
+jTV
+tYX
+jDz
+nCm
+sty
+sty
+sty
+kmJ
+oJw
+oJw
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+cPF
+ces
+nuu
+ibw
+xPI
+cPF
+gJH
+txP
+pPf
+rtv
+mjj
+sCI
+crG
+rUx
+nNO
+rtv
+gCn
+sow
+bQA
+ciE
+dqa
+ryE
+ftn
+kRt
+uGi
+nTU
+uwe
+xQC
+csd
+ePx
+uKp
+ksT
+gRo
+trv
+qHW
+qHW
+qHW
+qHW
+qHW
+jSk
+hqU
+npT
+hOa
+fgI
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+hEm
+gDa
+fnd
+ekr
+oWd
+udn
+qwE
+eNJ
+oqN
+uCn
+ibc
+xxw
+hRB
+uar
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(111,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+cLh
+oJw
+oJw
+oJw
+qoz
+qoz
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+yeT
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+cPF
+cPF
+cPF
+ibw
+kll
+cPF
+lXq
+cOT
+gJH
+ubw
+rtv
+ubw
+rtv
+ubw
+rtv
+ubw
+olw
+jIY
+qoG
+npO
+oOd
+dde
+eZf
+kRt
+nTU
+nTU
+oVN
+wNb
+qcc
+prw
+gAW
+nTU
+cIf
+trv
+wRO
+coU
+rWx
+moZ
+aCu
+iWy
+wLN
+npT
+jJd
+ssp
+ssp
+epQ
+ssp
+ssp
+ssp
+ssp
+epQ
+qoq
+fnd
+hjK
+uGV
+vHX
+vHX
+vHX
+vHX
+vHX
+ibc
+xxw
+oiQ
+vap
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(112,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+yeT
+gcP
+gcP
+vVZ
+gcP
+gcP
+gcP
+gcP
+cPF
+acp
+avB
+krW
+ewD
+cPF
+jBp
+txP
+pPf
+gcP
+gcP
+vVZ
+gcP
+vVZ
+gcP
+vVZ
+gCn
+olw
+gCn
+olw
+eMC
+yfy
+eMC
+olw
+fsw
+fsw
+yjt
+tPU
+ezI
+ajJ
+gGG
+gAW
+tNO
+trv
+nfk
+xny
+iaO
+pSg
+cpe
+kiB
+rGQ
+eHi
+azf
+qsp
+qsp
+qsp
+htb
+sFl
+sFl
+uNM
+qsp
+qsp
+azf
+sFd
+qyx
+vSt
+fdJ
+qkw
+wrz
+uih
+jFY
+nEJ
+hRB
+uar
+oJw
+oJw
+oJw
+cLh
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+sxK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(113,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+gcP
+vVZ
+gcP
+gcP
+gcP
+gcP
+gcP
+cPF
+cPF
+cPF
+cPF
+cPF
+cPF
+pjM
+txP
+eqd
+gJH
+pPf
+gJH
+pPf
+gJH
+pPf
+gJH
+pPf
+pPf
+gJH
+pPf
+taE
+hjX
+axi
+qpG
+aUP
+fsw
+fXD
+upJ
+pza
+eNS
+qEZ
+cOH
+rXy
+trv
+anf
+sdE
+mWq
+tMY
+iAJ
+bbx
+hWQ
+pAc
+juz
+ogN
+ogN
+ogN
+nus
+kYQ
+kYQ
+kPN
+luk
+kYQ
+swZ
+kYQ
+cpp
+qSX
+eMk
+wYo
+tRu
+eif
+jFY
+aww
+uar
+uar
+oJw
+oJw
+oJw
+cLh
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+qHq
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+wKv
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(114,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+kmJ
+kmJ
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+gcP
+gcP
+gcP
+vVZ
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+pPf
+eyV
+tgu
+txP
+kmX
+ahT
+fvx
+kWW
+eqd
+eqd
+pjM
+odm
+uDT
+eqd
+toi
+taE
+bYE
+djo
+ojQ
+vMo
+taE
+taE
+reh
+ugp
+gRi
+bfy
+bfy
+bfy
+bfy
+mME
+mpW
+ouJ
+afy
+lvH
+kiB
+fZq
+fFX
+pNR
+fJa
+dck
+kBP
+nOZ
+orG
+ldw
+iey
+kgg
+cqs
+jdm
+ldw
+hVn
+vSt
+ydD
+ikX
+dFb
+lbR
+jFY
+xxw
+hJj
+uar
+oJw
+oJw
+kmJ
+cLh
+cLh
+cLh
+kmJ
+cLh
+cLh
+kmJ
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+oJw
+oJw
+qHq
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(115,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+kmJ
+kmJ
+kmJ
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+gcP
+vVZ
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gJH
+eqd
+txP
+txP
+txP
+txP
+txP
+txP
+txP
+txP
+txP
+txP
+eAa
+vEh
+txP
+gDM
+tge
+cBO
+afg
+aEe
+jzU
+taE
+nUf
+lEb
+wfc
+eYv
+bWf
+qxu
+bfy
+roY
+hWp
+xrE
+chl
+cRK
+bDO
+bDO
+amC
+rJp
+bDO
+bDO
+mFC
+mAz
+oxV
+dTS
+nYh
+nYh
+nYh
+oMY
+snc
+nYh
+jFY
+jFY
+jFY
+jFY
+jFY
+jFY
+psU
+hJj
+uar
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+qHq
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+pNA
+mYw
+nVh
+oJw
+oJw
+oJw
+tVZ
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(116,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+kmJ
+oJw
+oJw
+oJw
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+gcP
+gcP
+gcP
+vVZ
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+vVZ
+pPf
+txP
+txP
+gJH
+pPf
+gJH
+pPf
+gJH
+pPf
+gJH
+pPf
+gJH
+pPf
+taE
+mFR
+boj
+hbw
+tkx
+alH
+taE
+cpa
+wgI
+jKZ
+bfy
+qZA
+bfy
+bfy
+ker
+ker
+ker
+ker
+ker
+bDO
+eVS
+uIV
+bhv
+jXQ
+bDO
+wMs
+ujE
+hIp
+wGa
+nYh
+wVV
+jMG
+dDc
+txy
+lET
+nYh
+jEf
+xxw
+hJz
+hJz
+qoE
+kYl
+xxw
+uar
+kmJ
+kmJ
+kmJ
+kmJ
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+qHq
+oJw
+oJw
+oJw
+oJw
+dRK
+sxK
+dRK
+oJw
+oJw
+oJw
+pNA
+dmg
+pNA
+oJw
+oJw
+oJw
+dRK
+sxK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(117,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+yeT
+yeT
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+gcP
+vVZ
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gJH
+duL
+txP
+pPf
+tnU
+lOd
+tnU
+lOd
+tnU
+lOd
+tnU
+lOd
+tnU
+taE
+taE
+taE
+taE
+taE
+taE
+taE
+cpa
+dAC
+wQC
+bfy
+omo
+bfy
+yeG
+qyZ
+eol
+uAi
+ofY
+ker
+vDg
+tqx
+bFD
+aqE
+wLv
+bDO
+lCP
+whi
+vcg
+dcT
+nYh
+fXu
+kES
+kES
+kES
+kES
+nYh
+jEf
+xxw
+hJz
+rpJ
+hJz
+xxw
+uar
+uar
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+qHq
+oJw
+oJw
+oJw
+oJw
+dRK
+qHq
+dRK
+oJw
+oJw
+oJw
+pNA
+myD
+pNA
+oJw
+oJw
+oJw
+tVZ
+qHq
+dRK
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(118,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+kmJ
+kmJ
+kmJ
+oJw
+yeT
+yeT
+yeT
+gcP
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+gcP
+gcP
+gcP
+vVZ
+gcP
+gcP
+gcP
+gcP
+gcP
+pPf
+hDy
+txP
+gJH
+tnU
+ykm
+cfs
+qwK
+lOd
+kZH
+rhI
+cJq
+aIu
+sQH
+kxe
+wmE
+mJu
+azc
+idS
+unr
+qkC
+dAC
+mDm
+bfy
+bfy
+bfy
+ker
+aru
+qyZ
+pkV
+nXT
+ker
+soo
+ruX
+rKZ
+aqE
+xYS
+bDO
+ivN
+pEy
+jjN
+nxM
+nYh
+jjw
+jjw
+jjw
+jjw
+bsl
+nYh
+uar
+uar
+uar
+uar
+aww
+uar
+uar
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+qHq
+oJw
+oJw
+oJw
+oJw
+oJw
+qHq
+oJw
+oJw
+oJw
+pNA
+pNA
+rXI
+pNA
+pNA
+oJw
+oJw
+oJw
+qHq
+oJw
+oJw
+vhh
+eKA
+lbj
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(119,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+kmJ
+oJw
+yeT
+yeT
+yeT
+gcP
+gcP
+gcP
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+gcP
+vVZ
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gJH
+eqd
+txP
+pPf
+lOd
+aIO
+meG
+wUR
+dYq
+eie
+hUh
+gQB
+hsO
+spP
+pyc
+iIQ
+uid
+iIQ
+erb
+iuy
+rlS
+sbU
+nAb
+yit
+dcA
+aSW
+rFP
+tBg
+hJb
+iwN
+tuQ
+ker
+hku
+hnn
+trf
+eQE
+cKu
+bDO
+scZ
+lDe
+fox
+hfv
+nYh
+bdO
+bdO
+fhy
+bdO
+bdO
+nYh
+dwh
+dwh
+jju
+jds
+flQ
+jds
+jsr
+tBB
+jsr
+jsr
+tBB
+jsr
+jsr
+tBB
+jsr
+jsr
+tBB
+jsr
+jsr
+tBB
+jsr
+jsr
+qkN
+qkN
+qkN
+qkN
+qHq
+qHq
+qHq
+qHq
+qHq
+pNA
+pNA
+pNA
+qHq
+pNA
+pNA
+qHq
+pNA
+wRc
+rix
+vEC
+pNA
+qHq
+pNA
+pNA
+qHq
+qHq
+qHq
+pNA
+pNA
+gMO
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(120,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+cLh
+cLh
+oJw
+kmJ
+oJw
+yeT
+yeT
+vVZ
+gcP
+vVZ
+gcP
+vVZ
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+gcP
+gcP
+gcP
+vVZ
+gcP
+gcP
+gcP
+pPf
+pjM
+tgu
+gJH
+tnU
+lOd
+dhh
+rhU
+rwN
+doK
+pkD
+ePL
+jyt
+kRS
+kXd
+wUR
+veO
+wUR
+gvZ
+uqf
+hxK
+mXb
+cgA
+yit
+clD
+ker
+ker
+xpX
+qAY
+aYe
+bAB
+ker
+lZG
+ruX
+jSY
+aqE
+lcg
+bDO
+lSm
+eXO
+qUb
+mdx
+nYh
+bdO
+bdO
+nYh
+bdO
+bdO
+nYh
+inm
+oNN
+flQ
+flQ
+flQ
+flQ
+iCr
+flQ
+eTV
+flQ
+flQ
+flQ
+flQ
+flQ
+flQ
+flQ
+flQ
+flQ
+flQ
+flQ
+flQ
+flQ
+vfE
+eDy
+tJS
+nwj
+dCw
+tUE
+gOt
+fxY
+tLu
+fxY
+fxY
+fxY
+mSm
+fxY
+fxY
+fxY
+alC
+vMq
+pCo
+xpr
+aeS
+kxN
+fxY
+fxY
+fxY
+xuT
+qHq
+tmD
+iuY
+qHq
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(121,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+eki
+eki
+eki
+eki
+aFt
+vLT
+aFt
+vLT
+aFt
+vLT
+aFt
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+gcP
+vVZ
+gcP
+gcP
+gcP
+gcP
+gJH
+wHf
+qKR
+pPf
+gcP
+tnU
+hTp
+onG
+bHb
+pWS
+gfw
+bWg
+aXG
+ody
+qyy
+mnX
+qHk
+saD
+sei
+awL
+dcO
+uio
+rOX
+yit
+kCJ
+fap
+pZp
+ker
+ker
+ker
+vul
+ker
+wKF
+smR
+sQQ
+lqz
+bDO
+bDO
+dTS
+iFD
+dTS
+dTS
+nYh
+nYh
+nYh
+nYh
+nYh
+nYh
+nYh
+wHU
+flQ
+jju
+llz
+dfW
+dEq
+jsr
+tBB
+jsr
+jsr
+tBB
+jsr
+jsr
+tBB
+jsr
+jsr
+tBB
+jsr
+jsr
+tBB
+jsr
+jsr
+qkN
+uJj
+dtO
+oHG
+qJS
+tOG
+cUr
+cUr
+hfH
+cUr
+cUr
+cUr
+cUr
+pYq
+cUr
+cUr
+pYq
+cUr
+veQ
+jsG
+bfE
+cQl
+cQl
+bfE
+tCw
+hsP
+ihU
+oor
+boR
+rOC
+oJw
+viH
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(122,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+eki
+cWV
+aeY
+axa
+aFt
+tHs
+rkp
+bLa
+gNR
+sku
+vLT
+aFt
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+gcP
+gcP
+gcP
+vVZ
+gcP
+pPf
+bSk
+ntn
+gJH
+gcP
+tnU
+lOd
+tnU
+unr
+unr
+unr
+fDY
+dWG
+kzZ
+pfC
+eyg
+pIq
+bMW
+cBU
+unr
+rOH
+nTv
+eVd
+mje
+tiL
+nEW
+ghd
+uNE
+jvB
+vDK
+pHQ
+yit
+bDO
+qNq
+bPD
+reU
+bDO
+xgh
+uWO
+cdu
+okz
+kXb
+fYs
+gcP
+gcP
+gcP
+gcP
+ksd
+ksd
+aux
+hyF
+jju
+jsr
+jsr
+jsr
+jsr
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+qkN
+uGG
+wGY
+rqY
+xVb
+ntZ
+svQ
+jJA
+nws
+fxY
+fxY
+fxY
+mRh
+gBd
+bRJ
+bRJ
+uCL
+pbr
+nXq
+pbr
+mjM
+bRJ
+bRJ
+sQw
+fxY
+dpF
+qHq
+mji
+guT
+qHq
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(123,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+kmJ
+kmJ
+eki
+bwc
+aFA
+axa
+aFt
+mar
+uKm
+lUB
+uKm
+mlB
+aFt
+vLT
+gcP
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+gcP
+vVZ
+vVZ
+pPf
+gJH
+iue
+cUn
+pPf
+gcP
+gcP
+gcP
+gcP
+lOd
+nzu
+pkL
+hST
+oHV
+upS
+iaa
+giN
+pIq
+wEg
+pIq
+djh
+gcr
+dAC
+jKZ
+hco
+dzr
+dxd
+ghd
+wQL
+dme
+fhm
+pva
+dDT
+yit
+tbw
+qjn
+uZi
+sMZ
+lrD
+aIk
+mVQ
+vqC
+mTf
+fYs
+ksd
+ksd
+ksd
+ksd
+ksd
+hyF
+hyF
+ksd
+jju
+jsr
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+qkN
+xhQ
+dHi
+eDy
+uHL
+pNA
+qHq
+pNA
+qHq
+pNA
+pNA
+pNA
+qHq
+gAY
+wbp
+wbp
+gAY
+csH
+edJ
+tze
+gAY
+wbp
+wbp
+gAY
+pNA
+pNA
+qHq
+pNA
+pNA
+gMO
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(124,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+cLh
+cLh
+oJw
+oJw
+eki
+hBM
+hwt
+pCJ
+aFt
+qWw
+jtd
+pNY
+iUW
+qzf
+vLT
+aFt
+gcP
+gcP
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+gcP
+gcP
+pjM
+hzE
+gbb
+evz
+gJH
+gcP
+gcP
+gcP
+gcP
+tnU
+wuT
+lYZ
+rqH
+iYH
+xxk
+fgV
+oCV
+ozR
+ubW
+pIq
+djh
+gcr
+obr
+mio
+hco
+iTU
+lCU
+taf
+lSi
+cHn
+ezj
+uMV
+dDT
+yit
+auj
+wLk
+lYI
+sMZ
+rRZ
+ewp
+tIA
+ewp
+dZB
+fYs
+ksd
+hyF
+hyF
+ksd
+hyF
+hyF
+bwk
+ksd
+sNC
+jsr
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+qkN
+gVD
+dHi
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+xzy
+hdY
+lMb
+pzb
+qHq
+qHq
+qHq
+xzy
+hdY
+lMb
+pNA
+oJw
+oJw
+oJw
+vhh
+eKA
+lbj
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(125,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+kmJ
+oJw
+oJw
+oJw
+eki
+tPm
+psE
+sMy
+aFt
+pqy
+egy
+oqR
+ujO
+tXQ
+aFt
+vLT
+gcP
+gcP
+gcP
+sty
+sty
+sty
+jlD
+tYX
+jDz
+nCm
+sty
+sty
+sty
+gJH
+lln
+pjM
+pjM
+txP
+pPf
+gcP
+gcP
+gcP
+gcP
+lOd
+lVX
+blu
+nff
+jYc
+iaa
+pIq
+qld
+gdA
+yeF
+pIq
+djh
+gcr
+vWT
+fbb
+nKu
+tKw
+qbX
+otw
+tSN
+uuC
+uuC
+phx
+raG
+yit
+mTE
+qof
+vlM
+sMZ
+lQO
+mxf
+hwA
+jXs
+kXb
+fYs
+ksd
+ksd
+fYr
+hyF
+bwk
+ksd
+hyF
+ksd
+sNC
+jsr
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+qkN
+eOw
+dHi
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+pgE
+qaw
+rsC
+jNg
+oJw
+oJw
+oJw
+pgE
+llu
+caR
+jNg
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(126,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+eki
+fhk
+hLB
+wEr
+rjA
+sxv
+iJp
+kUV
+baw
+uKm
+vLT
+aFt
+gcP
+vVZ
+gcP
+vVZ
+sty
+sty
+sty
+jlD
+tYX
+tSF
+sty
+tuG
+sty
+txP
+lln
+eqd
+tgu
+txP
+gJH
+gcP
+gcP
+gcP
+gcP
+tnU
+wSV
+aBn
+wuT
+izT
+pIq
+sgx
+dql
+hfb
+pIq
+iCl
+djh
+hMZ
+dAC
+cJv
+hco
+gBW
+xCe
+tmt
+qce
+txq
+fuN
+cZW
+ucm
+yit
+aYs
+kgj
+nTD
+sMZ
+sMZ
+iCO
+gcH
+sMZ
+sMZ
+fYs
+jsr
+ksd
+gnO
+hyF
+hyF
+hyF
+hyF
+tWR
+sNC
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+qkN
+fUV
+dHi
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+nVh
+cfS
+nTk
+pNA
+oJw
+oJw
+oJw
+nVh
+cfS
+nTk
+pNA
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(127,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+kmJ
+oJw
+oJw
+mIL
+mIL
+mIL
+mIL
+eki
+eki
+uYx
+eki
+aFt
+aFt
+gHG
+cNK
+gHG
+aFt
+aFt
+vLT
+odB
+nof
+odB
+nof
+odB
+sty
+sty
+sty
+pTb
+epL
+lGs
+uvQ
+sZE
+joI
+lln
+dii
+kmX
+txP
+pPf
+gJH
+pPf
+gJH
+pPf
+lOd
+bxL
+ixF
+fPJ
+iQv
+iCl
+pIq
+pIq
+pIq
+kTO
+djh
+djh
+rJe
+jcJ
+gRi
+hco
+hco
+orQ
+lRg
+mCE
+xCe
+kfG
+aZo
+eok
+yit
+iGI
+wvG
+mNp
+mrN
+xdf
+pmV
+htn
+sMZ
+oNN
+jrE
+jrE
+jrE
+flQ
+ksd
+ksd
+dUz
+ksd
+hyF
+sNC
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+qkN
+wEX
+dHi
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(128,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+cLh
+oJw
+oJw
+oJw
+mIL
+mlb
+aRe
+tmj
+svD
+gIq
+tao
+uBv
+vNL
+wXx
+eus
+tao
+bgc
+qRZ
+iZR
+cgG
+xeW
+xeW
+xeW
+xeW
+odB
+gcP
+pTs
+pTs
+pTs
+pTs
+pTs
+sty
+sty
+eZn
+iue
+qKR
+txP
+txP
+pjM
+eqd
+toi
+jBp
+lXq
+lhe
+oRS
+lhe
+vjn
+lhe
+lhe
+eIk
+vDk
+eIk
+eIk
+eIk
+sgp
+rXa
+kFx
+lUE
+ihF
+hco
+hco
+pij
+hco
+hco
+yit
+yit
+yit
+yit
+wGb
+tUN
+wyF
+sMZ
+ufz
+jXs
+fKu
+sMZ
+aHf
+wKL
+ccb
+vKc
+qzv
+ksd
+hyF
+dUz
+ksd
+ksd
+ksd
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oMu
+oOC
+oOC
+oOC
+oMu
+oOC
+oOC
+oOC
+oMu
+hHp
+dHi
+wWj
+qkN
+oJw
+oJw
+oJw
+oJw
+oJw
+qxx
+qxx
+qxx
+qxx
+iId
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(129,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+cLh
+kmJ
+kmJ
+kmJ
+mIL
+fGl
+ioW
+dZw
+sGf
+wgQ
+pDL
+hSw
+hSw
+djq
+hSw
+xsj
+pJX
+xvw
+uAC
+oXt
+xeW
+xeW
+xeW
+xeW
+nof
+gcP
+pTs
+bpL
+adR
+uzq
+eCM
+eGG
+oGg
+mhD
+cUn
+gvb
+txP
+tgu
+txP
+txP
+txP
+vYH
+txP
+kvP
+qWa
+qgD
+tRQ
+jcV
+rvH
+kYi
+khB
+khB
+khB
+oaC
+khB
+hGX
+pkC
+odJ
+khB
+unT
+oAV
+aUB
+phv
+khB
+kxR
+cvm
+sNh
+upK
+xNl
+lSe
+brJ
+sMZ
+qPv
+tsk
+rUK
+sMZ
+aHf
+svX
+fTw
+jOv
+cBo
+ksd
+ksd
+dUz
+dUz
+rYw
+ksd
+yeT
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oMu
+jYj
+bHk
+nhc
+aqW
+xPS
+wLX
+oZB
+fXF
+gNs
+dHi
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(130,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+cLh
+oJw
+oJw
+oJw
+mIL
+bvO
+cws
+tmj
+uhG
+pJT
+kLL
+nEH
+oaG
+pJT
+aKf
+sSj
+rAd
+oWv
+pJT
+tvd
+xeW
+eur
+odB
+sIu
+jXa
+sIu
+amh
+tUV
+fUm
+wpg
+pTs
+axO
+xpT
+nNE
+rBN
+rBN
+rBN
+rBN
+rBN
+rBN
+rBN
+rBN
+rBN
+ikE
+fOd
+nhX
+dQr
+cAU
+mrX
+cAU
+cAU
+cAU
+cgE
+aRY
+cAU
+dwl
+leC
+pvG
+pvG
+pvG
+euw
+hQc
+pvG
+pvG
+kii
+pvG
+pvG
+sJu
+cTq
+xNl
+cpQ
+sqs
+sMZ
+juv
+sMZ
+sMZ
+wHU
+nWw
+iWu
+hBI
+jsr
+ksd
+jsr
+ksd
+dUz
+ksd
+ksd
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oMu
+rnJ
+dkR
+wqL
+jXl
+vCm
+ipW
+agN
+fXF
+gNs
+dHi
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(131,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+nTR
+nTR
+nTR
+nTR
+wiP
+ceO
+wiP
+odB
+wiP
+jSs
+wiP
+odB
+oaG
+oWv
+pJT
+odB
+odB
+odB
+odB
+iKl
+oZh
+mDt
+pTs
+obu
+gcY
+rtd
+pTs
+pPf
+puH
+gGA
+rBN
+qBO
+flr
+wJi
+ipZ
+rJx
+eNQ
+tLd
+ias
+ikE
+vCn
+skG
+hbo
+qWa
+dCT
+tsU
+ozP
+oNr
+ozP
+rYd
+ozP
+kDK
+kDK
+kDK
+ozP
+ozP
+ozP
+sCl
+ozP
+ozP
+clP
+ntY
+wGZ
+kHB
+sea
+bSK
+gMw
+eHn
+bXV
+wHU
+dwh
+feg
+dwh
+aJt
+tca
+mjq
+ksd
+gcP
+gcP
+ksd
+ksd
+ksd
+gcP
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oMu
+hwg
+uOD
+crN
+lKU
+qFt
+qmV
+icT
+bUY
+oNG
+ibX
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(132,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+syn
+uSw
+uSw
+uSw
+jqL
+nQo
+qXm
+nTR
+isP
+lBK
+uva
+odB
+isP
+lBK
+uva
+odB
+bvT
+oWv
+oWX
+sIu
+uEx
+gRA
+gDt
+dbF
+iit
+wgK
+pTs
+pTs
+amh
+pTs
+amh
+pPf
+rlc
+dOB
+rBN
+mKh
+ucN
+iYF
+iYF
+fuW
+phf
+tlx
+uHi
+niz
+hMr
+olm
+wGZ
+mOJ
+ikE
+uiB
+rLJ
+rLJ
+rLJ
+iVK
+ikE
+iVK
+oUU
+iVK
+xKZ
+nlJ
+xKZ
+xKZ
+xKZ
+xKZ
+xKZ
+cAm
+qWa
+kAQ
+agq
+icb
+crH
+feg
+mjq
+aEw
+kTq
+feg
+feg
+feg
+knT
+uQo
+jsr
+ksd
+rVd
+pxH
+rVd
+pxH
+rVd
+pxH
+rVd
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oMu
+hKC
+vxP
+jeB
+jXl
+vCm
+rHA
+dci
+fXF
+xwr
+cMD
+fGG
+xHd
+oJw
+oJw
+oJw
+oJw
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(133,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+hmx
+oJw
+oJw
+oJw
+wSg
+iDB
+iaT
+nTR
+eih
+gdx
+eoQ
+odB
+xNF
+gdx
+hcy
+odB
+oaG
+oWv
+rey
+lkg
+dvv
+kDT
+kAK
+dbF
+iit
+jYN
+xFJ
+jXa
+eMW
+iMO
+pPf
+pPf
+uEf
+msL
+rBN
+dXn
+gGn
+rRs
+fMB
+gGn
+rDJ
+rfv
+gVa
+ikE
+oAu
+opP
+pPL
+iVK
+iVK
+bXq
+hmc
+bkU
+bHA
+ikE
+iVK
+ikE
+iVK
+ikE
+qWu
+jXk
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+oaF
+crl
+fWs
+hAT
+vik
+vik
+fEW
+vik
+tjp
+vKY
+qRp
+toN
+icm
+cWD
+cdN
+fzM
+rfj
+fPE
+epp
+gew
+jsP
+aau
+rAP
+ykv
+ykv
+ykv
+ykv
+ykv
+ykv
+ykv
+oJw
+oJw
+oMu
+mzz
+sGG
+hFE
+bet
+jGz
+caA
+oZB
+fXF
+gNs
+caG
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(134,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+mDS
+oJw
+odB
+odB
+nTR
+nTR
+nTR
+nTR
+fSY
+iIR
+fSY
+odB
+fSY
+bDK
+upx
+odB
+jwu
+oWv
+qeV
+xYE
+pow
+jOF
+nli
+snS
+lPl
+doD
+rJu
+sIu
+iMO
+iMO
+pPf
+pMX
+kiT
+msL
+gJH
+rBN
+tUB
+gGn
+gdH
+qdn
+aHW
+aHW
+rBN
+ikE
+mej
+rtf
+bSy
+ikE
+iVK
+nTz
+uvf
+kmF
+ikE
+iVK
+ikE
+iVK
+ikE
+qWu
+qWu
+msV
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+xDc
+cvK
+agq
+lZu
+lBw
+jbW
+eCb
+vik
+pvb
+feg
+oSX
+oSX
+oSX
+fFO
+oSX
+oSX
+wmY
+fWu
+vim
+cXG
+dlL
+iaM
+pfT
+fKi
+ela
+yeV
+snp
+wAF
+sIv
+ykv
+lNb
+lNb
+lNb
+lNb
+lNb
+tyJ
+tyJ
+tyJ
+lNb
+xHd
+qkN
+snh
+bCB
+juR
+qkN
+oJw
+oJw
+oJw
+oJw
+oJw
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(135,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+mDS
+oJw
+odB
+fJS
+syQ
+syQ
+syQ
+syQ
+syQ
+ciw
+syQ
+qaz
+syQ
+ciw
+kqv
+eVy
+lld
+vRC
+qhb
+mcy
+mcy
+mcy
+mcy
+oIe
+kpc
+mfI
+cDB
+sIu
+tZZ
+tZZ
+lln
+seW
+xJG
+wWH
+sgA
+rBN
+bfP
+gGn
+xFS
+aHW
+aHW
+pnH
+cXW
+iDg
+wir
+rtf
+sIz
+iVK
+ikE
+bem
+cqG
+cqG
+poZ
+ikE
+qWu
+qWu
+qWu
+qWu
+qWu
+qyN
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+xDc
+cvK
+agq
+lZu
+pLI
+eBl
+jxO
+vik
+vik
+vik
+ebE
+tQC
+deV
+nuD
+gJK
+lKw
+wmY
+bhg
+ipK
+pAe
+jjH
+aZg
+nVi
+fKi
+pTF
+fKV
+nBn
+aYu
+hzA
+ykv
+cjt
+cjt
+qik
+jGo
+gyb
+fij
+ajr
+ubM
+lNb
+pft
+xIf
+fOa
+caG
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+qxx
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(136,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+cLh
+oJw
+oJw
+mDS
+oJw
+tVn
+dcQ
+itz
+iBX
+iBX
+vOk
+vOk
+vOk
+vOk
+vOk
+vOk
+vOk
+vOk
+vza
+naF
+lbF
+bcN
+eoq
+iTB
+fzz
+mcy
+kai
+dbF
+iBj
+iqc
+sIu
+oYA
+cOA
+lln
+duv
+jdh
+opL
+uBE
+rBN
+cVQ
+gGn
+mDd
+aHW
+pnH
+cbf
+ykT
+fEK
+kVS
+rtf
+qFE
+sqz
+fIJ
+nTz
+gar
+jpg
+eFs
+heG
+qWu
+qWu
+qWu
+qWu
+qWu
+fsH
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+xDc
+cvK
+agq
+lZu
+rnL
+ihk
+jxO
+fto
+gti
+vik
+etz
+tQC
+ilB
+vnX
+xyX
+kTh
+wmY
+eaW
+ymh
+aoC
+pTk
+fQu
+iAC
+fKi
+pTF
+slB
+wWf
+iZG
+vPF
+ykv
+qUe
+rpx
+nWk
+qUe
+qUe
+qUe
+pvQ
+tCS
+lNb
+rIA
+uxi
+fOa
+hyM
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+qeH
+bnr
+xZl
+jrj
+oJw
+oJw
+oJw
+qeH
+bnr
+xZl
+jrj
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(137,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+cLh
+kmJ
+kmJ
+xDg
+gZb
+iSM
+xcf
+uoN
+xeW
+qvH
+khx
+srp
+aPr
+aPr
+pUl
+aPr
+aPr
+aPr
+fMC
+lld
+nAp
+eVA
+jQG
+nuR
+nay
+mcy
+sIu
+fzY
+mrJ
+fzY
+sIu
+tuK
+qbF
+lln
+jfv
+ebI
+cyT
+msL
+rBN
+cJu
+cRX
+qBl
+oCc
+xtf
+oTg
+osD
+xrA
+loV
+rtf
+qFE
+jcK
+aWY
+ekj
+gar
+jpg
+uat
+heG
+qWu
+qWu
+qWu
+qWu
+vCU
+maM
+oeU
+qWu
+qWu
+qWu
+qWu
+qWu
+xDc
+cvK
+agq
+lZu
+dLY
+ihk
+jxO
+ifc
+ghB
+vik
+pgD
+gYX
+pEH
+irM
+gYX
+spa
+wmY
+vkz
+uug
+miu
+qrU
+sDz
+rjD
+fKi
+baX
+slB
+nBn
+iZG
+lMd
+ykv
+lWG
+hoa
+sUN
+bPC
+mLX
+lzB
+jqk
+lXS
+lNb
+rIA
+aNP
+fOa
+hyM
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+gee
+jlh
+agd
+mYn
+oJw
+oJw
+oJw
+gee
+uhz
+agd
+mYn
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(138,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+cLh
+oJw
+oJw
+oJw
+iSM
+vIK
+nhk
+mqu
+qdM
+qvH
+nja
+dTY
+hiL
+dap
+dTY
+dap
+dap
+dTY
+dTY
+dTY
+qGs
+bcN
+eoq
+wiH
+iMP
+vSR
+vuc
+rpD
+asy
+xuY
+mcy
+pnp
+bpG
+lln
+dMW
+cRI
+gJH
+ivW
+rBN
+ybM
+gqU
+rBN
+gnH
+qGT
+tvT
+jfm
+sBa
+plk
+rtf
+yfo
+sBa
+cLR
+heG
+heG
+heG
+heG
+heG
+kRh
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+xDc
+cvK
+agq
+lZu
+cit
+jwW
+jxO
+ifc
+lfU
+vik
+bUg
+uGE
+sPZ
+mPR
+uqM
+eWS
+wmY
+xTS
+uBm
+qEj
+oIZ
+hbK
+ivc
+fKi
+nBW
+mUG
+mls
+keh
+xqN
+ykv
+jND
+fou
+wBz
+lNb
+lNb
+net
+bum
+cVn
+lNb
+vau
+uxi
+fOa
+hyM
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+xvh
+uFY
+lZh
+tda
+mkN
+mkN
+mkN
+xvh
+slV
+oAh
+tda
+oJw
+oJw
+oJw
+vhh
+eKA
+lbj
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(139,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+cnv
+scc
+gdx
+gdx
+qdM
+qvH
+jbi
+cBq
+dTa
+unB
+uDg
+uTL
+ffe
+mNj
+gfZ
+ork
+nAp
+msI
+mcy
+rdc
+mds
+vSR
+ygJ
+uJI
+pas
+xvH
+mcy
+tDi
+vsI
+lln
+aEK
+lln
+lln
+tfn
+rBN
+rBN
+bUj
+rBN
+vbc
+hXt
+lJh
+hEK
+qWa
+cNy
+rtf
+kAQ
+kxL
+lhe
+qWu
+qWu
+qWu
+qWu
+qWu
+heG
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+xDc
+cvK
+agq
+hbU
+kSm
+vik
+bLN
+vik
+vik
+qdX
+vbO
+vbO
+dhk
+ifW
+vbO
+vbO
+wmY
+fOJ
+fOJ
+pwV
+awG
+btt
+vBJ
+hCt
+fKi
+kbH
+dFQ
+wzV
+fKi
+ykv
+sTZ
+mSa
+sTZ
+lNb
+hsd
+nMu
+ccs
+ecH
+lNb
+ria
+clS
+aLM
+nzA
+nOl
+aQd
+jrj
+jrj
+jrj
+mkN
+jrj
+jrj
+jrj
+mkN
+cNi
+wEY
+wEY
+cNi
+rTj
+peg
+kds
+cNi
+cVh
+wEY
+cNi
+jrj
+jrj
+mkN
+jrj
+jrj
+aAh
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(140,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+uxd
+yjw
+gdx
+vVi
+iBX
+qvH
+jbi
+cBq
+cfU
+dkk
+rXD
+jbO
+dkk
+rXD
+plZ
+iHn
+gkm
+jEr
+eoq
+oox
+qLN
+bJK
+aMJ
+jVz
+kOr
+evb
+eOq
+xeh
+sRn
+nkH
+eMX
+rPS
+uOl
+gOo
+lNK
+luC
+kjt
+qjy
+bVr
+gPl
+iBT
+uZS
+qWa
+eaw
+pKq
+rkn
+qWa
+ivT
+qWu
+qWu
+qWu
+qWu
+qWu
+heG
+eNM
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+xDc
+cvK
+nXa
+lkU
+exU
+vjr
+dcW
+jeq
+rav
+oGE
+cLA
+kaz
+bjn
+jCv
+sUG
+yiy
+exU
+wFI
+twS
+mlc
+bgN
+ukG
+tFK
+jeq
+iNx
+xOY
+xtB
+sSD
+uHJ
+vLk
+vyk
+joo
+eMg
+tWl
+tBQ
+jti
+oRK
+bBo
+bRG
+kMY
+rlt
+wNs
+gan
+eDy
+vBn
+mDA
+pVn
+pVn
+dMC
+pVn
+pVn
+pVn
+uvR
+uCI
+eeF
+eeF
+xQc
+xCJ
+tme
+xCJ
+naY
+eeF
+eeF
+xmv
+pVn
+pDE
+mkN
+xoS
+dXz
+mkN
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(141,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+uxd
+vPj
+jkB
+rRe
+xeW
+qvH
+jbi
+cBq
+xgJ
+pIL
+muE
+pNp
+qol
+gjP
+ycO
+vQq
+gSH
+cBV
+thQ
+kqN
+uIC
+uJM
+tto
+pNU
+sgB
+cLe
+jTm
+lvP
+mNQ
+mNQ
+jOM
+vmV
+nds
+hTc
+mNQ
+oZI
+mNQ
+rQH
+pvG
+pvG
+pvG
+dgQ
+pvG
+eQo
+kDZ
+aqm
+aeH
+ivT
+qWu
+qWu
+qWu
+qWu
+qWu
+ikE
+oeU
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+xDc
+cvK
+bZU
+rOg
+sws
+qPF
+tXP
+qPF
+yaY
+qPF
+qPF
+qPF
+dul
+maq
+qPF
+vpd
+oDR
+qPF
+qgO
+aVF
+dLG
+tXP
+hVw
+lXf
+qPF
+qPF
+dFj
+rWh
+fPv
+qPF
+qPF
+bNx
+rPK
+ezt
+spd
+kjM
+fyZ
+kOD
+mkQ
+fRP
+fuS
+pfR
+sTj
+jWg
+pyD
+mIa
+cTO
+cTO
+yhe
+cTO
+cTO
+cTO
+cTO
+hRL
+cTO
+cTO
+hRL
+cTO
+jzd
+hmS
+vIR
+hmS
+hmS
+vIR
+wXB
+nDP
+twA
+mNI
+bkL
+xbI
+oJw
+iEL
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(142,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+uxd
+yjw
+clm
+ugY
+kCo
+qvH
+jbi
+cBq
+cfU
+hCj
+iop
+pRv
+hCj
+iop
+pBP
+dTY
+rhH
+yfc
+eoq
+jil
+bkb
+iYc
+foo
+cKW
+gvw
+uZa
+mxT
+xkW
+upC
+aqk
+aqk
+nWz
+aqk
+qDi
+aqk
+aqk
+ciZ
+qwr
+gBO
+xdH
+wmN
+xwl
+rzX
+eTx
+qAa
+shu
+qWa
+ivT
+qWu
+qWu
+qWu
+qWu
+qWu
+iVK
+iVK
+ikE
+iVK
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+xDc
+cZd
+qwi
+wxW
+exU
+eeA
+dVn
+nwK
+khi
+nwi
+kCM
+mle
+wfV
+hhp
+rMj
+sUP
+exU
+bHM
+qZG
+bjG
+iOV
+bud
+iNl
+dTd
+dLk
+wfV
+rMj
+aXv
+xut
+tYw
+joO
+gHU
+xLD
+ebi
+ycP
+dYm
+qBg
+xZp
+fYL
+vde
+bjJ
+ndH
+fhj
+ouN
+opB
+jAA
+dxD
+dxD
+oIb
+pVn
+pVn
+pVn
+fhr
+kwU
+ejJ
+ejJ
+uja
+aJr
+itE
+aJr
+fyD
+ejJ
+ejJ
+mcd
+pVn
+nHn
+mkN
+ayC
+tAw
+mkN
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(143,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+uxd
+dWD
+clm
+oGV
+qdM
+qvH
+jbi
+bGS
+oHi
+smD
+ien
+ddv
+xfQ
+xFV
+cMG
+lqa
+quA
+tly
+rdF
+qKJ
+oFi
+pFx
+gnw
+riL
+tHj
+lBF
+mcy
+fEf
+xTU
+xTU
+xTU
+xTU
+xTU
+xTU
+xTU
+aaT
+vtl
+aaT
+wAq
+mhr
+wAq
+wAq
+qWa
+cNy
+pfv
+qWa
+kxL
+tuj
+qWu
+qWu
+qWu
+qWu
+qWu
+ikE
+iVK
+iVK
+tlY
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+xDc
+wKK
+agq
+jvg
+cTy
+wqp
+obB
+wqp
+wqp
+sCf
+sCf
+sCf
+pni
+fCO
+wqp
+obB
+pOa
+yhy
+edb
+sVf
+fGi
+yhy
+yhy
+vDq
+rFa
+edM
+iIK
+pTN
+jIx
+vDq
+bAY
+bAY
+cAl
+kdj
+sWH
+vHJ
+drK
+tcO
+sjy
+xrF
+nKl
+oWu
+mbo
+wWj
+mkN
+jrj
+jrj
+jrj
+mkN
+jrj
+jrj
+jrj
+mkN
+cNi
+wEY
+wEY
+cNi
+nwt
+kZU
+pQq
+cNi
+wEY
+wEY
+cNi
+jrj
+jrj
+mkN
+jrj
+jrj
+aAh
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(144,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+cLh
+oJw
+oJw
+oJw
+uxd
+rqD
+dXk
+kSE
+qdM
+qvH
+nja
+dTY
+phN
+phN
+dTY
+phN
+phN
+rWu
+dTY
+qBU
+pQk
+bcN
+eoq
+kkz
+nDE
+lnC
+lnC
+lnC
+jdO
+aKH
+mcy
+xOy
+tZX
+paY
+rOt
+rOt
+ukD
+lZj
+jdW
+aaT
+emL
+xZG
+amd
+iLI
+ouW
+wAq
+wAq
+sgq
+agq
+geW
+hDJ
+cLR
+ikE
+iVK
+ikE
+iVK
+ikE
+fra
+qRk
+gdj
+rLw
+loe
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+iVK
+wKK
+agq
+lZu
+wqp
+gZm
+tkE
+iqN
+iqN
+vMm
+bEU
+jEd
+dqU
+aVK
+ocK
+hZE
+yhy
+tNG
+dtQ
+oVA
+fss
+sNa
+pVv
+vDq
+tMO
+uWi
+pUe
+xvl
+hmW
+rvi
+bAY
+gFA
+qeZ
+kdj
+fym
+fym
+fym
+fym
+fym
+mkV
+mkV
+kwJ
+fBZ
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+xvh
+kFl
+whv
+tda
+mkN
+mkN
+mkN
+xvh
+jlh
+aGV
+tda
+oJw
+oJw
+oJw
+vhh
+eKA
+lbj
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(145,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+cLh
+kmJ
+kmJ
+kmJ
+uxd
+uxd
+xpK
+gUg
+xeW
+qvH
+fDn
+bPi
+aYE
+aYE
+wYm
+aYE
+aYE
+aYE
+fMC
+lld
+wYM
+bcN
+mcy
+mcy
+wpr
+wpr
+vHT
+vHT
+mcy
+mcy
+mcy
+dOU
+qYO
+qYO
+dpc
+fDu
+qYO
+fFw
+tZX
+aaT
+pRs
+fjK
+hZR
+amd
+wdF
+olJ
+lqv
+wir
+agq
+iUG
+liR
+bNk
+bNk
+bNk
+wvf
+bNk
+bNk
+fra
+txC
+sdN
+siH
+nCs
+qWu
+qWu
+qWu
+qWu
+qWu
+qWu
+tdd
+vmM
+wKK
+agq
+lZu
+wqp
+iQM
+iqN
+iqN
+iqN
+vMm
+jQQ
+jQQ
+jQQ
+feC
+jQQ
+xpO
+rVk
+nGq
+ede
+rMo
+oeh
+stb
+nqW
+vDq
+xen
+kNK
+bFx
+bFx
+aJW
+xJY
+bAY
+dmN
+qeZ
+weu
+lzA
+uhw
+oak
+kFz
+ybR
+foR
+jaJ
+fJc
+fBZ
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+vMM
+slV
+eTI
+aXW
+oJw
+oJw
+oJw
+vMM
+mja
+eTI
+aXW
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(146,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+cLh
+oJw
+oJw
+oJw
+oJw
+tVn
+ahj
+xun
+kCo
+kCo
+tXE
+tXE
+tXE
+tXE
+tXE
+tXE
+tXE
+tXE
+lAH
+naF
+caE
+bcN
+rJZ
+iRV
+gqT
+nbq
+aFa
+aFV
+vms
+rJZ
+xIS
+uqu
+xIS
+uqu
+xIS
+uqu
+xIS
+xOy
+rOt
+aaT
+xLy
+uSM
+jLG
+gyP
+rab
+aFW
+vit
+fko
+nCb
+cnl
+bNk
+bNk
+mIo
+mIo
+mIo
+bNk
+liR
+pDS
+etb
+sdN
+siH
+loe
+qWu
+qWu
+qWu
+qWu
+fTl
+tdd
+tdd
+vmM
+wKK
+agq
+lZu
+wqp
+iQM
+iqN
+iqN
+iqN
+vMm
+iqN
+vMm
+iFg
+xqX
+jQQ
+vAY
+vpk
+stb
+stb
+ars
+qJV
+stb
+tbe
+kfi
+mcA
+uYn
+bby
+bby
+tfW
+eZM
+bAY
+ibu
+qeZ
+weu
+lzA
+dLp
+mql
+qVO
+xqK
+ioP
+mkV
+fyd
+fBZ
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kjd
+fnF
+xZl
+jrj
+oJw
+oJw
+oJw
+kjd
+fnF
+xZl
+jrj
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(147,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+odB
+qbj
+hty
+hty
+hty
+lCE
+hty
+lCE
+hty
+jZe
+hty
+lCE
+hty
+jLj
+xJc
+vXa
+rYB
+hld
+qPP
+bnV
+qic
+jvU
+aQv
+lOV
+rJZ
+uXZ
+rJZ
+uXZ
+gcP
+gcP
+gcP
+uqu
+xOy
+rOt
+aaT
+uct
+wOE
+shE
+pDA
+rDM
+amd
+wAq
+wir
+agq
+oWS
+liR
+bNk
+mIo
+vej
+mIo
+bNk
+bNk
+txC
+wZn
+sdN
+sdN
+jwZ
+etb
+qWu
+qWu
+qWu
+iVK
+iVK
+tdd
+vmM
+wKK
+agq
+lZu
+wqp
+iQM
+iqN
+iqN
+iqN
+iqN
+iqN
+vMm
+vmG
+rgM
+qVQ
+vAY
+vpk
+uWC
+gBy
+obU
+bHW
+rMo
+pfH
+iIK
+bby
+hxT
+bby
+bby
+ffm
+eSq
+bAY
+ceS
+kWO
+weu
+lzA
+qsG
+ydn
+emb
+dlg
+wgE
+rou
+bzz
+fBZ
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(148,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+odB
+odB
+odB
+odB
+odB
+odB
+kGh
+fQe
+kGh
+odB
+kGh
+rej
+kGh
+odB
+nkr
+rBH
+nkg
+qJk
+wVa
+vtm
+lmN
+qfs
+sfE
+odI
+rJZ
+emc
+jGP
+rJZ
+gcP
+gcP
+gcP
+xIS
+xOy
+cIR
+aaT
+rst
+kty
+tjw
+uSM
+fjK
+xZG
+aaT
+lqX
+agq
+cnl
+bNk
+bNk
+eoZ
+xYZ
+toI
+bNk
+liR
+ovc
+pea
+wZn
+lvX
+mKC
+snK
+tdd
+iVK
+iVK
+iVK
+unF
+tdd
+iVK
+wKK
+agq
+lZu
+wqp
+iQM
+iqN
+iqN
+iqN
+iqN
+iqN
+vMm
+ogO
+fQJ
+vub
+cAo
+mcF
+stb
+rEs
+aQP
+lYB
+cXp
+iEN
+iIK
+bby
+aCC
+bby
+lTR
+kcf
+bby
+bAY
+xrn
+qeZ
+weu
+lzA
+fIl
+rdR
+bny
+hXm
+hYP
+mkV
+gNs
+fBZ
+uzv
+qkN
+oJw
+oJw
+oJw
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+oMQ
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(149,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+nPG
+wjY
+qMj
+hLZ
+phC
+nIy
+gdx
+coZ
+odB
+jla
+gdx
+bLM
+odB
+hwG
+vbG
+abN
+mWl
+ilp
+oLy
+qzA
+aQv
+aQv
+lhF
+rJZ
+quG
+gsM
+uXZ
+gcP
+gcP
+gcP
+uqu
+xOy
+paY
+aaT
+cNf
+rDT
+oyZ
+dsg
+ais
+xsb
+aaT
+uxx
+opP
+njG
+liR
+bNk
+liR
+vPl
+bNk
+bNk
+bNk
+jer
+oNq
+dAB
+aKg
+oHE
+fra
+uQN
+tdd
+tdd
+iVK
+tdd
+iVK
+ikE
+fhQ
+agq
+lZu
+wqp
+iQM
+iqN
+iqN
+iqN
+iqN
+iqN
+vMm
+iFg
+vHU
+ujZ
+opE
+vpk
+stb
+rEs
+tzG
+bOr
+qss
+aMj
+mOa
+lCJ
+uwa
+fYf
+qja
+fCp
+clh
+bAY
+egc
+qeZ
+weu
+lzA
+hny
+gUq
+pbm
+skJ
+pNB
+mkV
+ixM
+pBx
+tgk
+xHd
+oJw
+oJw
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(150,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+kmJ
+kmJ
+kmJ
+nPG
+ryf
+rds
+wMV
+phC
+isP
+rnE
+uva
+odB
+isP
+rnE
+uva
+odB
+wZS
+vbG
+pQA
+rJZ
+ewM
+lrv
+lMc
+cek
+oLh
+chR
+brS
+mdR
+jth
+rJZ
+gcP
+gcP
+gcP
+xIS
+xOy
+rOt
+aaT
+aaT
+uZr
+uZr
+uZr
+uZr
+uZr
+uZr
+nzQ
+agq
+qWa
+bIE
+liR
+liR
+dnh
+liR
+bNk
+liR
+bZT
+dBK
+fKg
+nUb
+mTR
+nvC
+mOc
+gys
+gys
+gys
+gys
+ikE
+qgD
+uzj
+fWs
+nom
+wqp
+iQM
+iqN
+iqN
+iqN
+iqN
+iqN
+vMm
+vmG
+rdz
+xaO
+nAt
+yhy
+ujx
+efy
+fUY
+alF
+oyQ
+rBA
+fYN
+xVB
+usB
+rkt
+rkt
+nyR
+fVz
+bAY
+egc
+qeZ
+nRq
+nRq
+nRq
+nRq
+nRq
+bhf
+nRq
+nRq
+pmM
+uRz
+ani
+xHd
+oJw
+oJw
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(151,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+nPG
+ryf
+rds
+xcI
+phC
+plO
+lSh
+plO
+odB
+plO
+dkp
+plO
+odB
+hSM
+vbG
+xuS
+rJZ
+rJZ
+rJZ
+rJZ
+rJZ
+rJZ
+rJZ
+rJZ
+uXZ
+rJZ
+uXZ
+vVZ
+gcP
+gcP
+uqu
+jRq
+ugu
+tZX
+tZX
+hUd
+pab
+mdS
+lhd
+lhd
+hUd
+cDs
+pJp
+fyH
+qWa
+bmb
+dNN
+dvi
+rIR
+sBa
+gdp
+xSH
+qJI
+fFn
+fim
+ecn
+bhK
+psv
+hJk
+evB
+khB
+khB
+oSZ
+sTc
+jut
+tZz
+dtR
+ggv
+lSs
+iqN
+iqN
+iqN
+iqN
+gZm
+eqk
+ckn
+aCk
+wFt
+tzM
+aHH
+uHm
+tNv
+qex
+prK
+rJy
+mrO
+vDq
+mxm
+hIu
+wnx
+mUn
+mVa
+uLT
+bAY
+xiN
+qeZ
+nRq
+vLD
+vLD
+nRq
+lIM
+aVb
+trq
+nRq
+oZn
+iLj
+tSt
+xHd
+oJw
+oJw
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(152,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+nPG
+ryf
+aTU
+uCq
+phC
+oaG
+pJT
+hNN
+siN
+oaG
+pJT
+hgI
+saf
+rlE
+aDP
+ljf
+pnb
+lmf
+tKp
+izg
+bNU
+vYL
+vYL
+vYL
+qKu
+vYL
+qKu
+vYL
+qKu
+vYL
+vYL
+uqu
+wzt
+ugu
+uJL
+hUd
+dkg
+hRg
+smV
+gJo
+jEK
+cmB
+qWi
+vds
+jsI
+ddj
+ifo
+iAO
+pvG
+glu
+nvC
+xgj
+stn
+stn
+aak
+rPi
+nvC
+hiy
+oPH
+iNu
+pvG
+xvx
+pvG
+sZk
+mOh
+jlq
+wKy
+vkJ
+nbp
+hBE
+xOv
+nMW
+xOv
+tkE
+jGY
+dZZ
+dZZ
+qun
+dZZ
+yhy
+yhy
+yhy
+kSY
+yhy
+yhy
+yhy
+bAY
+xBF
+bAY
+koH
+ibl
+nUE
+iIK
+bAY
+xiN
+qeZ
+nRq
+nic
+dRc
+sYV
+lZs
+pyy
+dLw
+nRq
+fAP
+fBZ
+jJP
+qkN
+oJw
+oJw
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(153,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+nPG
+ryf
+vRG
+uOE
+rCd
+cBx
+rYe
+obp
+niH
+niH
+mdL
+niH
+niH
+wpV
+gnI
+ase
+hPq
+gAu
+tBd
+tBd
+jNO
+qKu
+vYL
+qKu
+rCg
+hSA
+mvl
+tWk
+jJr
+qKu
+vYL
+xIS
+uqu
+frS
+bDh
+hUd
+oYX
+qPf
+nYo
+ezS
+lTw
+jSy
+rzX
+uZO
+pIS
+mQm
+lUy
+ges
+hgB
+avU
+kBY
+uFO
+bZo
+hSW
+wyr
+cgQ
+tfM
+hcL
+tch
+twP
+haW
+oyB
+mhE
+gkn
+juQ
+wzq
+iVK
+kdj
+hZu
+kdj
+cfp
+kdj
+cfp
+kdj
+cfp
+dZZ
+bjA
+feN
+ofJ
+yhy
+qmX
+muP
+jsz
+buA
+fUy
+yhy
+eKV
+bar
+bAY
+mZW
+fkO
+brl
+sxQ
+bAY
+nZQ
+svA
+nRq
+nRq
+nRq
+nRq
+kKk
+syJ
+qEF
+nRq
+wDx
+dqS
+lrW
+xHd
+oJw
+oJw
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(154,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+nPG
+kJr
+oCy
+uLK
+phC
+ogS
+fdV
+hoA
+eKt
+oaG
+cWb
+oaG
+aIL
+vdi
+pQd
+tec
+odX
+xvt
+jpR
+jpR
+ruV
+mlI
+crX
+vFP
+sZu
+daA
+kWg
+rtg
+rtg
+vYL
+qKu
+xIS
+xIS
+xOy
+tpO
+hUd
+guO
+ezS
+ktO
+lJQ
+lJQ
+rhd
+oAB
+cUo
+ivy
+lJQ
+lJQ
+qWa
+rmL
+wpT
+sxj
+eKm
+nFh
+yhY
+reO
+pvG
+pvG
+dmm
+qgD
+sTc
+gFw
+wwy
+eIa
+cjF
+gUe
+hKv
+eIa
+cfp
+eWb
+eWb
+kdj
+cfp
+kdj
+cfp
+kdj
+dZZ
+eWW
+kru
+eYG
+yhy
+ufK
+rie
+moF
+bhZ
+skm
+rUR
+fNd
+hqO
+bAY
+wOj
+ggC
+qBZ
+lGo
+bAY
+wkc
+rLA
+doT
+nRq
+dVX
+jNs
+iAQ
+iAQ
+dju
+nRq
+csk
+fBZ
+eDy
+xHd
+oJw
+oJw
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(155,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+kmJ
+kmJ
+kmJ
+dac
+dac
+dac
+tcX
+dac
+dac
+sYP
+dac
+dac
+dac
+dac
+dac
+dac
+xtA
+pNv
+pnb
+mZC
+bUA
+dYn
+rJr
+epI
+mgA
+vYL
+qKu
+boZ
+ejd
+ntv
+ntv
+tUl
+qKu
+vYL
+xIS
+uqu
+xOy
+paY
+hUd
+cBF
+xVf
+mgZ
+lJQ
+mLR
+mkt
+jLi
+klM
+tko
+lMH
+lJQ
+bIE
+qWa
+mqx
+suI
+wmN
+htP
+kRH
+nSy
+wmN
+wrj
+mjB
+sTc
+ikE
+boa
+sPL
+aLE
+sPp
+ujd
+pDJ
+aYB
+jXJ
+tpI
+fwZ
+pfP
+cem
+bao
+jMc
+pXz
+iBx
+gLt
+lnx
+iRN
+yhy
+qOc
+iGP
+aSy
+vcp
+gzs
+yhy
+dmN
+bar
+bAY
+wMl
+qBZ
+wKa
+vva
+bAY
+evk
+eeC
+doT
+nRq
+nRq
+nRq
+dUn
+xxX
+xqA
+nRq
+cga
+fBZ
+eDy
+xHd
+oJw
+oJw
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(156,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+dac
+cxU
+rnR
+lnQ
+kgk
+cVU
+rVS
+fPf
+ssO
+khL
+cUD
+amz
+dac
+bjh
+aqp
+snX
+aBm
+bUA
+pcf
+pcf
+gAF
+tmv
+vYL
+vYL
+qAM
+sYe
+hNA
+sYe
+hNA
+vYL
+qKu
+xIS
+xIS
+ovk
+olc
+hUd
+wlZ
+nUe
+ghA
+lJQ
+sCc
+tYQ
+dnj
+ucK
+oEZ
+wrv
+qFI
+fvs
+fvs
+jlb
+jcK
+cJW
+bMx
+rtf
+fzL
+ejP
+oAp
+bzF
+jAW
+iVK
+eIa
+rAG
+sbE
+qZR
+sbE
+wbF
+eIa
+cfp
+kdj
+cfp
+lxS
+xiN
+kdj
+lNI
+bAO
+hsE
+hsE
+hsE
+hsE
+yhy
+yhy
+yhy
+yhy
+yhy
+yhy
+yhy
+gFA
+dRe
+bAY
+wOj
+sxQ
+ggC
+lGo
+bAY
+otG
+aME
+doT
+nRq
+sof
+hcR
+xox
+cQJ
+jnl
+nRq
+csk
+fBZ
+fMI
+qkN
+oJw
+oJw
+oJw
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(157,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+dac
+oLY
+iDr
+iOc
+dac
+lNk
+hxB
+cKg
+cUO
+cUO
+cUO
+cUO
+dac
+doo
+atv
+kPm
+aBm
+bUA
+pcf
+pcf
+eKw
+mgA
+vYL
+qKu
+iZw
+iFa
+iFa
+iFa
+iFa
+qKu
+vYL
+xIS
+uqu
+irT
+xTU
+hUd
+hUd
+hUd
+hUd
+lJQ
+ous
+ufH
+ous
+bhh
+dDF
+ybN
+qFI
+sDr
+djj
+jlb
+jlb
+jlb
+cbm
+sMJ
+cbm
+szG
+qAm
+qAm
+qAm
+feV
+boa
+sNZ
+eVp
+snN
+uXb
+txM
+boa
+gcP
+gcP
+kdj
+lxS
+ibu
+cfp
+bAO
+cMz
+syf
+hfO
+bqR
+lNI
+lNI
+lNI
+cfp
+cfp
+cfp
+cfp
+cfp
+uTm
+ovK
+bAY
+bAY
+bAY
+bAY
+bAY
+bAY
+jvr
+rnu
+cvg
+nRq
+nRq
+nRq
+nRq
+nRq
+vEV
+nRq
+ooa
+fBZ
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+nqy
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(158,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+dac
+oVK
+cUO
+eHZ
+dac
+bhD
+cUO
+mqP
+dac
+jyF
+dac
+kER
+dac
+nxH
+sUY
+oTz
+kPl
+bUA
+wYc
+xAF
+gAF
+tmv
+vYL
+vYL
+xgx
+xgx
+xgx
+jTh
+xgx
+vYL
+uqu
+tpO
+iJK
+vjR
+leF
+xIS
+xIS
+xIS
+uqu
+lJQ
+lJQ
+lJQ
+fdy
+eBH
+hwF
+tbW
+qFI
+xrp
+rNQ
+kuW
+brp
+jlb
+hFP
+jtx
+uHc
+qAm
+cfd
+gju
+sCr
+lIo
+eIa
+pzZ
+trV
+ikK
+xIu
+shq
+eIa
+gcP
+gcP
+cfp
+lxS
+kZV
+kdj
+lNI
+cMz
+vXI
+ezn
+nEe
+bAO
+lNI
+bAO
+xxj
+iix
+cnt
+lMG
+iix
+hSv
+giX
+suJ
+giT
+sCg
+lgq
+irK
+gwE
+nUp
+mUZ
+cvg
+jNI
+fXy
+jvS
+vHa
+tjI
+lcG
+uCh
+wCO
+fBZ
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+vET
+bMM
+pMT
+clx
+oJw
+oJw
+oJw
+vET
+bMM
+pMT
+clx
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(159,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+kmJ
+kmJ
+kmJ
+dac
+dac
+mGn
+dac
+dac
+dAi
+dAi
+fMP
+dac
+nhy
+dac
+rRw
+dac
+gMx
+xzo
+uyi
+hGs
+uGU
+oNo
+uLd
+jxh
+mgA
+vYL
+qKu
+xgx
+tuT
+xgx
+tuT
+aOe
+qKu
+xIS
+rPZ
+qLv
+gRG
+ayb
+xIS
+gNg
+lio
+uqu
+bxf
+lGr
+dFq
+iuJ
+hwJ
+oEZ
+uwi
+qFI
+uNY
+xqf
+ffa
+jjK
+lRF
+ouV
+jWP
+hiS
+nsc
+oYn
+gHp
+chx
+feV
+boa
+lTH
+xLR
+aBB
+sbE
+sek
+boa
+gcP
+gcP
+kdj
+mqf
+egc
+cfp
+bAO
+cMz
+xkV
+hnZ
+sKq
+jNL
+fab
+bxq
+rof
+dTt
+dTt
+dTt
+dTt
+kzS
+pYb
+fYG
+fYG
+vtG
+fYG
+fdL
+qvU
+smf
+lsT
+cvg
+lEi
+tjR
+tjR
+tjR
+xVI
+oEI
+lHO
+hyY
+wIN
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+ozH
+ins
+vXW
+nKT
+oJw
+oJw
+oJw
+ozH
+ins
+vXW
+nKT
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(160,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+eNZ
+waJ
+rez
+mJb
+uqu
+dac
+dac
+dac
+dac
+dac
+dac
+dac
+dac
+tmv
+mgA
+tmv
+mgA
+tmv
+mgA
+tmv
+mgA
+tmv
+qKu
+vYL
+xgx
+xgx
+aOe
+jTh
+aOe
+vYL
+uqu
+whc
+nCL
+jLe
+vfO
+hXQ
+oNZ
+oNZ
+uqu
+azb
+eYQ
+mFx
+mmi
+iTj
+oEZ
+qJP
+qFI
+tSr
+ulq
+sce
+iIo
+jlb
+pPQ
+efF
+hiS
+uvA
+bCa
+jyr
+bmY
+lIo
+eIa
+mXu
+xzm
+woo
+sbE
+pvY
+eIa
+gcP
+gcP
+cfp
+lxS
+txB
+kdj
+lNI
+tsy
+jTf
+wAc
+fFY
+qgT
+tLF
+bAO
+cfp
+kJo
+wAL
+kJo
+cfp
+nxy
+ojL
+wOC
+wOC
+wOC
+wOC
+wOC
+wOC
+dha
+mAe
+cvg
+jNI
+jvS
+jvS
+vHa
+kVf
+rnF
+uCh
+swS
+fBZ
+eDy
+xHd
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+uRp
+vKG
+shF
+tis
+efa
+efa
+efa
+uRp
+bXF
+gdT
+tis
+oJw
+oJw
+oJw
+vhh
+eKA
+lbj
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(161,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+eNZ
+eNZ
+gxp
+ouU
+tZX
+tpO
+xRu
+xRu
+tZX
+tZX
+xRu
+tZX
+tZX
+uqu
+xIS
+uqu
+xIS
+uqu
+xIS
+uqu
+xIS
+uqu
+vYL
+qKu
+gGi
+mJj
+aOe
+vuy
+nxh
+eTa
+ejt
+uGq
+bKU
+qNb
+wXK
+hXQ
+aNG
+oNZ
+uqu
+lJQ
+lJQ
+lJQ
+bkm
+iTj
+oEZ
+hPX
+qFI
+oBr
+asW
+pHk
+eLP
+dRg
+gpZ
+afM
+pjg
+qAm
+kGd
+ebo
+qDU
+feV
+boa
+eIa
+boa
+eIa
+boa
+eIa
+boa
+vVZ
+gcP
+usv
+chz
+eWb
+xrn
+bAO
+lNI
+bAO
+lNI
+ppA
+koZ
+bTj
+lNI
+wAh
+kJo
+kJo
+kJo
+cfp
+ojL
+cVY
+deT
+vBW
+ndF
+pFN
+qxe
+wOC
+ptf
+jEq
+cvg
+uCh
+uCh
+uCh
+uCh
+uCh
+uCh
+uCh
+vQt
+fBZ
+nOl
+odV
+clx
+clx
+clx
+efa
+clx
+clx
+clx
+efa
+ebb
+lpM
+lpM
+ebb
+tKJ
+plo
+miy
+ebb
+lpM
+lpM
+ebb
+clx
+clx
+efa
+clx
+clx
+cWy
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(162,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+eNZ
+eNZ
+uqu
+uqu
+uqu
+uqu
+uqu
+uqu
+uqu
+gyZ
+tiJ
+tpO
+tZX
+tZX
+tZX
+tZX
+tZX
+tZX
+xRu
+cwj
+tZX
+qKu
+jTh
+mJj
+rRj
+isi
+rRj
+xgx
+lbb
+ejt
+vRJ
+jmb
+bBf
+oAN
+hXQ
+qWC
+qWC
+uqu
+bxf
+lGr
+qzO
+iuJ
+hwJ
+oEZ
+igL
+qFI
+bSg
+hkv
+lvt
+mfN
+jlb
+oOu
+efF
+wlf
+qAm
+lWz
+hYp
+qsX
+qAm
+usv
+gwU
+usv
+gwU
+usv
+gwU
+usv
+gwU
+usv
+sLo
+nwO
+tWL
+gYE
+cfp
+cfp
+cfp
+bAO
+lNI
+bAO
+lNI
+bAO
+kJo
+kJo
+cfp
+cfp
+cfp
+nxy
+xyM
+ndF
+ohU
+gAj
+dEl
+brh
+elX
+syw
+iXL
+hES
+hQS
+msd
+uaf
+ppD
+eDX
+uBB
+qNB
+oqs
+loY
+sEi
+ybk
+skz
+kyI
+mfr
+sog
+cJO
+qtj
+qtj
+rVJ
+qlD
+eDi
+eDi
+qnv
+oKc
+ojh
+oyg
+pjA
+eDi
+eDi
+ubd
+mIy
+qWV
+efa
+iin
+djD
+efa
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(163,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+cLh
+cLh
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+uqu
+uqu
+uqu
+uqu
+uqu
+uqu
+eXS
+meg
+aAl
+rOt
+rOt
+bDh
+tpO
+vYL
+qKu
+aOe
+xgx
+xgx
+xgx
+jTh
+qKu
+ejt
+fZC
+nSp
+gmT
+mUy
+hXQ
+lio
+oNZ
+uqu
+edk
+smL
+mFx
+lid
+iTj
+oEZ
+nnn
+qFI
+jdi
+qeJ
+fvs
+fvs
+fvs
+uiv
+uDE
+fPe
+tWL
+wQS
+xdE
+nbQ
+lQy
+kmK
+kmK
+wvX
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+erP
+usv
+faA
+kdj
+cfp
+cfp
+cfp
+wAL
+kJo
+cfp
+kJo
+kJo
+cfp
+cfp
+cfp
+nxy
+ojL
+ndF
+pZq
+sRL
+jeF
+xyM
+xyM
+wOC
+ojL
+xjw
+kdj
+fTk
+uJp
+ghD
+xkg
+ghD
+lnd
+mqB
+bTr
+wdQ
+cZJ
+mUx
+dQP
+vdr
+jOV
+iPF
+dDK
+wno
+wno
+wno
+wno
+wno
+wno
+wno
+dDK
+cOO
+vdr
+vdr
+vdr
+vdr
+hDr
+egs
+ndQ
+hsS
+ppB
+atn
+qFa
+oJw
+kil
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(164,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+cLh
+cLh
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+wjo
+uqu
+wjo
+uqu
+wjo
+uqu
+jcg
+tZX
+qKu
+vYL
+qKu
+vYL
+qKu
+vYL
+qKu
+kxh
+cdk
+pZw
+tEr
+tEr
+niU
+hXQ
+xxu
+qWC
+uqu
+lJQ
+lJQ
+lJQ
+gPc
+hVZ
+dDF
+knL
+qFI
+fvs
+fvs
+fvs
+rAo
+lXK
+gOl
+efF
+gCH
+tWL
+dTs
+rpC
+vaj
+lQy
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+vtZ
+cfp
+ecy
+cfp
+cfp
+cfp
+kJo
+kJo
+kJo
+kJo
+kJo
+wAL
+kJo
+cfp
+cfp
+ojL
+lka
+xyM
+tzU
+amw
+ndF
+iJj
+ndF
+ndF
+ojL
+qEu
+lIu
+fTk
+cfg
+qBe
+gyk
+wxy
+jjL
+hoG
+tSt
+vLt
+kHa
+cXV
+hoD
+tyQ
+iQw
+lbs
+xio
+xWy
+mIy
+mIy
+otU
+nRR
+mIy
+tyQ
+xio
+lbs
+iQw
+xWy
+otU
+nRR
+mIy
+mIy
+bLr
+efa
+oOk
+bMD
+efa
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(165,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+cLh
+kmJ
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+yeT
+wjo
+paY
+tZX
+tpO
+uqu
+xIS
+uqu
+xIS
+uqu
+xIS
+cdk
+oUa
+oWh
+coi
+tEr
+dne
+rZd
+oJU
+qWC
+uqu
+bxf
+lGr
+prd
+iuJ
+nkW
+bQv
+udq
+lJQ
+cvo
+fDa
+qnt
+rtl
+nqX
+pIp
+efF
+cUe
+tWL
+xWD
+rpC
+oxc
+lQy
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+gwU
+kdj
+gXX
+kdj
+cfp
+kJo
+kJo
+cfp
+cfp
+kJo
+kJo
+kJo
+cfp
+cfp
+cfp
+nxy
+uQc
+xyM
+jyE
+sRL
+wKd
+vyS
+fuG
+xyM
+ojL
+fqe
+ecy
+fTk
+ofS
+aos
+aos
+aos
+aos
+qkN
+qkN
+qkN
+qkN
+efa
+efa
+clx
+deR
+uep
+gni
+clx
+efa
+efa
+efa
+efa
+efa
+clx
+uNB
+isz
+kqC
+clx
+efa
+efa
+efa
+clx
+clx
+efa
+clx
+clx
+cWy
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(166,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+kmJ
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+kmJ
+yeT
+yeT
+yeT
+wjo
+uqu
+tZX
+tZX
+xRu
+tZX
+gUD
+cKf
+paY
+uqu
+kxh
+wOy
+qPj
+ltO
+tEr
+gUw
+goa
+oLk
+rZd
+uqu
+cMX
+mZd
+mFx
+cXv
+tbl
+sUQ
+qSA
+lJQ
+iAc
+rtl
+rtl
+xjO
+nqX
+oOu
+efF
+uQS
+tWL
+dbO
+msp
+iQi
+bGO
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+usv
+cfp
+ogL
+ogL
+fZE
+kJo
+kJo
+cfp
+cfp
+cfp
+cfp
+cfp
+kdj
+kdj
+kdj
+ojL
+ojL
+ojL
+ojL
+ojL
+ojL
+ojL
+ojL
+ojL
+ojL
+kdj
+kdj
+fTk
+uXn
+jwc
+hrc
+nHz
+bDA
+fTk
+oJw
+oJw
+qkN
+oJw
+oJw
+clx
+clx
+yls
+clx
+clx
+oJw
+oJw
+efa
+oJw
+oJw
+clx
+gVb
+nIK
+clx
+clx
+oJw
+oJw
+efa
+oJw
+oJw
+oJw
+vhh
+eKA
+lbj
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(167,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+oJw
+kmJ
+oJw
+yeT
+yeT
+yeT
+wjo
+uqu
+paY
+tZX
+cwj
+tZX
+tZX
+tZX
+xIS
+cdk
+gom
+fuC
+ukq
+cdk
+oJB
+oJB
+jnR
+hfM
+uqu
+lJQ
+lJQ
+lJQ
+lJQ
+lJQ
+qLA
+lJQ
+lJQ
+wQe
+rtl
+aXD
+euI
+nqX
+qlb
+aXt
+iOt
+tWL
+hGt
+mfC
+ipY
+lQy
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+gwU
+cfp
+cfp
+oqh
+oqh
+wAL
+kJo
+kJo
+cfp
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+fTk
+fTk
+fTk
+liV
+fTk
+fTk
+fTk
+oJw
+dRK
+qkN
+dRK
+oJw
+oJw
+clx
+pcE
+clx
+oJw
+oJw
+dRK
+efa
+dRK
+oJw
+oJw
+clx
+bcL
+clx
+oJw
+oJw
+dRK
+efa
+dRK
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(168,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+yeT
+wjo
+wjo
+uqu
+wjo
+uqu
+wjo
+uqu
+tZX
+uqu
+kxh
+cdk
+kxh
+cdk
+kxh
+xIS
+uqu
+qWC
+pxi
+kqm
+huD
+sBx
+iBt
+iBt
+iBt
+gIA
+fey
+rtl
+rtl
+vMC
+vMC
+vMC
+vMC
+fGe
+dUH
+cbm
+tWL
+nzJ
+mTQ
+eiv
+lQy
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+usv
+cfp
+cfp
+oqh
+oqh
+kJo
+kJo
+mmO
+cfp
+gcP
+gcP
+gcP
+yeT
+yeT
+yeT
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+fTk
+xvn
+xvn
+rDd
+xvn
+xvn
+fTk
+oJw
+dRK
+pLn
+dRK
+oJw
+oJw
+clx
+one
+clx
+oJw
+oJw
+dRK
+hIP
+dRK
+oJw
+oJw
+clx
+one
+clx
+oJw
+oJw
+dRK
+hIP
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(169,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+wjo
+tpO
+tZX
+sjE
+uqu
+xIS
+xIS
+xIS
+xIS
+lio
+pcH
+lzk
+gNy
+xTU
+adJ
+paY
+aAl
+rOt
+tZX
+uqu
+rtl
+vMC
+vMC
+nsX
+qyt
+dzG
+klL
+naX
+vCY
+tWL
+izi
+nJS
+iQi
+bGO
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+gwU
+cfp
+oqh
+oqh
+oqh
+nsP
+kJo
+wAL
+cfp
+gcP
+gcP
+yeT
+yeT
+yeT
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+fTk
+hJU
+uYW
+xKu
+idU
+hJU
+fTk
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+thd
+ldp
+clx
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+thd
+ldp
+clx
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(170,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+yeT
+yeT
+yeT
+wjo
+uqu
+eku
+tZX
+swN
+qWC
+qWC
+qWC
+qWC
+qWC
+xIS
+uqu
+xIS
+uqu
+xIS
+uqu
+xIS
+uqu
+sSR
+uqu
+rtl
+iVf
+gHB
+aMB
+hzp
+tLo
+wtr
+jbX
+gCH
+tWL
+tNk
+rpC
+bCk
+lQy
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+usv
+cfp
+cfp
+oqh
+hsb
+kJo
+kJo
+cfp
+cfp
+gcP
+gcP
+yeT
+yeT
+yeT
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+fTk
+hJU
+kXX
+sep
+dkN
+hJU
+fTk
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(171,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+oJw
+kmJ
+oJw
+yeT
+yeT
+wjo
+uqu
+wjo
+uqu
+xIS
+qWC
+lio
+pcH
+qWC
+xIS
+xIS
+gcP
+gcP
+gcP
+gcP
+gcP
+xIS
+xRu
+uqu
+uqu
+vMC
+vZZ
+qbL
+azK
+vMC
+goZ
+efF
+cUe
+tWL
+hjZ
+rpC
+vaj
+lQy
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+gwU
+gcP
+cmK
+fdh
+qJJ
+oow
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+kmJ
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+oJw
+fTk
+hJU
+rcM
+sep
+aSU
+hJU
+fTk
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+sTp
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+jNE
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(172,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+kmJ
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+xIS
+xIS
+xIS
+fhl
+qWC
+lio
+fgS
+xIS
+gcP
+gcP
+gcP
+gcP
+gcP
+uqu
+tZX
+tZX
+tiJ
+vMC
+oSn
+xZx
+fpc
+vMC
+hWq
+efF
+uQS
+tWL
+eXv
+sUU
+diF
+lQy
+kmK
+kmK
+kmK
+dCO
+kmK
+kmK
+kmK
+kmK
+kmK
+kmK
+usv
+gcP
+vAf
+sBO
+oqx
+vAf
+gcP
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+fTk
+hJU
+kXX
+sep
+dkN
+hJU
+fTk
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(173,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+gcP
+xIS
+xIS
+xIS
+gcl
+qWC
+xIS
+gcP
+gcP
+gcP
+gcP
+gcP
+xIS
+tZX
+xRu
+gyZ
+vMC
+xWx
+vZV
+vEl
+vMC
+vrR
+uDE
+hWR
+tWL
+wqq
+iPJ
+lQy
+tWL
+tWL
+usv
+gwU
+usv
+gwU
+usv
+gwU
+usv
+gwU
+usv
+gwU
+gcP
+cmK
+eEG
+oqx
+cmK
+gcP
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+fTk
+hJU
+nXo
+mtT
+nXo
+hJU
+fTk
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(174,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+cLh
+cLh
+cLh
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+xIS
+ezP
+qWC
+xIS
+gcP
+gcP
+gcP
+gcP
+gcP
+uqu
+tZX
+tZX
+jdW
+vMC
+lsw
+taS
+pss
+vMC
+oOu
+efF
+hiS
+lmj
+vcS
+rHy
+onZ
+qGI
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+vAf
+wHl
+kaf
+vAf
+gcP
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+gvh
+hJU
+hJU
+hJU
+hJU
+hJU
+gvh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(175,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+xIS
+oNZ
+bIa
+xIS
+xIS
+xIS
+xIS
+gcP
+gcP
+xIS
+etr
+ipu
+dms
+dms
+mBA
+mBA
+mBA
+mBA
+dXV
+waf
+cqe
+hbC
+pAa
+hvd
+kBq
+lCY
+qGI
+lCY
+qGI
+lCY
+qGI
+lCY
+qGI
+lCY
+qGI
+lCY
+gcP
+gcP
+cmK
+pGc
+inH
+cmK
+gcP
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(176,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+kmJ
+kmJ
+kmJ
+yeT
+yeT
+gcP
+gcP
+gcP
+xIS
+oNZ
+oNZ
+fgS
+xyu
+diH
+xIS
+xIS
+xIS
+uqu
+aTW
+xTU
+dms
+eWj
+rSb
+dPW
+cMT
+iTc
+oOu
+efF
+xGB
+agW
+jWR
+aVC
+erW
+qGI
+brs
+thU
+qDa
+dBQ
+xYx
+vQQ
+muf
+bKT
+waU
+qGI
+gcP
+gcP
+vAf
+vUT
+rRF
+vAf
+gcP
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(177,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+xIS
+xIS
+oNZ
+ebt
+wai
+qWC
+pzt
+gjR
+xIS
+xIS
+ouU
+oFu
+dms
+sGb
+rSb
+jBc
+bfs
+iTc
+oOu
+efF
+wlf
+agW
+jZO
+mIx
+sXg
+jpY
+pDc
+gPL
+nZK
+avR
+bha
+bha
+bha
+thU
+thU
+lCY
+gcP
+gcP
+cmK
+oqx
+xdC
+cmK
+gcP
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(178,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+xIS
+xIS
+dUA
+xIS
+xIS
+qWC
+lio
+xIS
+uqu
+tZX
+tpO
+dms
+rmc
+rSb
+hXF
+fRM
+dms
+lww
+efF
+uQS
+agW
+jWp
+cnV
+hxG
+noI
+rov
+qGJ
+sMU
+kYe
+kYe
+kYe
+jOe
+jId
+ooD
+qGI
+gcP
+gcP
+vAf
+oqx
+xdC
+vAf
+gcP
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(179,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+xIS
+oNZ
+oNZ
+xIS
+xIS
+qWC
+pqF
+mti
+wCa
+qWC
+dms
+tlA
+vYR
+aNX
+ppt
+mYo
+qPU
+tLM
+iOt
+agW
+uqh
+vqn
+vqn
+crR
+rov
+nnu
+wXb
+wXb
+wXb
+wXb
+chs
+jId
+pwK
+lCY
+gcP
+gcP
+cmK
+jwB
+xdC
+cmK
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(180,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+xIS
+xIS
+xIS
+xIS
+xIS
+xIS
+xIS
+qWC
+lio
+qWC
+dms
+xqn
+yfU
+hOt
+gCb
+dms
+fGe
+dUH
+cbm
+agW
+cZf
+vqn
+vqn
+glf
+rTz
+aoy
+lRl
+wXb
+mVt
+wXb
+chs
+jId
+fwV
+qGI
+gcP
+gcP
+vAf
+tou
+xdC
+vAf
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(181,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+xIS
+xIS
+uqu
+rOd
+xTU
+xTU
+xTU
+xTU
+xTU
+xTU
+rFl
+vmP
+mNo
+agW
+gpo
+vqn
+vqn
+crR
+rov
+dPc
+lRl
+wXb
+wXb
+wXb
+wXb
+xlZ
+thU
+lCY
+cmK
+vAf
+cmK
+oqx
+xdC
+cmK
+gcP
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(182,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+xIS
+rez
+aTW
+iyf
+atW
+gec
+xRu
+tpj
+oOu
+aXt
+gCH
+agW
+jOm
+fVE
+wuH
+rHh
+rov
+fyK
+iZE
+kPu
+kPu
+kPu
+waQ
+jId
+dLl
+qGI
+hDX
+err
+jwB
+xdC
+xdC
+vAf
+gcP
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(183,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+oEi
+adc
+oEi
+adc
+oEi
+adc
+oEi
+adc
+oEi
+adc
+oEi
+uqu
+swN
+uqu
+oQb
+paY
+gyZ
+tiJ
+uqu
+oOu
+efF
+cUe
+agW
+erv
+lXx
+wUX
+ugJ
+bxs
+fBE
+pnt
+tuV
+tce
+kQk
+kQk
+qfD
+qPe
+gcW
+dxp
+xdC
+xdC
+dxp
+wQJ
+cmK
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(184,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+adc
+oEi
+adc
+vsf
+ted
+rSi
+ggf
+rJo
+ggf
+rJo
+ggf
+rSi
+ggf
+vjs
+jpA
+lFy
+uqu
+xTU
+xTU
+xTU
+uqu
+qQf
+efF
+xbK
+agW
+dct
+oVL
+dsX
+qGI
+loc
+iEX
+lcx
+oHU
+hzc
+bIX
+xag
+dIg
+sOu
+qGI
+ssZ
+oPo
+xdC
+xdC
+xdC
+vAf
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(185,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+gcP
+gcP
+oEi
+cEQ
+eve
+nzO
+xUy
+gSD
+gSD
+gSD
+gSD
+gSD
+gSD
+gSD
+gSD
+nzO
+xUy
+wtp
+wLh
+adc
+oEi
+gcP
+mKk
+oAQ
+uDE
+kOv
+tjq
+mpk
+mFd
+fnb
+lCY
+qGI
+lCY
+qGI
+lCY
+qGI
+lCY
+qGI
+lCY
+qGI
+lCY
+cmK
+vAf
+cmK
+xdC
+xdC
+cmK
+gcP
+gcP
+yeT
+yeT
+kmJ
+kmJ
+kmJ
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(186,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+pDp
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+adc
+dGp
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qnx
+jos
+adc
+gcP
+wVf
+kiK
+rKo
+evw
+ghS
+fiI
+mMh
+tRU
+qGI
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+vAf
+xdC
+oqx
+vAf
+gcP
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(187,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+oEi
+wxP
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+qnx
+pdy
+oEi
+gcP
+mKk
+oOu
+efF
+xGB
+uNS
+uNS
+uNS
+hYN
+vav
+gcP
+gcP
+gcP
+vAf
+vAf
+vAf
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+cmK
+xdC
+oqx
+cmK
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+cLh
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(188,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+adc
+daY
+qPQ
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+qnx
+vvI
+adc
+oEi
+adc
+gDx
+efF
+qXe
+iBO
+qur
+ppX
+ppX
+hYN
+gcP
+gcP
+vAf
+vAf
+oow
+vAf
+vAf
+gcP
+gcP
+gcP
+gcP
+gcP
+vAf
+xdC
+hwh
+vAf
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+cLh
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(189,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+oEi
+wxP
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+qPQ
+yiZ
+pGY
+ufc
+dfN
+hkF
+dgq
+big
+qbU
+xoc
+svt
+lXk
+luB
+vav
+gcP
+gcP
+vAf
+dnB
+iEi
+oow
+vAf
+vAf
+vAf
+vAf
+vAf
+vAf
+cmK
+xdC
+jwB
+cmK
+gcP
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+cLh
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(190,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+adc
+dGp
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+qPQ
+qPQ
+sCA
+xqy
+adc
+oEi
+rXE
+jbZ
+ewr
+wbA
+dnW
+uNS
+gFf
+tEQ
+hYN
+vav
+gcP
+vAf
+oow
+oow
+oow
+vAf
+oow
+oow
+oow
+oow
+vAf
+vAf
+xdC
+jwB
+vAf
+yeT
+yeT
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(191,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+oEi
+wxP
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+qPQ
+qPQ
+sCA
+lKe
+oEi
+oEi
+mKk
+oAQ
+uDE
+fPe
+eDR
+uNS
+oUW
+xcX
+tUH
+vav
+gcP
+vAf
+vAf
+oow
+vAf
+vAf
+oow
+iEi
+oow
+oow
+iEi
+cmK
+stz
+sBO
+cmK
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(192,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+adc
+dGp
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+qPQ
+qPQ
+sCA
+ftH
+adc
+oEi
+xOi
+jgh
+efF
+qXe
+tTk
+uNS
+txN
+ouZ
+hYN
+vav
+gcP
+vAf
+vAf
+oow
+oow
+oow
+oow
+oow
+bMR
+bMR
+oow
+vAf
+xdC
+oqx
+vAf
+yeT
+yeT
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(193,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+oEi
+wxP
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+qPQ
+sCA
+vnJ
+ezM
+tTT
+hnw
+ahe
+xcz
+pXK
+vqY
+taB
+uKL
+luB
+vav
+gcP
+gcP
+gcP
+vAf
+vAf
+oow
+oow
+wYV
+bMR
+bMR
+bMR
+bMR
+cmK
+xdC
+uER
+cmK
+yeT
+yeT
+kmJ
+kmJ
+kmJ
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(194,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+adc
+daY
+qPQ
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+aGs
+lZr
+lZr
+lZr
+lZr
+sCA
+rSN
+adc
+oEi
+adc
+uxD
+efF
+ava
+iBO
+riD
+ppX
+ppX
+hYN
+vAf
+cmK
+vAf
+cmK
+vAf
+cmK
+dEY
+bhV
+bhV
+bhV
+bMR
+vAf
+vAf
+xdC
+tRA
+cmK
+yeT
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(195,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+oEi
+wxP
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+lZr
+sCA
+oiH
+oEi
+gcP
+mKk
+oOu
+aXt
+uQS
+uNS
+uNS
+uNS
+hYN
+vav
+cmK
+oqx
+jwB
+edp
+jwB
+xdC
+dxp
+him
+unt
+bhV
+bMR
+vAf
+cmK
+xdC
+jwB
+cmK
+yeT
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(196,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+adc
+dGp
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+qPQ
+btC
+mBi
+adc
+gcP
+wVf
+mKq
+qwH
+gYs
+sTU
+lFh
+lFh
+lFh
+ocF
+dym
+lFh
+lFh
+lFh
+lFh
+dym
+lFh
+lFh
+uIq
+cmK
+vAf
+cmK
+vAf
+xdC
+oqx
+cmK
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(197,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+kmJ
+kmJ
+kmJ
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+oEi
+bRE
+gJE
+oQX
+tAI
+vNE
+gJE
+gJE
+gJE
+gJE
+gJE
+gJE
+gJE
+tAI
+vNE
+pbI
+jNo
+adc
+oEi
+gcP
+mKk
+qHR
+ebn
+lDL
+bhV
+wFN
+oPo
+jwB
+vkf
+upm
+ghb
+cmK
+vAf
+cmK
+vAf
+cmK
+vDx
+wGU
+xdC
+xdC
+xdC
+sBO
+xdC
+jwB
+cmK
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(198,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+ghs
+ghs
+ghs
+oLP
+ldU
+adc
+adc
+uBC
+sOF
+ggf
+rMU
+ggf
+rMU
+ggf
+vQo
+ggf
+nWJ
+fTc
+pQe
+adc
+oEi
+lvh
+lvh
+clB
+lfY
+sMJ
+aZW
+mfj
+lvh
+dvf
+dvf
+eHA
+dvf
+eHA
+cKR
+eHA
+cKR
+eHA
+cKR
+eHA
+fds
+dvf
+bhV
+bhV
+bhV
+bhV
+bhV
+cmK
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(199,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+vVZ
+vVZ
+vVZ
+vVZ
+vVZ
+vVZ
+vVZ
+oLP
+xck
+mkW
+ghs
+lzG
+ssb
+adc
+oEi
+adc
+oEi
+adc
+oEi
+adc
+oEi
+adc
+oEi
+adc
+oEi
+adc
+oEi
+gcP
+lvh
+wCe
+dOI
+rFl
+dyt
+iZo
+iqH
+eDR
+dvf
+abm
+eYp
+dcD
+wjM
+pYl
+sCZ
+pYl
+qTb
+amT
+tYk
+caI
+dvf
+oXG
+xaf
+rFo
+gwl
+nhf
+rlV
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(200,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+cLh
+oJw
+oJw
+oJw
+oJw
+yeT
+vVZ
+jzS
+jzS
+jzS
+jzS
+jzS
+jzS
+oLP
+igJ
+xHx
+ghs
+ghs
+ghs
+cNj
+vvY
+rXM
+vvY
+rXM
+vvY
+rXM
+vvY
+rXM
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+lvh
+czA
+eTw
+cSd
+efF
+pJA
+bCR
+hBn
+dvf
+iPC
+uUI
+lpA
+nWl
+dOc
+dOc
+dOc
+dOc
+rVR
+bni
+sZR
+fWF
+qoS
+kNx
+vFV
+cXj
+vmg
+rlV
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(201,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+kmJ
+kmJ
+kmJ
+yeT
+yeT
+vVZ
+jzS
+jzS
+jzS
+jzS
+jzS
+jzS
+oLP
+ghs
+jdP
+ghs
+olH
+ghs
+oLP
+mKu
+piy
+rjd
+skq
+fGS
+qtt
+rBa
+vvY
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+lvh
+pak
+pOw
+kDJ
+efF
+kts
+gHL
+hgF
+dvf
+jXO
+cWt
+prH
+utU
+bWJ
+hiQ
+hiQ
+kGk
+qnP
+doB
+otz
+dvf
+xVM
+nuq
+cXj
+cXj
+vmg
+rlV
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(202,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+yeT
+yeT
+vVZ
+vVZ
+jzS
+jzS
+jzS
+jzS
+jzS
+jzS
+oLP
+oqI
+xuO
+ghs
+pRD
+ghs
+cNj
+uhh
+kjk
+ocm
+uNJ
+mVV
+hvN
+cZR
+rXM
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+lvh
+pak
+pOw
+qlb
+cSy
+gqW
+rHe
+puo
+dvf
+aSS
+nLp
+pWd
+tGb
+xYW
+muM
+fAX
+lxh
+lXG
+euc
+tob
+dvf
+sEX
+cCT
+xeV
+cXj
+dBq
+rlV
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+tVZ
+dRK
+tVZ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(203,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+vVZ
+jzS
+jzS
+jzS
+jzS
+jzS
+jzS
+jzS
+oLP
+rvw
+jiR
+crv
+qhl
+ghs
+oLP
+nHC
+kHM
+kHM
+iZJ
+kHM
+ope
+ltE
+vvY
+gcP
+gcP
+gcP
+gcP
+gcP
+jpJ
+lvh
+lvh
+lvh
+fhM
+sMJ
+lWL
+fTY
+lvh
+dvf
+dvf
+upg
+tKF
+pGt
+aBC
+iJM
+mWv
+mZK
+sEk
+htp
+tob
+dvf
+tOA
+nuq
+dGv
+cXj
+tHM
+rlV
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+cLh
+lDx
+tVZ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(204,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+gcP
+vVZ
+jzS
+jzS
+jzS
+jzS
+jzS
+jzS
+jzS
+oLP
+rvw
+pXk
+jXx
+rAD
+cdc
+lWg
+tuh
+aEL
+gnD
+hCQ
+lMP
+dsm
+uZX
+rXM
+gcP
+gcP
+gcP
+gcP
+jpJ
+jpJ
+bqe
+iig
+wRp
+rls
+qjP
+qER
+dWL
+pZN
+blE
+dvf
+dvf
+xur
+vec
+nZx
+sSA
+kIw
+ebj
+wBA
+aCF
+tcR
+dvf
+gCY
+aTQ
+oKR
+suB
+eNB
+rlV
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+cLh
+cLh
+tVZ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(205,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+kmJ
+kmJ
+yeT
+yeT
+yeT
+gcP
+gcP
+vVZ
+jzS
+jzS
+jzS
+jzS
+jzS
+jzS
+jzS
+ykC
+ykC
+ykC
+ykC
+ykC
+ykC
+ykC
+alN
+hmm
+xbj
+srI
+alN
+eYO
+alN
+vUx
+glB
+glB
+glB
+glB
+jpJ
+uuH
+aCA
+hgl
+sIg
+pVO
+fyY
+dFC
+cfB
+oan
+kpV
+pqa
+dvf
+dvf
+gDF
+pyl
+gEI
+hHw
+tsO
+aDp
+jlz
+awF
+dvf
+wPC
+nuq
+cXj
+suB
+vjc
+rlV
+uzZ
+uzZ
+uzZ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(206,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+vVZ
+jzS
+jzS
+jzS
+jzS
+jzS
+jzS
+jzS
+ykC
+and
+uqD
+jrL
+rHK
+djH
+aPC
+alN
+tKP
+bTv
+ycU
+uKS
+pIv
+alN
+eab
+aVu
+frn
+sTX
+glB
+cFw
+jkx
+oOs
+nxZ
+sQA
+faG
+vsy
+vca
+nxZ
+sQA
+oan
+kpV
+hJQ
+dvf
+dvf
+qYz
+dth
+snt
+dvf
+dvf
+dvf
+dvf
+dvf
+sQZ
+nuq
+cXj
+cPI
+rHb
+rlV
+uzZ
+uzZ
+uzZ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(207,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+cLh
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+vVZ
+jzS
+jzS
+jzS
+jzS
+jzS
+jzS
+jzS
+ykC
+fTb
+pOK
+ozF
+ozF
+ozF
+xmC
+alN
+kMM
+lSc
+agv
+xvy
+fSr
+alN
+keI
+sKf
+sKf
+sKf
+mbf
+xpQ
+pPn
+nxZ
+oco
+oWt
+kjr
+woG
+kjr
+poY
+oco
+sQA
+oan
+pPn
+gix
+lFO
+llq
+dVs
+mXR
+viq
+gix
+bYR
+vEP
+kta
+cXj
+nuq
+cXj
+suB
+rHb
+vpe
+vpe
+vpe
+vpe
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+buX
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(208,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+cLh
+kmJ
+kmJ
+kmJ
+yeT
+yeT
+qJy
+qJy
+qJy
+qJy
+qJy
+uMy
+kdt
+qaq
+fpI
+fpI
+fpI
+qaq
+kdt
+ykl
+rAw
+ruI
+hlT
+ozF
+alm
+alN
+koz
+cxY
+sTd
+liG
+bjV
+alN
+sKf
+leQ
+pIW
+gjL
+mbf
+lGH
+pPn
+vcc
+hsw
+cum
+kjr
+woG
+kjr
+pxf
+vcc
+hsw
+oan
+cYY
+szL
+hFQ
+pnV
+vQw
+teL
+tJu
+brA
+jVT
+cXj
+cXj
+cXj
+nuq
+cXj
+suB
+lEI
+kWG
+kIi
+kIi
+cgx
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+buX
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(209,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+cLh
+oJw
+oJw
+oJw
+yeT
+yeT
+qJy
+feA
+feA
+feA
+qUg
+uMy
+fpI
+eUW
+eUW
+kCX
+kYt
+kPF
+kdt
+ljh
+ozF
+cuo
+nHx
+rAw
+wAR
+alN
+hAZ
+pdr
+rkP
+skP
+iXa
+alN
+sKf
+crT
+sKf
+jse
+xmr
+vnF
+pPn
+vcc
+hsw
+cum
+tFh
+wYL
+ajB
+cum
+vcc
+hsw
+oan
+jrH
+vyV
+eVJ
+pnV
+kuK
+kvQ
+kde
+iHx
+gon
+iYY
+cXj
+cXj
+nuq
+cXj
+kEI
+fuk
+lBG
+bBP
+bBP
+toJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+buX
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(210,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+oJw
+oJw
+oJw
+yeT
+yeT
+qJy
+feA
+feA
+feA
+qUg
+uMy
+riZ
+iyN
+oyW
+wBX
+iyN
+cBi
+kdt
+ebF
+wlu
+teb
+iIy
+qlJ
+mYB
+alN
+vJL
+tlM
+tqG
+alN
+alN
+alN
+bOh
+diW
+bLt
+gTU
+eXY
+fQL
+oOs
+iqe
+tov
+sIr
+vIE
+bNm
+raV
+cum
+iqe
+tov
+oan
+shj
+sTa
+lBW
+qQS
+hpd
+gUR
+xZT
+gix
+bIN
+cXj
+dwv
+fZi
+kVu
+jFb
+jFb
+ayR
+gnn
+epf
+wrQ
+rlV
+oJw
+qPG
+oJw
+oJw
+oJw
+oJw
+oJw
+buX
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(211,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+cLh
+oJw
+oJw
+oJw
+yeT
+yeT
+qJy
+feA
+feA
+feA
+qUg
+anP
+fpI
+iyN
+vnV
+bDN
+kyp
+sbA
+kdt
+kMz
+aig
+kMz
+kMz
+jYz
+kMz
+alN
+bBN
+iYZ
+wca
+cfH
+gnE
+lUa
+lUa
+vsd
+bVW
+nxv
+iOJ
+bCI
+pKS
+vcc
+hsw
+cum
+kfj
+oSE
+tjr
+cum
+vcc
+hsw
+oan
+laC
+vyV
+dPC
+gnr
+hai
+pie
+bCL
+iHx
+kiR
+cXj
+kOn
+urS
+dyH
+cXj
+ayW
+wTt
+lBG
+pOy
+pOy
+orR
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+buX
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(212,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+lDx
+cLh
+kmJ
+kmJ
+kmJ
+yeT
+yeT
+qJy
+qJy
+qJy
+qJy
+qJy
+kdt
+kdt
+jTY
+eDb
+oYP
+eBb
+pcY
+hQl
+xlo
+hQG
+vhY
+aNs
+fPw
+bVf
+dDu
+bNL
+wha
+tVJ
+xSw
+siM
+vbX
+vbX
+nAV
+aFE
+stW
+flv
+vtn
+cWj
+vcc
+hsw
+pvH
+kjr
+woG
+kjr
+cum
+vcc
+hsw
+oan
+pBn
+szL
+bzC
+gnr
+mgy
+aqZ
+qbt
+dQp
+qJN
+vuv
+hfw
+qRV
+kTa
+cXj
+suB
+gHc
+tgt
+lHd
+lHd
+iRA
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+buX
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(213,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+cLh
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+kdt
+wbn
+iyN
+iyN
+sOg
+bgW
+vBK
+kdt
+qOq
+vxY
+tdr
+mcQ
+sRG
+cma
+hAE
+dcv
+wEz
+uhx
+duM
+aqt
+tcm
+hxb
+hxb
+bQF
+bLt
+eXY
+fDG
+qZU
+poY
+oco
+sQA
+kjr
+woG
+kjr
+nxZ
+oco
+oWt
+oan
+pPn
+gix
+aOJ
+dqF
+anV
+iSJ
+oqr
+iHx
+eVI
+cXj
+crC
+cXj
+nkQ
+cXj
+suB
+wjy
+vpe
+vpe
+vpe
+vpe
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+buX
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(214,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+kdt
+llO
+tDa
+xci
+mbm
+iKk
+dbv
+alN
+alN
+alN
+alN
+alN
+alN
+alN
+bER
+cPf
+qqa
+lDo
+alN
+bOt
+tcm
+tcm
+rmA
+tcm
+hTG
+glB
+pOt
+qxI
+wYX
+poY
+oWt
+kjr
+woG
+kjr
+poY
+oWt
+oan
+sNs
+xaa
+apT
+apT
+rvl
+rvl
+apT
+uht
+apT
+apT
+kMW
+agY
+cXj
+nkQ
+cXj
+max
+wjy
+rlV
+uzZ
+uzZ
+uzZ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(215,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+sqV
+kdt
+kdt
+kdt
+kdt
+kdt
+alN
+alN
+kAj
+pXd
+pXd
+pXd
+sFa
+pXd
+pXd
+gln
+swi
+gxx
+all
+eBk
+eBk
+eBk
+acX
+eBk
+eBk
+all
+jpJ
+alf
+cDx
+tgl
+lWV
+oTo
+iJy
+dKa
+scT
+hgl
+kjD
+utd
+apT
+apT
+ccw
+xuk
+xuk
+xVY
+vud
+rGK
+lpS
+qIl
+dLW
+dtI
+dtI
+xeV
+suB
+bUy
+rlV
+uzZ
+uzZ
+uzZ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(216,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+sqV
+bMi
+pHc
+bDq
+mhn
+aFS
+alN
+hyo
+vti
+qrI
+qrI
+qrI
+qrI
+qrI
+rgL
+acv
+beL
+dmF
+all
+rZg
+npu
+qjw
+nAK
+fRf
+pUt
+all
+vzC
+vzC
+oYj
+bZz
+sSN
+wyG
+iGM
+oOs
+atm
+oan
+nMh
+gVR
+apT
+hgf
+nQv
+hVL
+wma
+jzw
+fIG
+sdw
+dDt
+mmt
+nxV
+cXj
+cXj
+dGv
+suB
+ere
+rlV
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+tVZ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(217,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+sqV
+bMi
+pHc
+lLU
+hNv
+gTf
+alN
+lUW
+uNj
+ulT
+vEQ
+toY
+oYb
+toY
+vEQ
+ptv
+xQd
+hvb
+nck
+bMU
+leG
+nMO
+wuB
+bSq
+ekE
+all
+mHM
+vzC
+gjX
+mbj
+tMl
+dwM
+dwM
+dwM
+tMl
+ilu
+akd
+akd
+apT
+kQS
+gRt
+mxj
+emG
+hJr
+lnR
+xfK
+rvl
+vFV
+cSO
+rZe
+rZe
+oKR
+cXj
+bMY
+rlV
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+kmJ
+cLh
+lDx
+tVZ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(218,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+sqV
+bMi
+pHc
+lLU
+xGL
+dmL
+alN
+maT
+oUF
+bZD
+goy
+qfr
+qfr
+qfr
+goy
+xKA
+eoG
+oUM
+lkM
+tHW
+bHB
+ucg
+dQW
+nWo
+muc
+all
+mHM
+rFt
+lPW
+mbj
+oco
+oco
+oco
+oco
+oco
+ilu
+koG
+mBt
+apT
+gON
+yle
+vOi
+trU
+ghf
+ahu
+ulJ
+apT
+cmZ
+crC
+cXj
+eOW
+ueW
+flz
+scz
+rlV
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+tVZ
+dRK
+tVZ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(219,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+sqV
+btv
+btv
+lLU
+auo
+iSt
+alN
+pyN
+lMx
+hVl
+jSc
+fMX
+fMX
+fMX
+jSc
+rVc
+jLl
+rER
+ina
+vJU
+gYO
+mVJ
+rEc
+ceX
+obt
+all
+wnT
+pYg
+ylY
+mbj
+oco
+oco
+oco
+oco
+oco
+ilu
+fZQ
+qlj
+akd
+akd
+eCq
+apT
+apT
+apT
+apT
+apT
+apT
+vzC
+pOf
+mbj
+mbj
+mbj
+mbj
+mbj
+mbj
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(220,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+sqV
+wqc
+wqc
+xbD
+gaD
+xJn
+oNg
+jqd
+oNh
+bZD
+goy
+qfr
+qfr
+qfr
+nrz
+xKA
+qLC
+xTh
+vOW
+all
+all
+all
+all
+all
+all
+all
+pLC
+oDv
+kvx
+mbj
+oco
+oco
+oco
+oco
+oco
+ilu
+akd
+fso
+akd
+tsx
+srQ
+vzC
+hhs
+fpt
+rPA
+uqT
+lzz
+mnb
+vhO
+hMo
+rze
+iXr
+bcy
+rGs
+mbj
+kmJ
+kmJ
+kmJ
+cLh
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(221,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+gcP
+gcP
+gcP
+sqV
+wqc
+wqc
+exc
+xwo
+dDe
+alN
+lDg
+llh
+bZD
+goy
+qfr
+ooI
+qfr
+nrz
+xKA
+uuW
+fKD
+xJL
+qEV
+ijL
+dLq
+wUl
+baB
+wVb
+bCX
+prz
+fUh
+uKb
+mbj
+oco
+oco
+oco
+oco
+oco
+ilu
+gLD
+bnG
+cLn
+aBW
+hdw
+vzC
+shh
+yeb
+pnq
+pnq
+pnq
+moK
+dGY
+eQj
+gaG
+sKv
+sKv
+mbj
+mbj
+oJw
+oJw
+oJw
+cLh
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(222,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+sqV
+jqe
+jqe
+exc
+jYt
+fdo
+alN
+rVB
+oUF
+bZD
+goy
+qfr
+ozK
+qfr
+nrz
+xKA
+uuW
+tYL
+xJL
+hrj
+bhx
+ono
+ono
+uus
+wVb
+cRf
+tcU
+tcU
+ktb
+mbj
+oco
+oco
+oco
+oco
+oco
+ilu
+azi
+pCS
+vRj
+hBm
+luU
+vzC
+uqQ
+vYj
+mbj
+mbj
+mbj
+mbj
+mbj
+mbj
+mbj
+mbj
+mbj
+mbj
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(223,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+gcP
+gcP
+sqV
+gpx
+gpx
+exc
+qpg
+qpg
+alN
+ayn
+oUF
+bZD
+goy
+qfr
+ozK
+qfr
+nrz
+xKA
+hgE
+ftJ
+cjf
+loi
+riN
+giL
+yee
+mkC
+wVb
+feZ
+lRo
+gbB
+jst
+mbj
+mbj
+mbj
+mbj
+mbj
+mbj
+mbj
+nZm
+qkQ
+bmm
+pTO
+pMs
+vzC
+jrG
+vYj
+mbj
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(224,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+gcP
+sqV
+eqC
+eqC
+sjX
+lyx
+qjH
+alN
+tgR
+oUF
+bZD
+goy
+qfr
+fKb
+qfr
+nrz
+xKA
+uuW
+fSv
+kml
+xql
+ePX
+ePX
+ePX
+jQd
+wVb
+dKu
+soy
+iAg
+nZP
+isk
+hWy
+maJ
+jWi
+bsJ
+emX
+vzC
+vzC
+vzC
+vzC
+vzC
+vzC
+vzC
+cHI
+gmm
+mbj
+mbj
+mbj
+uKz
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+tbX
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(225,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+sqV
+sqV
+sqV
+sqV
+sqV
+sqV
+alN
+cRy
+oUF
+bZD
+goy
+qfr
+qfr
+qfr
+nrz
+xKA
+uuW
+czh
+xJL
+avf
+lzr
+pLQ
+wAf
+vwK
+wVb
+uhr
+xDL
+eFR
+crQ
+aDk
+aDk
+qcF
+sGV
+twY
+iRm
+ceK
+xqj
+aDk
+aDk
+hqa
+hqa
+krr
+jik
+hkW
+gwq
+tTH
+lxC
+mfn
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(226,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+alN
+wKh
+fZY
+ktV
+rJV
+alN
+aaq
+sGO
+vcQ
+iVC
+ohd
+ohd
+ohd
+iVC
+cAK
+uHI
+iQO
+fYy
+wVb
+wVb
+wVb
+wVb
+wVb
+ygs
+ygs
+vFd
+ygs
+ygs
+soU
+igs
+iWP
+inL
+bXZ
+fqJ
+iad
+qDw
+rGs
+rev
+abu
+eGX
+jAy
+vPv
+udo
+udo
+udo
+udo
+oRo
+oJw
+oJw
+oJw
+cLh
+cLh
+cLh
+cLh
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(227,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+alN
+wXD
+hom
+dxK
+fHe
+pDv
+jHV
+mta
+bZD
+goy
+qfr
+qfr
+qfr
+goy
+xKA
+uuW
+tYL
+nbA
+naa
+oZE
+efX
+sLl
+unv
+ygs
+pFs
+mAg
+jDL
+ygs
+tLi
+tdq
+mbj
+mbj
+mbj
+mbj
+mbj
+mbj
+mbj
+mbj
+mbj
+mbj
+mbj
+udo
+udo
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(228,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+alN
+dtm
+nvo
+vDz
+vrF
+fzt
+fNP
+pXd
+uxT
+gcp
+ruZ
+chM
+ruZ
+gcp
+eMZ
+lfF
+xAP
+lOb
+nmn
+rMJ
+dWH
+dWH
+xwp
+ygs
+uBx
+tpH
+kEV
+ygs
+fIr
+fIr
+mbj
+yeT
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+cLh
+nOm
+nOm
+nOm
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(229,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+alN
+jdS
+fSs
+alz
+rFT
+alN
+rEK
+pXd
+pXd
+pXd
+pXd
+pXd
+pXd
+mal
+mNl
+hyP
+jUr
+xxJ
+fhx
+nJT
+dWH
+dWH
+acZ
+ygs
+whq
+wHM
+qia
+ygs
+mbj
+mbj
+mbj
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+cLh
+cLh
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(230,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+alN
+alN
+alN
+alN
+alN
+alN
+tDc
+xRo
+feq
+xRo
+upU
+pXd
+uWP
+oFF
+ufE
+cqY
+aOm
+nbA
+qjs
+wjJ
+chr
+xbS
+unv
+ygs
+ygs
+tnS
+ygs
+ygs
+yeT
+kmJ
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+kmJ
+oJw
+oJw
+cLh
+cLh
+cLh
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(231,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+gcP
+gcP
+sEo
+oZL
+uKS
+ema
+wiQ
+alN
+sEo
+alN
+sEo
+alN
+sEo
+alN
+unv
+unv
+unv
+unv
+unv
+unv
+gcP
+yeT
+yeT
+yeT
+yeT
+oJw
+kmJ
+oJw
+oJw
+kmJ
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+cLh
+kmJ
+cLh
+cLh
+cLh
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(232,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+vVZ
+sEo
+hnD
+sEo
+pXd
+sEo
+vVZ
+gcP
+vVZ
+gcP
+vVZ
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+yeT
+yeT
+oJw
+oJw
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(233,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+gcP
+gcP
+alN
+sEo
+alN
+riI
+alN
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+yeT
+oJw
+oJw
+oJw
+cLh
+cLh
+cLh
+cLh
+kmJ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(234,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+gcP
+gcP
+gcP
+vVZ
+sEo
+alN
+sEo
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+oJw
+oJw
+oJw
+cLh
+cLh
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(235,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+gcP
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+kmJ
+cLh
+cLh
+cLh
+cLh
+cLh
+lDx
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(236,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+dRK
+dRK
+dRK
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(237,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+yeT
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(238,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(239,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(240,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(241,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(242,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(243,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+eQQ
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(244,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(245,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(246,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(247,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(248,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(249,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(250,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(251,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(252,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(253,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(254,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(255,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
+(256,1,1) = {"
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+oJw
+"}
diff --git a/modular_chomp/maps/cetus/cetus-3.dmm b/modular_chomp/maps/cetus/cetus-3.dmm
new file mode 100644
index 0000000000..8ea00c264a
--- /dev/null
+++ b/modular_chomp/maps/cetus/cetus-3.dmm
@@ -0,0 +1,107017 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aam" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/door/airlock/glass_command{
+ id_tag = "sbridgedoor";
+ name = "Bridge";
+ req_access = list(19)
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge)
+"aao" = (
+/obj/machinery/door/airlock/glass_mining,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"aaZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape_pod2/station)
+"abb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CMO_Quarters)
+"abd" = (
+/obj/machinery/button/remote/airlock{
+ id = "cmoquarters";
+ name = "Bolt Control";
+ pixel_y = 30;
+ req_access = list(40);
+ specialfunctions = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/RD_Quarters)
+"abn" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"abs" = (
+/obj/machinery/conveyor{
+ id = "maintdelivery";
+ dir = 6
+ },
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"abt" = (
+/obj/structure/sign/directions/cargo/mining{
+ pixel_y = -6;
+ dir = 4
+ },
+/obj/structure/sign/directions/teleporter{
+ dir = 10
+ },
+/obj/structure/sign/directions/engineering{
+ name = "\improper Engine";
+ pixel_y = 6;
+ dir = 8
+ },
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"acq" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"acw" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/law)
+"acR" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/boxing/gym{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/sex)
+"acY" = (
+/obj/structure/prop/dark_node{
+ node_range = 2
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreeport)
+"adx" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"adz" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/cetus/jointsubstation)
+"adQ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"aee" = (
+/obj/effect/floor_decal/corner/purple/diagonal,
+/obj/effect/floor_decal/corner/orange{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ icon_state = "map_vent_in";
+ id_tag = "tox_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/phoron,
+/area/engineering/Atmospherics_Chamber)
+"aet" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"aeu" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/mininglockerroom)
+"aeJ" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/escapepodjr)
+"afh" = (
+/obj/structure/dummystairs/hazardledge,
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"afP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"afV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/cyan{
+ icon_state = "1-6"
+ },
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"agj" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/engineering/cetus/aftsubstation)
+"ahc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"ahL" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"aib" = (
+/turf/simulated/mineral/cetus,
+/area/asteroid/cetus/d3/jr)
+"aiC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"aiH" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"aja" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"ajb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"ajp" = (
+/obj/machinery/vending/dinnerware,
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"ajO" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/old_tile/gray,
+/area/maintenance/cetus/jrthreestar)
+"akq" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/taperecorder,
+/obj/item/rectape/random,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"akz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/random/junk,
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"akN" = (
+/obj/machinery/light/small/yellowed,
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/d3bar)
+"akS" = (
+/obj/structure/table/rack/wood,
+/obj/effect/landmark/costume/plaguedoctor,
+/obj/effect/landmark/costume/pirate,
+/obj/effect/landmark/costume/madscientist,
+/obj/effect/landmark/costume/butler,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/item/lightpainter,
+/obj/item/mindbinder,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/dressing)
+"akT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"akV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"all" = (
+/obj/machinery/computer/general_air_control{
+ frequency = 1443;
+ level = 3;
+ name = "Distribution and Waste Monitor";
+ sensors = list("mair_in_meter"="Mixed Air In","air_sensor"="Mixed Air Supply Tank","mair_out_meter"="Mixed Air Out","dloop_atm_meter"="Distribution Loop","wloop_atm_meter"="Engine Waste");
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"alo" = (
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/shallow/fp)
+"alA" = (
+/obj/random/trash,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"alW" = (
+/obj/random/pottedplant,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"alY" = (
+/obj/structure/prop/dark_node/dust{
+ node_range = 3
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreeport)
+"amd" = (
+/turf/simulated/floor/glass,
+/area/maintenance/cetus/shallow/flooded)
+"amt" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"amE" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"amH" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/turfpack,
+/area/crew_quarters/cetus/escapepodjr)
+"amR" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"ant" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Command Hall 7";
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"anW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/secretaryoffice)
+"aoa" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"aog" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/cetus/jointsubstation)
+"aol" = (
+/obj/machinery/light/yellowed,
+/obj/structure/table/reinforced,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"aoq" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/backstage)
+"aoM" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/clipboard,
+/obj/item/folder/blue_hop,
+/obj/item/paper,
+/obj/item/pen,
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"aoQ" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/flashlight/lamp/green,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"apg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"apw" = (
+/obj/structure/fans/hardlight/colorable{
+ desc = "Retains air, blocks radiation, allows passage.";
+ light_color = "#243550";
+ name = "hardlight radiation shield";
+ rad_resistance = 200
+ },
+/obj/machinery/door/window/brigdoor/southright{
+ name = "Particle Focus door";
+ req_access = list(7)
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"apJ" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/ai_server_room)
+"aqC" = (
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"aqE" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/Libraryf2)
+"ara" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"ari" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/obj/machinery/meter,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"arj" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/structure/cable/cyan{
+ icon_state = "6-9"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/ai)
+"ary" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"arG" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/ai_server_room)
+"arM" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"arY" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/clipboard,
+/obj/item/folder/red_hos,
+/obj/item/paper,
+/obj/item/pen,
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"asb" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/structure/sign/directions/science{
+ pixel_y = 22;
+ name = "Joint Research Public Entry";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"asv" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/jrthreestar)
+"asB" = (
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/eva)
+"asC" = (
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"asG" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threeas)
+"ato" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"atr" = (
+/obj/structure/closet/crate,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/random/plushie,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"atT" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"atU" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"atV" = (
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"auu" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"auz" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"avk" = (
+/obj/structure/outcrop/gold,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"avE" = (
+/obj/structure/table/marble,
+/obj/structure/sink/countertop{
+ pixel_y = -6;
+ dir = 1
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D3 Art Cafe 1";
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"awb" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"awd" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/lattice,
+/obj/machinery/light/small,
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"awu" = (
+/obj/structure/micro_tunnel/random,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"awJ" = (
+/obj/machinery/door/window/holowindoor{
+ name = "Prizes"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"awN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Secretary_Quarters)
+"axR" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"ayb" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/structure/curtain/open{
+ name = "stage curtain";
+ color = "#701006";
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"ayw" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"azp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"azR" = (
+/obj/item/stool/padded,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"aAK" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"aAT" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"aBm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ name = "Secretary Office";
+ req_access = list(19)
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/secretaryoffice)
+"aBn" = (
+/obj/machinery/light/broken,
+/turf/simulated/floor/boxing/gym,
+/area/maintenance/cetus/jrthreestar)
+"aBC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"aBV" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/quartermaster/storage)
+"aCw" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"aCH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"aCT" = (
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/obj/machinery/telecomms/bus/preset_three,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"aDF" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/random/pottedplant,
+/obj/machinery/light/small,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"aDY" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/hand_labeler,
+/obj/item/retail_scanner/command,
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"aEt" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftStar)
+"aEB" = (
+/obj/structure/sign/directions/telecomms{
+ dir = 5;
+ pixel_y = 5
+ },
+/obj/structure/sign/directions/ai_core{
+ dir = 4;
+ pixel_y = -5
+ },
+/turf/simulated/wall/r_wall,
+/area/ai_monitored/aihall)
+"aEE" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"aEU" = (
+/obj/machinery/power/solar_control{
+ id = "forestarboardsolar";
+ name = "Fore Starboard Solar Control";
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForStar)
+"aFa" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/security/nuke_storage)
+"aFe" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"aFf" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"aFh" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/boxing{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/jrthreestar)
+"aFv" = (
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/bodyguard)
+"aFw" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/substation/central)
+"aFE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"aFJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"aFK" = (
+/obj/structure/closet/emcloset{
+ anchored = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"aGD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "d3lounge"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/lounge)
+"aGN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge";
+ req_access = list(19)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge/Deck3_Corridor)
+"aHg" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/ai_slipper,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"aHO" = (
+/obj/machinery/computer/communications{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"aIj" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/engineering/Atmospherics_Chamber)
+"aIk" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"aIn" = (
+/obj/random/vendorfood{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"aIu" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/machinery/light/small/fluorescent,
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/shallow/flooded)
+"aJv" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/button/remote/blast_door{
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ pixel_x = 31;
+ req_one_access = list(10,24);
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"aJC" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/random/crate,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"aJJ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 9
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"aJV" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForStar)
+"aKf" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"aKm" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"aKJ" = (
+/obj/machinery/telecomms/relay/preset/southerncross/d2,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"aKM" = (
+/obj/structure/sign/warning/acid{
+ name = "\improper DANGEROUS NANITES";
+ desc = "This sign warns of the dangers of AI-controlled S10-P recycling and crowd control nanite hives in the area.";
+ pixel_y = -32
+ },
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "AI Core";
+ req_access = list(16)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"aKR" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"aLO" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/thirddeck/roof)
+"aMz" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/foreportsolar)
+"aMA" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"aMH" = (
+/obj/structure/cliff/automatic{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/turf/simulated/floor/boxing{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/jrthreestar)
+"aNk" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"aNs" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{
+ frequency = 1381;
+ id_tag = "escape_pod_2_berth";
+ pixel_x = -25;
+ pixel_y = 30;
+ tag_door = "escape_pod_2_berth_hatch";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodaft)
+"aNF" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/storage)
+"aNH" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"aNT" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/threeas)
+"aOw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"aOy" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"aOR" = (
+/obj/structure/table/bench/steel,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/quartermaster/storage)
+"aOU" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"aPE" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/black/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"aPX" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"aRe" = (
+/obj/effect/floor_decal/industrial/stand_clear/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/Atmospherics_Control_Room)
+"aRV" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "aftstarboardsolar";
+ name = "Aft-Starboard Solar Array"
+ },
+/turf/simulated/floor/plating/turfpack/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/aftstarboardsolar)
+"aSo" = (
+/obj/structure/table/marble,
+/obj/item/hand_labeler{
+ pixel_x = -7;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/food/condiment/sugar{
+ pixel_x = 6;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/food/condiment/sugar{
+ pixel_x = 10;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/food/condiment/carton/flour{
+ pixel_x = -5;
+ pixel_y = -2
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ layer = 3.3;
+ pixel_x = 26
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"aSp" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"aSw" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/Solar_Control_ForPort)
+"aTa" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"aTf" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"aUd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/machinery/camera/network/telecom{
+ c_tag = "TCOMMS - D3 Foyer";
+ dir = 10
+ },
+/obj/effect/landmark{
+ name = "JoinLateCyborg"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"aUn" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"aUu" = (
+/obj/structure/dispenser/oxygen,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"aUx" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"aUy" = (
+/obj/structure/smolebuilding/houses,
+/turf/simulated/floor/smole,
+/area/maintenance/cetus/d3docks)
+"aUW" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"aVY" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/ap)
+"aWa" = (
+/obj/machinery/computer/timeclock/premade/east,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"aWy" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForStar)
+"aXe" = (
+/obj/machinery/atmospherics/binary/pump/high_power{
+ name = "PA-Loop to Waste pump"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/research/particleaccelerator)
+"aXh" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod 3 Hatch"
+ },
+/obj/effect/map_helper/airlock/door/simple,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod3/station)
+"aXV" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"aYQ" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"aYR" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
+/obj/structure/bed/chair/sofa/corp/right{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"aZi" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/d3bar)
+"bab" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CMO_Quarters)
+"bav" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/Solar_Control_AftPort)
+"bbg" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoS_Quarters)
+"bbA" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/multi,
+/obj/item/pen/multi{
+ pixel_y = -6
+ },
+/obj/item/pen/multi{
+ pixel_y = 6
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"bcD" = (
+/obj/structure/bed/chair/bay/comfy/black,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"bcP" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/quack)
+"bcV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/button/windowtint{
+ id = "conferencetint";
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"bdj" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"bdx" = (
+/obj/structure/lattice,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/floodlight,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/theater)
+"bet" = (
+/obj/machinery/vending/loadout/costume,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/dressing)
+"beU" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"bfe" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"bff" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"bfu" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"bfE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"bfL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common{
+ name = "Cafeteria"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"bfO" = (
+/obj/structure/closet/walllocker/medical{
+ pixel_y = 30
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/effect/shuttle_landmark/southern_cross/escape_pod3/station,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod3/station)
+"bgs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"bgw" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/boxing{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/jrthreestar)
+"bgz" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/cetus/joint)
+"bgM" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/escapepodjr)
+"bhd" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/heads/sc/sd)
+"bhJ" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/rnd/cetus/stairwelljr3)
+"biY" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/catwalk,
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"bjC" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"bjI" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodaft)
+"bjM" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"bjN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/law)
+"bkg" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/recharger,
+/obj/machinery/newscaster{
+ pixel_y = -30
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"bkj" = (
+/obj/item/implanter/sizecontrol,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/badsnuggles)
+"bkk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"bkn" = (
+/obj/random/obstruction,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"bkv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"bkB" = (
+/obj/machinery/appliance/cooker/fryer,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"bkN" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"bkS" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"blw" = (
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"blQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"bmb" = (
+/obj/structure/lattice,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"bmd" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodstar)
+"bmi" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"bmQ" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/ai_server_room)
+"bnj" = (
+/obj/structure/cable{
+ icon_state = "1-10"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"bnJ" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"bnK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"bnO" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"bnV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"bph" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/green,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"bpo" = (
+/obj/structure/railing/overhang/grey,
+/obj/structure/dummystairs/greyledge{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Captain_Quarters)
+"bpy" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/boxing{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/jrthreestar)
+"bpF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"bqb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Captain_Quarters)
+"bqf" = (
+/obj/random/plushie,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"bqt" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/atrium/primary)
+"bqw" = (
+/obj/machinery/light/yellowed,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"bqI" = (
+/obj/structure/cable{
+ icon_state = "6-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"bqN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"bra" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/CMO_Quarters)
+"brf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/light/small/emergency,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"brI" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"btc" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"btv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"btL" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4;
+ name = "N2O to Mixing"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"buM" = (
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"bvr" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/entrepreneur/crystal_ball{
+ pixel_y = 6
+ },
+/obj/item/deck/tarot{
+ pixel_y = -4;
+ pixel_x = 7
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/quack)
+"bvH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/dressing)
+"bvV" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"bvY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"bwi" = (
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodaft)
+"bwo" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_wall,
+/area/rnd/research/particleaccelerator)
+"bwz" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"bwB" = (
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "32-8"
+ },
+/obj/structure/lattice,
+/obj/structure/disposalpipe/down{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/substation/central)
+"bwC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"bwV" = (
+/obj/machinery/light,
+/turf/simulated/floor/carpet/retro_red,
+/area/bridge/sleep/HoS_Quarters)
+"bxa" = (
+/obj/structure/lattice,
+/obj/random/junk,
+/turf/simulated/open,
+/area/maintenance/cetus/jrthreeport)
+"bxi" = (
+/obj/structure/ghost_pod/ghost_activated/unified_hole,
+/turf/unsimulated/floor/dark,
+/area/maintenance/cetus/jrthreeport)
+"bxl" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"bxy" = (
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 8;
+ name = "Maintenance Access"
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"bxM" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/shallow/derelict/engine)
+"bxN" = (
+/obj/structure/bed/chair/office/light,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"byd" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(1,19)
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"byh" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"byN" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/random/junk,
+/obj/random/maintenance,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"byQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"bzu" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/starsubstation)
+"bAh" = (
+/obj/machinery/power/solar_control{
+ auto_start = 2;
+ id = "aftportsolar";
+ name = "Aft Port Solar Control"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftPort)
+"bAi" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Clown Dressing Room";
+ req_one_access = list(72)
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/clown)
+"bAr" = (
+/obj/structure/barricade/cutout/mime,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"bAv" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/bench/standard,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Command Hall 8";
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"bAy" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/bridge/sleep/Secretary_Quarters)
+"bAP" = (
+/obj/machinery/papershredder,
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/law)
+"bAQ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 6
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"bBm" = (
+/obj/machinery/computer/atmoscontrol{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"bBr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"bBN" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/engine)
+"bCl" = (
+/obj/structure/bed/chair/office/light,
+/obj/effect/landmark/event_spawn/morphspawn,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"bCy" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"bCI" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/mainsupport)
+"bCM" = (
+/obj/item/stack/material/cardboard,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"bDk" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"bDw" = (
+/obj/structure/railing/overhang/grey,
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"bEd" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "foreportsolar";
+ name = "Fore-Port Solar Array"
+ },
+/turf/simulated/floor/plating/turfpack/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/foreportsolar)
+"bEz" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"bFl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"bFD" = (
+/obj/structure/bed/chair/office/light,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"bFJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"bFP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"bGf" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"bGx" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"bGR" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ locked = 0
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"bHE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"bHF" = (
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/redgrid,
+/area/security/nuke_storage)
+"bIf" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"bIv" = (
+/obj/structure/transit_tube{
+ icon_state = "E-NW"
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/auxsupport)
+"bJf" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"bJn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"bKe" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"bKh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"bKr" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/bridge/sleep/Secretary_Quarters)
+"bKX" = (
+/obj/item/radio/beacon,
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"bLl" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/starboard)
+"bLQ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"bLS" = (
+/obj/effect/floor_decal/corner/black/full{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 4;
+ frequency = 1441;
+ id = "co2_in";
+ pixel_y = 1;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/carbon_dioxide,
+/area/engineering/Atmospherics_Chamber)
+"bMh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"bMz" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"bMO" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/dressing)
+"bMV" = (
+/obj/structure/bed/pod{
+ pixel_y = 14
+ },
+/obj/random/trash,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"bMY" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"bOi" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"bOp" = (
+/obj/structure/inflatable/door,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"bOu" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/backstage)
+"bOJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"bOQ" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/flooded)
+"bOU" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/tcomm/tcomstorage)
+"bPb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"bPf" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"bPo" = (
+/obj/random/junk,
+/obj/random/maintenance,
+/obj/random/trash,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"bQv" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4;
+ layer = 3.3
+ },
+/obj/structure/window/basic{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"bQw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ name = "exterior access button";
+ pixel_x = -28;
+ pixel_y = -8
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"bQG" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/tcomm/computer)
+"bQO" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"bRe" = (
+/turf/simulated/wall/durasteel,
+/area/ai)
+"bRs" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"bRy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"bRW" = (
+/obj/structure/table/standard,
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 24;
+ pixel_x = 10
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 28;
+ pixel_x = 4
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 28;
+ pixel_x = -4
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 24;
+ pixel_x = -10
+ },
+/obj/item/stamp/clown,
+/obj/item/clothing/mask/gas/clown_hat,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/carpet/gaycarpet,
+/area/crew_quarters/cetus/clown)
+"bSy" = (
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"bTA" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"bTE" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"bTH" = (
+/obj/item/stool/padded{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"bTK" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 17
+ },
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"bUf" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"bUh" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"bVT" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"bWd" = (
+/obj/structure/curtain/open{
+ name = "theater curtain";
+ color = "#701006";
+ anchored = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/theater)
+"bWs" = (
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"bWw" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"bWG" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"bWX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"bXl" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Secretary_Quarters)
+"bXm" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"bXA" = (
+/obj/structure/salvageable/data_os{
+ pixel_x = -1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"bXJ" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -8
+ },
+/obj/structure/mirror{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/HoP_Quarters)
+"bXU" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1;
+ name = "Phoron to Connector"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"bZp" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 4;
+ name = "PA-Room air injector";
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"bZy" = (
+/obj/item/storage/smolebrickcase{
+ pixel_y = 8;
+ pixel_x = 6
+ },
+/obj/item/storage/smolebrickcase{
+ pixel_y = 4;
+ pixel_x = 4
+ },
+/obj/item/storage/smolebrickcase{
+ pixel_x = 2
+ },
+/obj/structure/table/rack,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"bZH" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/auxsupport)
+"bZM" = (
+/obj/item/clothing/head/cardborg{
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/old_cargo/yellow,
+/area/maintenance/cetus/threefp)
+"caK" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/bodyguard)
+"caT" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"caU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Theater Access"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"cbd" = (
+/obj/structure/table/bench/standard,
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"cbq" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -3
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"cbH" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"cbQ" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eva_port_outer";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"cca" = (
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "defibrillator closet";
+ pixel_y = -31;
+ dir = 1
+ },
+/obj/item/defib_kit/loaded,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"cce" = (
+/obj/structure/table/woodentable,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 3
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoP_Quarters)
+"ccl" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"cdf" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "8-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"cei" = (
+/obj/structure/railing/grey,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"ceq" = (
+/obj/structure/dispenser/oxygen,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"ceQ" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = 6;
+ pixel_y = 32
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/shallow/derelict/dock)
+"cfA" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/solar{
+ id = "jointresearchsolar";
+ name = "Joint Research Solar Array"
+ },
+/turf/simulated/floor/plating/turfpack/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/cetus/joint)
+"cfU" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/threeas)
+"cgn" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/law)
+"cgu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"cha" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/item/stool/padded{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/detective)
+"chc" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Central Access"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"chf" = (
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/dummystairs/hazardledge{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "nanitehall"
+ },
+/area/ai_monitored/aihall)
+"chp" = (
+/obj/structure/transit_tube{
+ icon_state = "E-W-Pass";
+ density = 0
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"cht" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"chv" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/sleep/HoS_Quarters)
+"chH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Joint Research Substation";
+ req_one_access = list(11, 24, 47, 5)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"chR" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/fp)
+"cim" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"ciq" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 9
+ },
+/obj/machinery/meter,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"ciB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"ciM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"cjF" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/Galleryf2)
+"cjK" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/light/small/fluorescent,
+/turf/simulated/floor/plating,
+/area/tcomm/tcomstorage)
+"cjM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"cjN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"ckp" = (
+/obj/structure/table,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"ckr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/item/material/shard,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating{
+ icon_state = "dmg4"
+ },
+/area/maintenance/cetus/shallow/derelict/hallway)
+"cky" = (
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ dir = 8;
+ pixel_x = 5
+ },
+/obj/structure/table/hardwoodtable,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"clt" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftPort)
+"cmH" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/greengrid,
+/area/ai)
+"cnx" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"cnA" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"cnF" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/foreportsolar)
+"cnW" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"coB" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/telecomms/relay/preset/telecomms,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"cpf" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"cpt" = (
+/obj/structure/bed/pillowpile/yellow,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/badsnuggles)
+"cpV" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf3)
+"cqj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Suite 1; Alternative Visions"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/quack)
+"cqt" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/threeap)
+"cqv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 1
+ },
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"cqZ" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"cru" = (
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/solar/foreportsolar)
+"crM" = (
+/obj/random/junk,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"crV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"csa" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodaft)
+"csD" = (
+/obj/machinery/atmospherics/tvalve/mirrored{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"csF" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/engineering/cetus/aftsubstation)
+"csV" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"ctd" = (
+/obj/random/obstruction,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"ctk" = (
+/turf/simulated/wall/r_wall,
+/area/tcomm/computer)
+"cub" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/curtain/bed{
+ name = "curtain";
+ dir = 8;
+ anchored = 1;
+ pixel_x = -11
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/maintenance/cetus/shallow/quack)
+"cur" = (
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"cut" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"cuE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"cvm" = (
+/obj/machinery/pipedispenser,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"cvs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/rust,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"cvB" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/lattice,
+/obj/structure/disposalpipe/down,
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"cwu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"cxx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"cyp" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge/Deck3_Corridor)
+"cyJ" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoP_Quarters)
+"czh" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/folder/blue_captain,
+/obj/item/stamp/captain,
+/obj/item/stamp/denied{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/clothing/glasses/omnihud/all,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"czW" = (
+/obj/machinery/transhuman/resleever,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"cAg" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/quack)
+"cAj" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"cAJ" = (
+/obj/structure/sign/directions/medical{
+ dir = 8
+ },
+/obj/structure/sign/directions/engineering{
+ name = "\improper Engine";
+ pixel_y = 6;
+ dir = 8
+ },
+/obj/structure/sign/directions/cargo/mining{
+ pixel_y = -6;
+ dir = 1
+ },
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"cAT" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"cAU" = (
+/obj/structure/bed/chair/sofa/corner/blue,
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"cBm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"cBr" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload)
+"cBI" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/flame/candle/everburn{
+ pixel_y = 6;
+ pixel_x = -7
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/item/bedsheet/pillow/exercise{
+ pixel_y = 3
+ },
+/obj/item/bedsheet/pillow/exercise{
+ pixel_y = -4;
+ pixel_x = 5
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/quack)
+"cBK" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Captain_Quarters)
+"cBV" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"cCc" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/machinery/camera/motion/command{
+ dir = 10;
+ c_tag = "AI- Airlock Internal"
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ai)
+"cCe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Stairwell D3";
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"cCz" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"cCD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Captain_Quarters)
+"cDe" = (
+/obj/machinery/door/window/southleft{
+ name = "Staff Only"
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"cDf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "6-10"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Fore Substation";
+ req_one_access = list(11, 24)
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"cDh" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"cDn" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"cDB" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_y = 36
+ },
+/obj/structure/showcase,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload_foyer)
+"cDQ" = (
+/obj/machinery/papershredder,
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"cDU" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/jrfirstaid)
+"cEk" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"cEF" = (
+/obj/random/junk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"cEI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"cFm" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"cFS" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"cFU" = (
+/obj/structure/bed/chair/sofa/brown,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"cGC" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"cHc" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/sex)
+"cHj" = (
+/obj/random/obstruction,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"cHr" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"cHY" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"cIs" = (
+/obj/machinery/computer/general_air_control/large_tank_control{
+ input_tag = "waste_in";
+ name = "Gas Mix Tank Control";
+ output_tag = "waste_out";
+ sensors = list("waste_sensor"="Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"cID" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"cJx" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"cJB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/glass_medical{
+ name = "First-Aid Station";
+ req_access = newlist();
+ req_one_access = newlist()
+ },
+/turf/simulated/floor/tiled/old_cargo/white,
+/area/medical/cetus/jrfirstaid)
+"cJE" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"cKm" = (
+/obj/machinery/computer/atmos_alert{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"cKr" = (
+/obj/machinery/atmospherics/valve/digital/open{
+ name = "Mixed Air Outlet Valve"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"cKt" = (
+/turf/simulated/mineral/cetus/edge,
+/area/bridge/sleep/Secretary_Quarters)
+"cKy" = (
+/obj/structure/bed/pillowpile/black,
+/obj/random/plushie,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"cKN" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForPort)
+"cLU" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 8
+ },
+/obj/item/soap/space_soap,
+/obj/item/towel{
+ color = "#FF6666";
+ name = "light red towel"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"cLX" = (
+/obj/structure/table/standard,
+/obj/item/gun/energy/sizegun,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"cMf" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"cMw" = (
+/obj/random/pottedplant,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"cMG" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/cetus/entry)
+"cNg" = (
+/obj/structure/table/steel,
+/obj/random/toolbox,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"cNs" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"cNE" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/threefs)
+"cNR" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"cOa" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"cOh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 5
+ },
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/obj/random/trash,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"cOY" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/bridge)
+"cPk" = (
+/obj/structure/bed/double/weaversilk_nest,
+/obj/effect/weaversilk/wall,
+/turf/simulated/floor/carpet/happy,
+/area/maintenance/cetus/d3docks)
+"cPE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"cQi" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"cQk" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ai_monitored/aihall)
+"cQq" = (
+/obj/machinery/holoplant,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"cQy" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"cQz" = (
+/obj/structure/bed/chair/comfy/red,
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"cQJ" = (
+/obj/machinery/door/airlock/glass_mining,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"cQY" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"cRb" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/random/forgotten_tram,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"cRt" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"cRR" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/engine)
+"cRV" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"cSq" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/pickaxe{
+ pixel_x = 5
+ },
+/obj/item/mining_scanner,
+/obj/item/shovel{
+ pixel_x = -5
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/storage)
+"cST" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/asteroid/cetus/d3)
+"cTD" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -15;
+ pixel_y = -3
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -29;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/CMO_Quarters)
+"cTI" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"cTN" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/random/contraband,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"cTR" = (
+/obj/structure/table/hardwoodtable,
+/obj/random/drinkbottle{
+ pixel_x = -11
+ },
+/obj/random/drinkbottle{
+ pixel_y = -4;
+ pixel_x = -9
+ },
+/obj/machinery/chemical_dispenser/bar_alc/full{
+ dir = 8;
+ pixel_x = 7;
+ pixel_y = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"cUm" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"cUn" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/starboard)
+"cUt" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 8;
+ name = "1E-light fixture"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"cUG" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Atmospherics_Chamber)
+"cUK" = (
+/obj/effect/floor_decal/industrial/warning/tile,
+/obj/effect/floor_decal/industrial/warning/color/tile/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"cUO" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"cUQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"cUR" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"cVN" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"cWE" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/quartermaster/mininglockerroom)
+"cXi" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"cXm" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"cXI" = (
+/obj/structure/table/standard,
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"cYp" = (
+/obj/machinery/telecomms/server/presets/common,
+/turf/simulated/floor/bluegrid,
+/area/ai)
+"cYU" = (
+/obj/structure/outcrop/platinum,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreeport)
+"cYY" = (
+/obj/item/storage/secure/safe{
+ pixel_y = 32;
+ pixel_x = 5
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"cZj" = (
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"cZR" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"cZX" = (
+/obj/structure/railing/overhang/hazard/nanite,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "nanitehall"
+ },
+/area/ai_monitored/aihall)
+"dah" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "ainanitethree"
+ },
+/area/ai)
+"daj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI Access Hall";
+ req_access = list(16);
+ req_one_access = list(16)
+ },
+/obj/structure/sign/warning/lethal_turrets{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_monitored/aihall)
+"dam" = (
+/obj/structure/table/steel,
+/obj/random/cash/big,
+/obj/random/drinkbottle,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"daM" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"daS" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"daV" = (
+/obj/machinery/light{
+ layer = 3
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"daY" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"dbg" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/structure/bed/pillowpilefront/red,
+/obj/machinery/light/small,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/lounge)
+"dbm" = (
+/obj/structure/barricade/cutout/fluke,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"dbw" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"dbI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"dbP" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"dbT" = (
+/obj/structure/lattice,
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"dcB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/random/junk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/cetus/andromeda6,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"ddK" = (
+/obj/machinery/vending/coffee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodaft)
+"ddV" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/sleep/RD_Quarters)
+"ddY" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/escapepodfore)
+"dez" = (
+/obj/structure/closet/crate,
+/obj/item/mail/junkmail,
+/obj/item/mail/junkmail,
+/obj/random/maintenance/cargo,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"deK" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"dfv" = (
+/obj/machinery/telecomms/server/presets/service/southerncross,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"dfw" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"dfB" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"dfK" = (
+/turf/simulated/open,
+/area/hallway/cetus/stairwellf3)
+"dgi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"dgj" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"dgI" = (
+/turf/simulated/floor/boxing{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/jrthreestar)
+"dgX" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"dhA" = (
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"dhV" = (
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"dif" = (
+/obj/structure/railing/overhang/bronze{
+ dir = 1
+ },
+/obj/machinery/light/small/fairylights{
+ pixel_y = 15
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/theater)
+"dis" = (
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/shallow/ap)
+"diR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI Access Hall";
+ req_access = list(16);
+ req_one_access = list(16)
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/warning/acid{
+ name = "\improper DANGEROUS NANITES";
+ desc = "This sign warns of the dangers of AI-controlled S10-P recycling and crowd control nanite hives in the area.";
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload_foyer)
+"diS" = (
+/obj/machinery/access_button{
+ name = "interior access button";
+ pixel_y = 24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForStar)
+"djd" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"djn" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/d3bar)
+"djw" = (
+/obj/structure/cliff/automatic{
+ dir = 5
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreeport)
+"djO" = (
+/obj/structure/girder,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"dkj" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -15;
+ pixel_y = -3
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -29;
+ pixel_y = 4
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Captain_Quarters)
+"dkV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"dma" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/ai)
+"dmd" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/flooded)
+"dmf" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"dmh" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"dmG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"dng" = (
+/obj/structure/railing/grey,
+/obj/structure/cable{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/engineering/cetus/aftsubstation)
+"dnA" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"dnB" = (
+/obj/random/trash,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threecp)
+"dnY" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"doo" = (
+/obj/structure/table/steel,
+/obj/item/paper_bin{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/folder/yellow,
+/obj/item/pen,
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"doD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Secretary_Quarters)
+"doM" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"doN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"dpl" = (
+/obj/structure/closet/firecloset/full,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"dpJ" = (
+/obj/machinery/door/airlock{
+ name = "Shower"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"dpX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"dqq" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ pixel_y = 20;
+ pixel_x = -7
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/light/small/emergency,
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "andromeda_airlock_2";
+ req_one_access = list(13);
+ pixel_y = 21;
+ pixel_x = 7
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"dqs" = (
+/obj/random/junk,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"dqy" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "conferencetint"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/bridge/Conference_Room)
+"dre" = (
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/tank/oxygen,
+/obj/item/clothing/mask/gas,
+/obj/item/extinguisher,
+/obj/item/clothing/head/hardhat/red,
+/obj/item/clothing/glasses/meson,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"drf" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/item/geiger/wall/west,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"drp" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"drz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"drC" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/Conference_Room)
+"drR" = (
+/obj/machinery/light{
+ dir = 8;
+ name = "1E-light fixture"
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"dsu" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/empty{
+ canister_color = "grey";
+ icon_state = "grey";
+ name = "Canister \[Air\]"
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/research/particleaccelerator)
+"dsB" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForPort)
+"dsT" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"dtv" = (
+/obj/structure/bed/chair/sofa/right/blue,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"dty" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodaft)
+"dtC" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf2)
+"dtG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"dtL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/jrfirstaid)
+"duc" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"dun" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/machinery/light/yellowed,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"duw" = (
+/obj/machinery/light/broken{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"duz" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoP_Quarters)
+"duI" = (
+/obj/structure/barricade/cutout,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"duP" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"dvh" = (
+/obj/structure/transit_tube,
+/obj/structure/lattice,
+/obj/machinery/light/small/emergency,
+/turf/simulated/open,
+/area/maintenance/cetus/auxsupport)
+"dvj" = (
+/turf/simulated/mineral/cetus,
+/area/hallway/primary/firstdeck/vaultlobby)
+"dvB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"dvQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"dwc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"dwj" = (
+/obj/structure/noticeboard{
+ pixel_y = -27
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"dwv" = (
+/obj/structure/bookcase{
+ name = "bookcase (Fiction)"
+ },
+/obj/item/book/custom_library/fiction/blacksmithandkinglybloke,
+/obj/item/book/custom_library/fiction/irishairmanforseesdeath,
+/obj/item/book/custom_library/fiction/myrock,
+/obj/item/book/custom_library/fiction/starsandsometimesfallingones,
+/obj/item/book/custom_library/fiction/truelovehathmyheart,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/gamba)
+"dwE" = (
+/obj/structure/railing/overhang/grey,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"dwS" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"dwW" = (
+/obj/machinery/atmospherics/binary/pump{
+ name = "Custom Mix to Connector";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"dxn" = (
+/obj/machinery/air_sensor{
+ frequency = 1491;
+ id_tag = "pa_room";
+ output = 63
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"dxC" = (
+/obj/structure/sign/directions/dorms{
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"dxH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"dxU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/obj/structure/closet/radiation{
+ anchored = 1;
+ starts_with = list(/obj/item/clothing/suit/radiation=4,/obj/item/clothing/head/radiation=4,/obj/item/geiger=4)
+ },
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"dyh" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/hallway/cetus/stairwellf3)
+"dyn" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/light/small/yellowed,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"dyA" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/disposal,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/firstdeck/vaultlobby)
+"dyO" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/detective)
+"dzd" = (
+/obj/structure/table/bench/wooden,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D3 Art Cafe 3";
+ dir = 5
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"dzi" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"dzq" = (
+/obj/structure/prop/dark_node{
+ node_range = 3
+ },
+/turf/unsimulated/floor/dark,
+/area/maintenance/cetus/jrthreeport)
+"dzB" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"dzF" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"dzR" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"dzT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"dAE" = (
+/obj/structure/table/bench/wooden,
+/obj/item/camera_film,
+/obj/item/camera,
+/turf/simulated/floor/boxing/gym{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/sex)
+"dAG" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"dAI" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/paper_bin,
+/obj/item/folder/blue,
+/obj/item/pen/multi,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/random_multi/single_item/captains_spare_id,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"dAQ" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"dBm" = (
+/obj/machinery/atmospherics/tvalve/mirrored/bypass{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"dCg" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"dCq" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4;
+ name = "CO2 to Mixing"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"dCw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"dDs" = (
+/obj/item/storage/fancy/blackcandle_box,
+/obj/structure/table/fancyblack,
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/threeas)
+"dDQ" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/escapepodstar)
+"dEc" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"dEd" = (
+/obj/random/plushie,
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/badsnuggles)
+"dEj" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"dEn" = (
+/turf/simulated/mineral/cetus,
+/area/engineering/Solar_Control_ForStar)
+"dEo" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/arcade)
+"dFF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/maintenance/cargo{
+ req_one_access = list(48,47)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"dFK" = (
+/obj/structure/table/bench/wooden,
+/obj/item/storage/photo_album,
+/turf/simulated/floor/boxing/gym{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/sex)
+"dFZ" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/dummystairs/hazardledge{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/security/nuke_storage)
+"dGd" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"dGq" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1;
+ name = "N2O to Connector"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"dGR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForPort)
+"dHc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"dHx" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"dHF" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/shield_diffuser,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/access_button{
+ name = "exterior access button";
+ pixel_x = -28;
+ pixel_y = -8
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/shallow/derelict/dock)
+"dHX" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel{
+ color = "#800080";
+ name = "purple towel";
+ pixel_y = 12
+ },
+/obj/item/towel{
+ color = "#800080";
+ name = "purple towel";
+ pixel_y = 15
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/RD_Quarters)
+"dIa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"dIu" = (
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"dKo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"dKR" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"dLT" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Command Secretary"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"dMh" = (
+/obj/structure/table/reinforced,
+/obj/random/maintenance/foodstuff,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"dMi" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"dMj" = (
+/obj/structure/table,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"dMN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"dMT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"dNh" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/brown,
+/area/maintenance/cetus/shallow/law)
+"dNv" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/mineral/cetus,
+/area/bridge/sleep/Secretary_Quarters)
+"dNM" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/random/obstruction,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"dNS" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"dOs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"dOD" = (
+/obj/structure/closet/secure_closet/hos_wardrobe,
+/obj/item/gps/security/hos,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoS_Quarters)
+"dOI" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Aft Starboard";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"dPO" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"dPX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 8;
+ name = "Maintenance Access"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"dQb" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodstar)
+"dQc" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"dQy" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"dQL" = (
+/obj/structure/table/marble,
+/obj/item/material/knife/butch,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"dRl" = (
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"dSg" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"dSN" = (
+/turf/unsimulated/wall/dark,
+/area/maintenance/cetus/jrthreeport)
+"dST" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"dSU" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/thirddeck/roof)
+"dTi" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"dTO" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"dTP" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload)
+"dTR" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "ATMTK - Nitrogen"
+ },
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/nitrogen,
+/area/engineering/Atmospherics_Chamber)
+"dUN" = (
+/obj/structure/curtain/medical,
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"dVb" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "32-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"dVy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/plating{
+ icon_state = "dmg4"
+ },
+/area/maintenance/cetus/d3bar)
+"dVM" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"dWc" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"dWI" = (
+/obj/structure/table/steel,
+/obj/random/mainttoyloot,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/starboard)
+"dXq" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"dXC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Reactor Room"
+ },
+/obj/structure/cable{
+ icon_state = "5-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/engine)
+"dXJ" = (
+/turf/simulated/floor/tiled/old_tile/blue,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"dXP" = (
+/obj/structure/table/marble,
+/obj/item/storage/box/glasses/coffeecup{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/storage/box/glasses/coffeemug{
+ pixel_x = -6;
+ pixel_y = 12
+ },
+/obj/item/storage/box/glasses/square{
+ pixel_x = 9;
+ pixel_y = 1
+ },
+/obj/item/storage/box/buns{
+ pixel_x = 9;
+ pixel_y = 12
+ },
+/obj/item/storage/box/buns{
+ pixel_x = 9;
+ pixel_y = 12
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"dYJ" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/escapepodjr)
+"dYQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"dYW" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/plating,
+/area/medical/cetus/jrfirstaid)
+"dZC" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"dZI" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"dZU" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"eaM" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"eaN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"eaS" = (
+/obj/item/stack/material/cardboard,
+/obj/item/storage/box,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"ebq" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"ebr" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable/max_charge_max_input{
+ RCon_tag = "Solar - Aft Starboard"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftStar)
+"ebu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"ebw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"ecF" = (
+/obj/machinery/telecomms/server/presets/command,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"ecP" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"ecQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"edA" = (
+/obj/item/toy/plushie/tinytin,
+/obj/item/toy/plushie/tuxedo_cat,
+/obj/item/toy/plushie/vox{
+ pixel_y = -7
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreeport)
+"edH" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"edK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"edV" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "CMO office";
+ sortType = "CMO office"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"eel" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/engineering/cetus/aftsubstation)
+"eeK" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/item/entrepreneur/crystal{
+ pixel_y = 11;
+ pixel_x = -4
+ },
+/obj/item/reagent_containers/glass/bottle/essential_oil{
+ pixel_y = 20;
+ pixel_x = 7
+ },
+/obj/item/reagent_containers/syringe/drugs{
+ pixel_y = -6;
+ pixel_x = -3
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/item/deck/tarot{
+ pixel_y = -8;
+ pixel_x = -4
+ },
+/obj/item/deck/cards{
+ pixel_y = -8;
+ pixel_x = 4
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/quack)
+"eeO" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4;
+ layer = 3.3
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/engineering/Atmospherics_Control_Room)
+"efF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"efG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/bench/standard,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"efS" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"efW" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"efY" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"egr" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 2
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -3
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"egD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"egE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/research{
+ req_access = list(7);
+ name = "Particle Accelerator"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/research/particleaccelerator)
+"ehp" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/starboard)
+"ehF" = (
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"ehL" = (
+/obj/machinery/atmospherics/binary/pump,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"ehR" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"eis" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"eju" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
+ },
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/shallow/derelict/dock)
+"ejA" = (
+/obj/structure/bed/chair/bay/comfy/captain{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"ejB" = (
+/turf/simulated/open,
+/area/rnd/cetus/stairwelljr3)
+"ejQ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"ekg" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"ekk" = (
+/obj/item/geiger/wall/south,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"ekH" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/escapepodjr)
+"ekU" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"ele" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"elf" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"elo" = (
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/HoP_Quarters)
+"elq" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"ely" = (
+/turf/simulated/mineral/cetus/edge,
+/area/asteroid/cetus/d3/jr)
+"elE" = (
+/obj/structure/lattice,
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"emw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "5-6"
+ },
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Mime Dressing Room";
+ req_one_access = list(72)
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/mime)
+"end" = (
+/obj/machinery/camera/motion/command{
+ dir = 8;
+ c_tag = "AI- Outer Hall 2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"enp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"enV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "5-10"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "server_access_inner";
+ locked = 1;
+ name = "Telecoms Server Access";
+ req_access = list(61);
+ req_one_access = list(61)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcomm/chamber)
+"eog" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"eoh" = (
+/turf/simulated/shuttle/wall/no_join/orange,
+/area/shuttle/escape_pod3/station)
+"eon" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"eoq" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload)
+"eov" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/random/junk,
+/obj/structure/ghost_pod/ghost_activated/unified_hole,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"eoA" = (
+/obj/machinery/computer/shutoff_monitor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"eoP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"eoS" = (
+/obj/item/modular_computer/console/preset/security,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled/red,
+/area/bridge)
+"epf" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"epA" = (
+/obj/machinery/recharge_station,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24;
+ pixel_x = 2
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/cetus/jrfirstaid)
+"epC" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/shield_diffuser,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "exterior access button";
+ pixel_x = 10;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/shallow/derelict/dock)
+"epG" = (
+/obj/structure/table/rack/shelf/wood,
+/obj/item/entrepreneur/crystal{
+ pixel_y = 20;
+ pixel_x = -4
+ },
+/obj/item/storage/fancy/blackcandle_box{
+ pixel_y = -2;
+ pixel_x = -3
+ },
+/obj/item/storage/fancy/candle_box{
+ pixel_y = -3
+ },
+/obj/item/storage/fancy/whitecandle_box{
+ pixel_y = -3;
+ pixel_x = 4
+ },
+/obj/structure/curtain/bed{
+ name = "curtain";
+ dir = 8;
+ anchored = 1;
+ pixel_x = -11
+ },
+/obj/item/reagent_containers/glass/bottle/essential_oil{
+ pixel_y = 20;
+ pixel_x = 7
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/quack)
+"eqa" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge/Deck3_Corridor)
+"eqr" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"eqz" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 4;
+ name = "Ports to Waste"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"erd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"erj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"erA" = (
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Captain_Quarters)
+"esG" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"esR" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"etf" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/shallow/ap)
+"etQ" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower,
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/machinery/door/window/northright,
+/obj/item/bikehorn/rubberducky,
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Captain_Quarters)
+"etX" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/aftsubstation)
+"etY" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/foreportsolar)
+"eua" = (
+/obj/machinery/atmospherics/valve/digital{
+ name = "Custom Mix Outlet Valve"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"eue" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodaft)
+"eug" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"euF" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"evc" = (
+/turf/simulated/wall/r_wall,
+/area/ai_upload)
+"evr" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"evu" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"evN" = (
+/obj/random/pottedplant,
+/turf/simulated/floor/tiled/dark,
+/area/bridge/sleep/HoS_Quarters)
+"evS" = (
+/obj/machinery/porta_turret/ai_defense,
+/turf/simulated/floor/redgrid,
+/area/ai_monitored/aihall)
+"evT" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "9-10"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"ewb" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Command Hall 4"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"ewd" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"ewp" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"eww" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"exB" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/jrthreeport)
+"eyb" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"eyc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"eyz" = (
+/obj/machinery/lapvend,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"eyA" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"eyP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"eyT" = (
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"eyX" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"eAa" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"eAg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Command Hall 1";
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"eAl" = (
+/obj/structure/filingcabinet/security{
+ name = "Security Records"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"eAp" = (
+/obj/structure/cable/yellow,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"eAy" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Atmospherics_Chamber)
+"eAP" = (
+/obj/structure/sign/warning/server_room{
+ pixel_x = -32
+ },
+/turf/simulated/wall/r_wall,
+/area/tcomm/computer)
+"eAY" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"eBz" = (
+/obj/machinery/door/airlock/external{
+ name = "Large Escape Pod Hatch 1"
+ },
+/obj/effect/map_helper/airlock/door/simple,
+/turf/simulated/shuttle/floor,
+/area/shuttle/large_escape_pod1/centcom)
+"eBR" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodstar)
+"eCn" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"eCR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"eCY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/dressing)
+"eDb" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "vld_exterior";
+ name = "Checkpoint Lockdown"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"eDz" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"eDJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"eDV" = (
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/threeas)
+"eEb" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_y = -30;
+ pixel_x = -6
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForPort)
+"eEF" = (
+/obj/structure/closet/radiation{
+ anchored = 1;
+ starts_with = list(/obj/item/clothing/suit/radiation=4,/obj/item/clothing/head/radiation=4,/obj/item/geiger=4)
+ },
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/suit/radiation/teshari,
+/obj/item/clothing/head/radiation/teshari,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - JR D3 Stairwell 3";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"eEH" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"eEK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/rust,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"eEU" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/cetus/joint)
+"eFj" = (
+/obj/machinery/door/airlock/vault/bolted{
+ autoclose = 0;
+ frequency = 1969;
+ id_tag = "vaultdoorbolt";
+ req_access = list(53)
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "vld_interior";
+ name = "Vault Lockdown"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/nuke_storage)
+"eFE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"eFI" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"eFS" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"eGf" = (
+/obj/structure/sign/directions/bridge{
+ dir = 1
+ },
+/turf/simulated/wall,
+/area/bridge/Deck3_Corridor)
+"eGr" = (
+/obj/structure/table/gamblingtable,
+/obj/item/deck/egy,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"eGM" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/escapepodaft)
+"eGN" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/mainsupport)
+"eHk" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"eHm" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload)
+"eHq" = (
+/obj/machinery/pointdefense_control{
+ id_tag = "PD Main"
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_server_room)
+"eHB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"eHM" = (
+/obj/machinery/clonepod/transhuman/full,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"eHS" = (
+/obj/structure/lattice,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/structure/window/basic,
+/turf/simulated/open,
+/area/maintenance/cetus/threeap)
+"eHT" = (
+/obj/structure/closet/secure_closet/guncabinet/sidearm,
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"eIh" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"eIk" = (
+/obj/structure/bed/chair/wood,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"eIw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"eIU" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"eJh" = (
+/obj/structure/salvageable/shuttle_console,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"eJA" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/solar/forestarboardsolar)
+"eJJ" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "n2_sensor"
+ },
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/nitrogen,
+/area/engineering/Atmospherics_Chamber)
+"eJK" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"eKi" = (
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/maintenance/cetus/d3docks)
+"eKm" = (
+/obj/machinery/computer/message_monitor,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/ai_server_room)
+"eKq" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/solar/forestarboardsolar)
+"eKC" = (
+/obj/random/trash,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threeas)
+"eKO" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"eKS" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"eKX" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ brightness_color = "#DA0205";
+ brightness_power = 1;
+ brightness_range = 5;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/HoP_Quarters)
+"eLl" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"eMM" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/form_printer,
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"eMU" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodaft)
+"eMZ" = (
+/obj/effect/landmark/start{
+ name = "Cyborg"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"eNe" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"eNn" = (
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 2;
+ pixel_y = -9
+ },
+/obj/structure/curtain/open/shower,
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Secretary_Quarters)
+"eOe" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"eOl" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"eOA" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"eOE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"eOK" = (
+/obj/random/cutout,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"eOR" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"ePs" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/deskbell{
+ pixel_x = 7;
+ pixel_y = -13
+ },
+/obj/item/flame/candle/everburn{
+ pixel_y = -10;
+ pixel_x = -7
+ },
+/obj/machinery/cash_register/civilian{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/quack)
+"ePL" = (
+/obj/structure/table/standard,
+/obj/item/stock_parts/subspace/amplifier,
+/obj/item/stock_parts/subspace/amplifier,
+/obj/item/stock_parts/subspace/amplifier,
+/turf/simulated/floor/plating,
+/area/tcomm/tcomstorage)
+"ePP" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"ePT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"ePY" = (
+/obj/structure/cable/cyan{
+ icon_state = "6-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"eQb" = (
+/obj/structure/railing/overhang/bronze{
+ dir = 4
+ },
+/obj/structure/dummystairs/bronzeledge{
+ dir = 1
+ },
+/obj/structure/railing/overhang/bronze{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/theater)
+"eQy" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/table/bench/wooden,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 3
+ },
+/obj/machinery/button/remote/airlock{
+ id = "hopquarters";
+ name = "Bolt Control";
+ req_access = list(57);
+ specialfunctions = 4;
+ dir = 8;
+ pixel_x = 27
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/HoP_Quarters)
+"eQB" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"eRy" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"eSp" = (
+/turf/simulated/wall,
+/area/rnd/cetus/entry)
+"eSu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"eSK" = (
+/obj/structure/railing/grey,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"eTc" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/plating,
+/area/ai)
+"eTp" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/flooded)
+"eTC" = (
+/obj/structure/ladder,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/engineering/cetus/foresubstation)
+"eTD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/command{
+ req_one_access = null;
+ name = "Bridge"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"eTS" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"eUl" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/shallow/fp)
+"eUr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"eUt" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"eUX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -3
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"eVg" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/boxing/gym,
+/area/maintenance/cetus/jrthreestar)
+"eVs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"eVD" = (
+/obj/structure/barricade/cutout/traitor,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"eWp" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"eWu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"eWA" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "andromeda_airlock_1";
+ landmark_tag = "andromeda_1";
+ name = "HIS Andromeda Dock 1 DO NOT USE";
+ use_docking_codes = 0
+ },
+/turf/space,
+/area/space)
+"eWJ" = (
+/obj/machinery/computer/atmos_alert,
+/turf/simulated/floor/tiled/yellow,
+/area/bridge)
+"eWK" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/book/custom_library/reference/fistfulofd6splayersguide,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"eXF" = (
+/obj/machinery/computer/power_monitor,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/bridge)
+"eYc" = (
+/obj/structure/disposalpipe/segment,
+/obj/random/obstruction,
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/shallow/flooded)
+"eYF" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/random/junk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"eYK" = (
+/obj/structure/closet/lawcloset,
+/obj/item/gps/command{
+ pixel_x = 4
+ },
+/obj/item/gps/command{
+ pixel_x = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Secretary_Quarters)
+"eZh" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = -30
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Particle Accelerator 2";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"eZi" = (
+/obj/item/stool/padded{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"faY" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"fbe" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"fcc" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"fcj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"fcv" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"fcz" = (
+/obj/structure/cliff/automatic{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreeport)
+"fcC" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"fcU" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"fcV" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"fdo" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/down,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"feo" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"feU" = (
+/obj/structure/lattice,
+/obj/random/junk,
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"feY" = (
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/shallow/flooded)
+"ffb" = (
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "32-8"
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/engineering/cetus/starsubstation)
+"ffe" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"ffl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"ffm" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreeport)
+"ffN" = (
+/obj/structure/transit_tube{
+ icon_state = "D-SW"
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/auxsupport)
+"fga" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/reagent_dispensers/foam,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"fgi" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "Port_Solars";
+ pixel_y = 23
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForPort)
+"fgO" = (
+/turf/simulated/wall,
+/area/engineering/cetus/jointsubstation)
+"fha" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/random/mob/mouse,
+/turf/simulated/floor/smole,
+/area/maintenance/cetus/d3docks)
+"fhe" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoP_Quarters)
+"fie" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Captain_Quarters)
+"fiI" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_coffee/full{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"fiP" = (
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"fiR" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"fjr" = (
+/obj/machinery/light/small,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"fjw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"fjz" = (
+/obj/effect/landmark{
+ name = "tripai"
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/item/radio/intercom/private{
+ dir = 1;
+ pixel_y = 21
+ },
+/obj/item/radio/intercom/custom{
+ pixel_y = -21
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/greengrid,
+/area/ai)
+"fjU" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled/freezer,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"fkr" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"fky" = (
+/obj/item/reagent_containers/food/drinks/soymilk,
+/obj/item/reagent_containers/food/drinks/soymilk,
+/obj/item/reagent_containers/food/drinks/bottle/milk,
+/obj/item/reagent_containers/food/drinks/bottle/milk,
+/obj/item/reagent_containers/food/drinks/smallchocmilk,
+/obj/item/reagent_containers/food/drinks/smallchocmilk,
+/obj/item/reagent_containers/food/drinks/smallchocmilk,
+/obj/item/reagent_containers/food/drinks/smallchocmilk,
+/obj/item/reagent_containers/food/drinks/smallmilk,
+/obj/item/reagent_containers/food/drinks/smallmilk,
+/obj/item/reagent_containers/food/drinks/smallmilk,
+/obj/item/reagent_containers/food/drinks/smallmilk,
+/obj/structure/closet/secure_closet/freezer/fridge{
+ pixel_x = 6
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = 7;
+ pixel_y = -3
+ },
+/obj/item/storage/box/donkpockets{
+ pixel_x = 7;
+ pixel_y = -3
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "coffeeshop";
+ name = "Cafe Shutters";
+ req_one_access = list(25,28,37);
+ pixel_x = 26
+ },
+/obj/machinery/light_switch{
+ pixel_x = 27;
+ pixel_y = 8;
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"fli" = (
+/obj/structure/dummystairs,
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"flE" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"flG" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoS_Quarters)
+"flV" = (
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"fmu" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar{
+ id = "foreportsolar";
+ name = "Fore-Port Solar Array"
+ },
+/turf/simulated/floor/plating/turfpack/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/foreportsolar)
+"fmz" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForPort)
+"fmN" = (
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"fmU" = (
+/obj/structure/lattice,
+/obj/structure/disposaloutlet{
+ dir = 4;
+ layer = 3.3
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/window/basic{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/flooded)
+"fnv" = (
+/obj/machinery/air_sensor{
+ frequency = 1443;
+ id_tag = "air_sensor";
+ output = 7
+ },
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white{
+ dir = 1
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airmix,
+/area/engineering/Atmospherics_Chamber)
+"fnF" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"fnG" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"fof" = (
+/obj/machinery/atmospherics/binary/pump{
+ name = "Air Mix to Connector";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"fos" = (
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 8
+ },
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "32-8"
+ },
+/obj/structure/disposalpipe/down{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/structure/ladder,
+/turf/simulated/open,
+/area/engineering/cetus/portsubstation)
+"foA" = (
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/machinery/light/small/fluorescent,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "maintnanites"
+ },
+/area/maintenance/cetus/nanites)
+"foD" = (
+/obj/machinery/light/yellowed,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"foI" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = -35;
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/RD_Quarters)
+"foL" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"foM" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"fpd" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/Galleryf2)
+"fpl" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"fpA" = (
+/obj/machinery/light/small/fluorescent{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/CMO_Quarters)
+"fpH" = (
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"fqc" = (
+/obj/machinery/atmospherics/unary/freezer{
+ icon_state = "freezer"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/research/particleaccelerator)
+"fqB" = (
+/obj/structure/bed/chair/sofa/right/purp{
+ dir = 4
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/RD_Quarters)
+"fqD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Monitoring Room";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"fqE" = (
+/obj/random/plushie,
+/obj/structure/bed/pillowpile/teal,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/badsnuggles)
+"fqM" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"fqW" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"frs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Captain_Quarters)
+"frw" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CMO_Quarters)
+"fsn" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"fsr" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/thirddeck/roof)
+"fsA" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/airlock_sensor/airlock_interior{
+ frequency = 1381;
+ id_tag = "server_access_in_sensor";
+ master_tag = "server_access_airlock";
+ name = "interior sensor";
+ pixel_x = -26;
+ pixel_y = -27
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"fsY" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"ftb" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1443;
+ icon_state = "map_vent_in";
+ id_tag = "air_out";
+ internal_pressure_bound = 2000;
+ internal_pressure_bound_default = 2000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white,
+/turf/simulated/floor/reinforced/airmix,
+/area/engineering/Atmospherics_Chamber)
+"ftv" = (
+/obj/structure/table/rack,
+/obj/item/implanter/compliance{
+ pixel_y = 4
+ },
+/obj/item/implanter/sizecontrol,
+/obj/item/clothing/gloves/sterile/latex{
+ pixel_y = 6
+ },
+/obj/item/clothing/gloves/sterile/latex{
+ pixel_y = -1;
+ color = "black"
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/sex)
+"ftB" = (
+/obj/structure/table/woodentable,
+/obj/item/taperecorder,
+/obj/item/rectape/random,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"ftC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common{
+ name = "Lockers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"ftW" = (
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"fux" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/greengrid,
+/area/ai)
+"fuO" = (
+/obj/structure/table/standard,
+/obj/item/aiModule/protectStation{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_upload)
+"fuV" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/large_escape_pod1/centcom)
+"fuX" = (
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threeas)
+"fvw" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"fvL" = (
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"fwr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"fwv" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "n2o_sensor"
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/effect/floor_decal/corner/white{
+ dir = 8
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/n20,
+/area/engineering/Atmospherics_Chamber)
+"fwV" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoS_Quarters)
+"fxc" = (
+/turf/simulated/wall/r_wall,
+/area/thirddeck/roof)
+"fxQ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"fyl" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/effect/step_trigger/teleporter/randomspawn{
+ teleport_x = 131;
+ teleport_z = 8;
+ teleport_y = 174
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"fyA" = (
+/obj/structure/lattice,
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/window/basic,
+/turf/simulated/open,
+/area/maintenance/cetus/threeap)
+"fzh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "conferencetint"
+ },
+/turf/simulated/floor/plating,
+/area/bridge/Conference_Room)
+"fzL" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/vault/bolted{
+ name = "AI core";
+ req_access = list(16);
+ req_one_access = list(16)
+ },
+/obj/machinery/door/blast/regular{
+ id = "AICore";
+ name = "AI core maintenance hatch"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"fzM" = (
+/obj/structure/table/woodentable,
+/obj/fiftyspawner/cardboard,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"fAf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Backstage";
+ req_one_access = list(72)
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/theater)
+"fAx" = (
+/obj/structure/ladder,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/flooded)
+"fAz" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"fAG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"fAJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/loot_pile/maint/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"fAT" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"fBi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"fBA" = (
+/obj/machinery/atmospherics/pipe/cap/visible{
+ color = "#00ff00";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"fBR" = (
+/obj/effect/floor_decal/corner/black{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/mime)
+"fCc" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"fCA" = (
+/obj/structure/bed/roller/massage,
+/turf/simulated/floor/boxing,
+/area/maintenance/cetus/shallow/quack)
+"fCW" = (
+/obj/machinery/telecomms/processor/preset_three,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"fDa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/telecomms/broadcaster/preset_right,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"fDu" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"fDy" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"fDR" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"fFC" = (
+/obj/structure/cable/cyan{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"fFQ" = (
+/turf/simulated/mineral/cetus/edge,
+/area/maintenance/disposal)
+"fFY" = (
+/turf/simulated/floor/carpet/tealcarpet,
+/area/bridge/sleep/CMO_Quarters)
+"fGi" = (
+/obj/structure/salvageable/console_os{
+ pixel_x = 9
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"fGp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"fHp" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"fHw" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Secretary_Quarters)
+"fHB" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/engine)
+"fHU" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"fHX" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"fIC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics Monitoring Room";
+ req_access = list(24)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/Atmospherics_Control_Room)
+"fJg" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/obj/machinery/camera/xray/command{
+ c_tag = "AI - Secondary Core"
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "ainanitetwo"
+ },
+/area/ai)
+"fJj" = (
+/obj/machinery/button/remote/airlock{
+ id = "vaultdoorbolt";
+ name = "Vault Bolts";
+ pixel_y = 7;
+ specialfunctions = 4;
+ dir = 8;
+ req_one_access = list(1,19);
+ pixel_x = 28
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"fKg" = (
+/turf/simulated/wall/r_wall,
+/area/tcomm/tcomstorage)
+"fKl" = (
+/obj/random/obstruction,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"fKr" = (
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/starboard)
+"fKu" = (
+/obj/structure/table/standard,
+/obj/item/t_scanner,
+/obj/item/radio/headset/headset_eng,
+/obj/item/cartridge/atmos,
+/obj/item/cartridge/atmos,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/pipe_painter,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"fKX" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/eva)
+"fLk" = (
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"fLA" = (
+/obj/effect/floor_decal/rust,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/flooded)
+"fLL" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"fMd" = (
+/obj/machinery/telecomms/bus/preset_one,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"fMB" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"fMF" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "gamba";
+ name = "Exit";
+ pixel_y = -27
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"fMJ" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/turfpack,
+/area/crew_quarters/cetus/escapepodjr)
+"fMK" = (
+/obj/machinery/door/airlock{
+ name = "Bathroom"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Captain_Quarters)
+"fNf" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/disposal,
+/turf/simulated/floor/tiled,
+/area/bridge/Deck3_Corridor)
+"fNm" = (
+/obj/random/maintenance/medical,
+/turf/simulated/floor/tiled/old_tile/blue,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"fNu" = (
+/obj/structure/bed/chair/bay/chair/padded/red/bignest,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/bridge/sleep/Secretary_Quarters)
+"fNC" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"fNF" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"fOf" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"fOg" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"fOj" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/badsnuggles)
+"fOk" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"fOJ" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"fOZ" = (
+/turf/simulated/open,
+/area/crew_quarters/cetus/Libraryf2)
+"fPj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodaft)
+"fPn" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"fPP" = (
+/turf/simulated/floor/boxing/gym,
+/area/maintenance/cetus/shallow/bodyguard)
+"fQk" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"fQC" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/escape_pod2/station)
+"fSn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"fSU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ai)
+"fTc" = (
+/obj/random/vendorfood{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/quartermaster/storage)
+"fTk" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/open,
+/area/engineering/Atmospherics_Chamber)
+"fTw" = (
+/turf/simulated/shuttle/wall/hard_corner,
+/area/shuttle/large_escape_pod1/centcom)
+"fTI" = (
+/obj/random/pottedplant,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Command Pod Lounge";
+ dir = 6
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"fTR" = (
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(47, 5)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"fUs" = (
+/obj/structure/table/bench/wooden,
+/obj/item/book/codex/lore/news,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"fUx" = (
+/obj/structure/smolebuilding/warehouses,
+/turf/simulated/floor/smole,
+/area/maintenance/cetus/d3docks)
+"fUH" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/obj/machinery/disposal,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"fUS" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"fVG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"fVV" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"fWp" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"fWt" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/storage)
+"fWO" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/shallow/ap)
+"fWR" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/escapepodjr)
+"fXk" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"fXq" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"fXr" = (
+/obj/random/pottedplant,
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/law)
+"fXB" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/bridge/sleep/Secretary_Quarters)
+"fXN" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"fXW" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"fYb" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"fYD" = (
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 9
+ },
+/obj/machinery/meter,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"fYS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"fYW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/tiled/old_tile/blue,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"fZv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ id_tag = "hosquarters";
+ name = "Head of Security Quarters";
+ req_access = list(58)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge/sleep/HoS_Quarters)
+"fZX" = (
+/obj/machinery/power/solar{
+ id = "jointresearchsolar";
+ name = "Joint Research Solar Array"
+ },
+/obj/structure/cable/yellow,
+/turf/simulated/floor/plating/turfpack/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/cetus/joint)
+"gay" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"gaR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CMO_Quarters)
+"gbf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"gbY" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"gbZ" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_lead,
+/area/rnd/research/particleaccelerator)
+"gcP" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1441;
+ id = "o2_in";
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/engineering/Atmospherics_Chamber)
+"gcT" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"gcV" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"gdp" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/bench/standard,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"gdI" = (
+/obj/structure/barricade/cutout/monky,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"gdK" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1381;
+ id_tag = "server_access_pump";
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ frequency = 1381;
+ id_tag = "server_access_sensor";
+ dir = 4;
+ pixel_x = -26
+ },
+/turf/simulated/floor/plating,
+/area/tcomm/computer)
+"gek" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"gez" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"geU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1381;
+ id_tag = "server_access_pump"
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/tcomm/computer)
+"geY" = (
+/obj/structure/salvageable/machine_os{
+ pixel_x = 3
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"gfh" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"gfA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating,
+/area/tcomm/tcomstorage)
+"gfD" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/carpet/gaycarpet,
+/area/crew_quarters/cetus/clown)
+"ggV" = (
+/obj/structure/cable/cyan{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/tcomm/computer)
+"ghI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"gid" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"giB" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/RD_Quarters)
+"giG" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"giL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ai)
+"gjh" = (
+/obj/structure/table/woodentable,
+/obj/item/paper_bin,
+/obj/item/pen/fountain5{
+ pixel_y = 6;
+ pixel_x = 3
+ },
+/obj/item/pen/fountain4{
+ pixel_y = 4
+ },
+/obj/item/pen/fountain6{
+ pixel_y = 2;
+ pixel_x = -2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"gjo" = (
+/obj/structure/table/reinforced,
+/obj/structure/fireaxecabinet/empty{
+ pixel_y = -28
+ },
+/obj/random/forgotten_tram,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"gjw" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "maintnanites"
+ },
+/area/maintenance/cetus/nanites)
+"gjx" = (
+/obj/item/stool/padded{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/bodyguard)
+"gjY" = (
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/shuttle/floor/purple,
+/area/shuttle/large_escape_pod1/centcom)
+"gki" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-10"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"glf" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/starboard)
+"gli" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/Atmospherics_Chamber)
+"glk" = (
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/bridge/sleep/RD_Quarters)
+"glu" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"gly" = (
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -25;
+ pixel_y = 11
+ },
+/obj/structure/table/bench/standard,
+/obj/structure/flora/pottedplant/dead{
+ pixel_y = 11
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"gmk" = (
+/obj/structure/railing,
+/turf/simulated/open,
+/area/engineering/Atmospherics_Control_Room)
+"gmy" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -3
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"gmY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"gnb" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"gnh" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"gnv" = (
+/turf/simulated/wall,
+/area/hallway/primary/firstdeck/vaultlobby)
+"gny" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"gnO" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/backstage)
+"gnR" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/escapepodfore)
+"gnS" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/jrthreestar)
+"goj" = (
+/obj/item/stool/baystool{
+ dir = 1;
+ pixel_y = 12
+ },
+/obj/effect/landmark/start/clown,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/gaycarpet,
+/area/crew_quarters/cetus/clown)
+"gop" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"gov" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"goF" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"gpp" = (
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Captain_Quarters)
+"gpw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/lattice,
+/obj/structure/ladder,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefs)
+"gpY" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"gqb" = (
+/obj/structure/sign/directions/teleporter{
+ dir = 9
+ },
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"gqS" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/bodyguard)
+"grc" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"grn" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"grE" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"grU" = (
+/obj/structure/closet/crate,
+/obj/item/storage/belt/champion,
+/obj/item/stack/material/gold{
+ amount = 6
+ },
+/obj/item/stack/material/silver{
+ amount = 6
+ },
+/obj/item/instrument/violin/golden,
+/obj/item/coin/silver{
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/item/coin/silver{
+ pixel_x = 12;
+ pixel_y = 7
+ },
+/obj/item/coin/silver{
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/obj/item/coin/silver{
+ pixel_x = 5;
+ pixel_y = -8
+ },
+/obj/item/coin/silver{
+ pixel_x = 7;
+ pixel_y = 12
+ },
+/obj/item/coin/gold,
+/obj/item/coin/gold,
+/obj/item/coin/gold,
+/obj/item/coin/gold,
+/obj/item/coin/gold,
+/obj/item/coin/gold,
+/obj/item/coin/gold,
+/obj/item/coin/gold,
+/obj/item/coin/gold,
+/obj/item/coin/gold,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"grW" = (
+/obj/structure/cable/yellow,
+/obj/machinery/power/solar{
+ id = "forestarboardsolar";
+ name = "Fore-Starboard Solar Array"
+ },
+/turf/simulated/floor/plating/turfpack/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/forestarboardsolar)
+"grY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/maintenance/cetus/shallow/quack)
+"gsh" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/carpet/retro_red,
+/area/bridge/sleep/HoS_Quarters)
+"gsX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "8-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"gtn" = (
+/obj/structure/barricade/cutout/servant,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"gue" = (
+/turf/simulated/mineral/cetus,
+/area/bridge/sleep/Captain_Quarters)
+"guC" = (
+/obj/structure/bed/chair/bay/comfy/red{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"guR" = (
+/obj/machinery/light{
+ layer = 3
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"gwc" = (
+/obj/structure/railing/overhang/grey{
+ color = "#917448";
+ dir = 8;
+ name = "box";
+ desc = "The edge of a box. Despite looking like cardboard, it feels like it's made of steel"
+ },
+/obj/item/cat_box/black,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"gwd" = (
+/obj/random/trash,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreeport)
+"gws" = (
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/shuttle/floor/purple,
+/area/shuttle/large_escape_pod1/centcom)
+"gwt" = (
+/turf/simulated/floor/boxing/gym,
+/area/maintenance/cetus/jrthreestar)
+"gwD" = (
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"gwQ" = (
+/obj/machinery/atmospherics/pipe/tank/oxygen{
+ start_pressure = 15000
+ },
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"gxk" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/detective)
+"gxz" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"gxB" = (
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/smes/buildable/max_charge_max_input{
+ RCon_tag = "Solar - Fore Starboard"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForStar)
+"gxH" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/atrium/primary)
+"gxV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"gxW" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/threeas)
+"gyh" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "maintnanites"
+ },
+/area/maintenance/cetus/nanites)
+"gyw" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"gyF" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload)
+"gyT" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/CE_Quarters)
+"gzc" = (
+/turf/simulated/floor/reinforced/n20,
+/area/engineering/Atmospherics_Chamber)
+"gzg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/purple,
+/area/shuttle/large_escape_pod1/centcom)
+"gzF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"gAn" = (
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"gAA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"gAK" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "d3_near_sw";
+ name = "Near Cetus - Deck 3 South West"
+ },
+/turf/space,
+/area/space)
+"gAL" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"gBq" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"gBV" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"gBX" = (
+/obj/structure/table/steel,
+/obj/item/pizzabox/old,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"gCA" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"gCF" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/threeas)
+"gCJ" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForPort)
+"gDm" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ id_tag = "escape_pod_4_berth_hatch";
+ name = "Escape Pod 4";
+ req_one_access = null
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"gDs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"gDE" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"gDF" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/bridge/sleep/RD_Quarters)
+"gET" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 250;
+ internal_pressure_bound_default = 250;
+ name = "PA-Room Siphon Vent";
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"gFb" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreeport)
+"gFs" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"gFt" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"gFE" = (
+/obj/random/junk,
+/obj/machinery/light/broken{
+ dir = 8
+ },
+/obj/structure/loot_pile/maint/trash,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"gFI" = (
+/obj/random/maintenance,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"gFP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Mining Hallway";
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"gFZ" = (
+/obj/structure/bed/chair/office/light,
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"gGj" = (
+/obj/random/vendordrink,
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"gGD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"gGH" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"gHj" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/turf/simulated/floor/carpet/gaycarpet,
+/area/crew_quarters/cetus/clown)
+"gHl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"gHp" = (
+/obj/machinery/atmospherics/pipe/zpipe/down/supply,
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "32-2"
+ },
+/obj/structure/disposalpipe/down{
+ dir = 2
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/cetus/foresubstation)
+"gHT" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"gHZ" = (
+/obj/structure/bed/chair/sofa/brown,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"gIF" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "COM - Station Director's Office"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"gIS" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"gJh" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"gJq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Secretary_Quarters)
+"gJw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"gJy" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "COM - Vault Checkpoint";
+ dir = 1
+ },
+/turf/simulated/open,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"gKy" = (
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/shallow/flooded)
+"gKY" = (
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"gLc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 6
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the Particle Accelerator chamber.";
+ layer = 4;
+ name = "Particle Accelerator Chamber Telescreen";
+ network = list("PA Room");
+ pixel_x = -31
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"gLm" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"gMm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/start{
+ name = "Cyborg"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"gMp" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"gMr" = (
+/obj/structure/curtain/open{
+ name = "stage curtain";
+ color = "#701006";
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"gMJ" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"gMT" = (
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"gNe" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"gNi" = (
+/obj/random/vendordrink{
+ pixel_y = 3
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled,
+/area/bridge/Deck3_Corridor)
+"gNo" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/disposal)
+"gNN" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/shallow/gamba)
+"gNW" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"gOj" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Fore Starboard";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"gOv" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ai_monitored/aihall)
+"gOC" = (
+/obj/item/storage/secure/safe{
+ pixel_x = 5;
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Captain_Quarters)
+"gOJ" = (
+/obj/structure/railing/overhang/bronze{
+ dir = 1
+ },
+/obj/machinery/light/small/fairylights{
+ pixel_y = 15
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/theater)
+"gPS" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/pda_multicaster/prebuilt,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"gQh" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "coffeeshop";
+ layer = 3.1;
+ name = "Cafe Shutters"
+ },
+/obj/item/retail_scanner/civilian,
+/obj/machinery/light/small/fairylights{
+ pixel_y = 9
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"gQv" = (
+/obj/structure/sign/directions/bridge{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/bridge/sleep/RD_Quarters)
+"gRa" = (
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"gRn" = (
+/obj/structure/bed/pillowpile/green,
+/obj/item/toy/plushie/possum,
+/turf/unsimulated/floor/dark,
+/area/maintenance/cetus/jrthreeport)
+"gRC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Suite 3; Investigations Ampersand Esoterica"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/detective)
+"gRM" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_x = 21
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "andromeda_airlock_1";
+ req_one_access = list(13);
+ dir = 4;
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"gRS" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/airlock_sensor{
+ pixel_y = 23
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"gSg" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"gSj" = (
+/obj/machinery/cell_charger,
+/obj/structure/table/standard,
+/obj/item/multitool{
+ pixel_x = 5
+ },
+/obj/item/tool/wrench,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"gSn" = (
+/obj/machinery/door/airlock/glass{
+ name = "Escape Pod"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodaft)
+"gSN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/purple{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/research/particleaccelerator)
+"gSY" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/lattice,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/open,
+/area/ai_server_room)
+"gTb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/ai)
+"gTQ" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/r_wall,
+/area/asteroid/cetus/d3/jr)
+"gTY" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/structure/bed/pillowpile/yellow,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/lounge)
+"gVc" = (
+/obj/structure/table/standard,
+/obj/item/paper_bin,
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/bodyguard)
+"gVf" = (
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodstar)
+"gVR" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"gWc" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/maintenance/cetus/shallow/quack)
+"gWe" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"gWY" = (
+/obj/machinery/light/yellowed,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"gXc" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/cable{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"gXo" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/engineering{
+ name = "Port Solar Access";
+ req_access = list();
+ req_one_access = list(11,24)
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForPort)
+"gXz" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"gXD" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/RD_Quarters)
+"gXE" = (
+/obj/structure/table/standard,
+/obj/effect/landmark/costume/sexyclown,
+/obj/item/tvcamera{
+ channel = "Clownslop 2600";
+ name = "clown camera drone"
+ },
+/obj/item/storage/fancy/crayons{
+ pixel_x = 11;
+ pixel_y = -3
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/carpet/gaycarpet,
+/area/crew_quarters/cetus/clown)
+"gYS" = (
+/obj/machinery/power/solar_control{
+ auto_start = 2;
+ id = "foreportsolar";
+ name = "Fore Port Solar Control"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForPort)
+"gYY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"gZa" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/item/towel{
+ color = "#00FFFF";
+ name = "cyan towel";
+ pixel_x = 2;
+ pixel_y = 14
+ },
+/obj/item/towel{
+ color = "#00FFFF";
+ name = "cyan towel";
+ pixel_x = 2;
+ pixel_y = 18
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/CMO_Quarters)
+"gZi" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 4;
+ name = "Air to Supply";
+ target_pressure = 301.325
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"gZm" = (
+/obj/structure/smoletrack/roadT{
+ dir = 8
+ },
+/turf/simulated/floor/smole,
+/area/maintenance/cetus/d3docks)
+"gZo" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/paper_bin{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/item/pen/multi,
+/obj/item/storage/box/donut,
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"gZq" = (
+/obj/structure/disposalpipe/segment{
+ pixel_y = -2
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"gZw" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "Bridge Conference room";
+ sortType = "Bridge Conference room"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"gZO" = (
+/obj/machinery/computer/general_air_control{
+ frequency = 1441;
+ name = "Tank Monitor";
+ sensors = list("n2_sensor"="Nitrogen","o2_sensor"="Oxygen","co2_sensor"="Carbon Dioxide","tox_sensor"="Toxins","n2o_sensor"="Nitrous Oxide","waste_sensor"="Gas Mix Tank");
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"haF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-6"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/Galleryf2)
+"haG" = (
+/obj/structure/bed/double,
+/obj/item/bedsheet/hosdouble,
+/turf/simulated/floor/boxing/gym{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/sex)
+"haS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"hbd" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"hbx" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"hbD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"hbL" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 1
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "maintnanites"
+ },
+/area/maintenance/cetus/nanites)
+"hbT" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/engine)
+"hcj" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/random/cutout,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"hcu" = (
+/obj/random/trash,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"hcE" = (
+/obj/machinery/light/floortube/flicker,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"hcM" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"hcS" = (
+/obj/structure/table/standard,
+/obj/item/toy/plushie/dragon/gold_east{
+ pixel_y = 3
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"hdk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"heo" = (
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/firstdeck/vaultlobby)
+"heC" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"heK" = (
+/obj/structure/lattice,
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"heT" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -25
+ },
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "Joint_Solars";
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"hfC" = (
+/obj/structure/salvageable/bliss{
+ pixel_x = -7
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"hfH" = (
+/obj/structure/table/bench/padded,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/theater)
+"hgb" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Captain_Quarters)
+"hgh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Dressing Room";
+ req_one_access = list(72)
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/dressing)
+"hgp" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"hgz" = (
+/obj/structure/bed/chair/office/light,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"hgC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"hgI" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"hgT" = (
+/obj/structure/transit_tube/station{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"hhf" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ use_power = 1
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/engineering/Atmospherics_Chamber)
+"hhN" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/random/junk,
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"hiz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(25,28,37)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/Galleryf2)
+"hiC" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 19
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"hiN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"hjn" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"hjB" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/turf/simulated/floor/redgrid,
+/area/security/nuke_storage)
+"hjM" = (
+/obj/machinery/atmospherics/valve/digital/open{
+ name = "Oxygen Outlet Valve";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"hkp" = (
+/obj/structure/filingcabinet/medical{
+ desc = "A large cabinet with hard copy medical records.";
+ name = "Medical Records"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"hkL" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/obj/machinery/meter,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"hkQ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"hlt" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"hlO" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"hlR" = (
+/obj/structure/bed/pillowpile/orange,
+/obj/random/plushie,
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/unsimulated/floor/dark,
+/area/maintenance/cetus/jrthreeport)
+"hma" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ docking_controller = "andromeda_airlock_3";
+ landmark_tag = "andromeda_3";
+ name = "HIS Andromeda Dock 3 DO NOT USE";
+ use_docking_codes = 0
+ },
+/turf/space,
+/area/space)
+"hmC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ req_one_access = list(24);
+ name = "Atmospherics"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"hmD" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/detective)
+"hmF" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoP_Quarters)
+"hmL" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/turfpack,
+/area/crew_quarters/cetus/escapepodjr)
+"hnj" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf2)
+"hoo" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24;
+ pixel_y = -2
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"hpf" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/tiled,
+/area/hallway/primary/firstdeck/vaultlobby)
+"hpO" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf3)
+"hqj" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/cetus/joint)
+"hqq" = (
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"hqy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"hqH" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eva_port_inner";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"hrV" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"hse" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"hsn" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/ai)
+"hsQ" = (
+/obj/structure/table/gamblingtable,
+/obj/item/storage/fancy/cigar/choiba{
+ pixel_y = 4
+ },
+/obj/item/deck/cards{
+ pixel_y = 3;
+ pixel_x = -4
+ },
+/obj/item/deck/cards/casino{
+ pixel_y = 2;
+ pixel_x = 3
+ },
+/obj/item/storage/dicecup/loaded{
+ pixel_y = 14;
+ pixel_x = 6
+ },
+/obj/item/capture_crystal,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"hth" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"htm" = (
+/obj/machinery/vending/coffee{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"hty" = (
+/obj/effect/floor_decal/corner/black{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black,
+/obj/structure/table/standard,
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 24;
+ pixel_x = 10
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 24;
+ pixel_x = -10
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 28;
+ pixel_x = 4
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 28;
+ pixel_x = -4
+ },
+/obj/item/clothing/mask/gas/mime,
+/obj/item/tvcamera{
+ channel = "J'aimerais Pouvoir Crier";
+ name = "mime camera drone";
+ pixel_y = -2;
+ pixel_x = -14
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/mime)
+"htM" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"huH" = (
+/turf/simulated/wall/r_wall,
+/area/hallway/primary/firstdeck/vaultlobby)
+"huP" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/badsnuggles)
+"huR" = (
+/obj/machinery/light/small/emergency,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ai_monitored/aihall)
+"huY" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/random/trash,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"hvv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf3)
+"hvS" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"hwv" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ai)
+"hwy" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"hwz" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"hxq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common{
+ name = "Kitchen"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"hxF" = (
+/obj/structure/salvageable/server_os{
+ pixel_x = 6
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"hxV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"hya" = (
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/aihall)
+"hyo" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"hyY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"hzz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"hzA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CE_Quarters)
+"hzE" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"hzH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"hzK" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"hzT" = (
+/obj/machinery/computer/general_air_control/large_tank_control{
+ input_tag = "o2_in";
+ name = "Oxygen Supply Control";
+ output_tag = "o2_out";
+ sensors = list("o2_sensor"="Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"hAe" = (
+/obj/machinery/suit_storage_unit/mining,
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/eva)
+"hAw" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"hAX" = (
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/badsnuggles)
+"hBE" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"hCr" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/structure/cable/cyan{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"hDu" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/barricade/cutout,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"hEq" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"hFh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"hFo" = (
+/obj/random/maintenance/clean,
+/obj/structure/table/steel,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"hFM" = (
+/obj/structure/bed/pod{
+ pixel_y = 14
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"hFR" = (
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"hGt" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/foreportsolar)
+"hGv" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "Kitchen";
+ sortType = "Kitchen"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"hGE" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"hGG" = (
+/obj/structure/table/woodentable,
+/obj/item/paper_bin,
+/obj/item/folder/blue_hop,
+/obj/item/pen/multi,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 32
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoP_Quarters)
+"hHa" = (
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"hHF" = (
+/obj/machinery/computer/aiupload,
+/turf/simulated/floor/bluegrid,
+/area/ai_upload)
+"hIo" = (
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"hIw" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"hJd" = (
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/thirddeck/roof)
+"hJE" = (
+/obj/structure/cable{
+ icon_state = "5-9"
+ },
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Aft Solar Access";
+ req_access = list();
+ req_one_access = list(11,24)
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftPort)
+"hKa" = (
+/obj/structure/table/standard,
+/obj/item/clothing/gloves/black,
+/obj/item/clothing/gloves/black,
+/obj/item/storage/belt/utility/atmostech,
+/obj/item/storage/belt/utility/atmostech,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/steel,
+/obj/item/clothing/head/welding{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"hKb" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable/max_charge_max_input{
+ RCon_tag = "Solar - Fore Port"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForPort)
+"hKd" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"hKF" = (
+/obj/random/vendordrink{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"hLd" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/boxing/gym{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/sex)
+"hLx" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"hLN" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/storage)
+"hMa" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"hMq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"hMu" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/engine)
+"hML" = (
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/maintenance/cetus/shallow/gamba)
+"hNj" = (
+/obj/random/maintenance,
+/obj/structure/loot_pile/maint/trash,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"hNo" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/auxsupport)
+"hNI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/HoP_Quarters)
+"hOe" = (
+/obj/structure/loot_pile/maint/trash,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"hOo" = (
+/obj/structure/bed/pillowpile/black,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"hOt" = (
+/obj/item/modular_computer/console/preset/engineering,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/bridge)
+"hOD" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/quartermaster/mininglockerroom)
+"hOG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"hOU" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"hPq" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"hPv" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"hPw" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/rnd/cetus/entry)
+"hPx" = (
+/obj/structure/table/steel,
+/obj/item/storage/dicecup,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"hPK" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/Galleryf2)
+"hQj" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"hQG" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-10"
+ },
+/obj/item/binoculars,
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"hQS" = (
+/obj/structure/table/bench/standard,
+/obj/machinery/light,
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"hRu" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"hRN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/heads/sc/restroom)
+"hRR" = (
+/obj/structure/lattice,
+/obj/machinery/shield_diffuser,
+/turf/space,
+/area/space)
+"hRS" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"hRU" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/HoS_Quarters)
+"hSt" = (
+/obj/random/junk,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"hSJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/tracker,
+/turf/simulated/floor/airless,
+/area/solar/forestarboardsolar)
+"hSV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"hTd" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodaft)
+"hTp" = (
+/obj/machinery/vending/nifsoft_shop,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/status_display{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"hTq" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_y = -11;
+ pixel_x = -26;
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/random/pottedplant,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - JR Pod Lounge";
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/escapepodjr)
+"hTO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"hTP" = (
+/obj/machinery/camera/network/command{
+ c_tag = "AI - Upload Foyer";
+ dir = 9
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"hUc" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/catwalk,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/open,
+/area/engineering/Atmospherics_Chamber)
+"hUj" = (
+/obj/machinery/light,
+/obj/structure/closet/medical_wall{
+ pixel_y = -31
+ },
+/obj/item/roller,
+/obj/item/bodybag/cryobag,
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/pill_bottle/spaceacillin,
+/obj/structure/table/bench/steel,
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/jrfirstaid)
+"hUN" = (
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "maintnanites"
+ },
+/area/maintenance/cetus/nanites)
+"hUS" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"hUV" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/structure/closet/firecloset/full/atmos,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"hVE" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/heads/sc/sd)
+"hVG" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"hVI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"hVM" = (
+/obj/machinery/door/blast/radproof/open{
+ id = "PAShroud";
+ name = "Particle Accelerator Shroud"
+ },
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"hVN" = (
+/obj/random/obstruction,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"hWb" = (
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(72);
+ name = "Villains"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"hWp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/random/junk,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"hWy" = (
+/obj/structure/bed/chair/comfy/purp{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"hWK" = (
+/obj/effect/floor_decal/corner/black/full{
+ dir = 8
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/carbon_dioxide,
+/area/engineering/Atmospherics_Chamber)
+"hXw" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/table/bench/wooden,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 3
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/bridge/sleep/RD_Quarters)
+"hXO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"hYo" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = -5
+ },
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodaft)
+"hYp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/Atmospherics_Chamber)
+"hYt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"hYC" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"hYG" = (
+/turf/simulated/mineral/cetus,
+/area/bridge/sleep/Secretary_Quarters)
+"hYI" = (
+/obj/random/drinkbottle,
+/obj/random/trash,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/badsnuggles)
+"hYW" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/machinery/power/smes/buildable{
+ RCon_tag = "AI - Entry Hall"
+ },
+/obj/structure/cable/cyan,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/aihall)
+"hZi" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"hZy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ name = "Station Director's Office";
+ req_access = list(20)
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"hZB" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"hZF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"iao" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"iba" = (
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"ibi" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"ibI" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"ibJ" = (
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -37
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/medical/cetus/jrfirstaid)
+"ick" = (
+/obj/effect/landmark/start{
+ name = "Barista"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"icT" = (
+/obj/structure/table/standard,
+/obj/item/aiModule/nanotrasen,
+/obj/item/aiModule/reset{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_upload)
+"icU" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"idn" = (
+/obj/structure/micro_tunnel/magic{
+ dir = 1;
+ name = "Dark Spot";
+ desc = "A tiny little hole... It twists in directions you can't quite wrap your head around."
+ },
+/turf/unsimulated/floor/dark,
+/area/maintenance/cetus/jrthreeport)
+"idD" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"idF" = (
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"idQ" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"ien" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"ieD" = (
+/obj/machinery/blackbox_recorder,
+/turf/simulated/floor/bluegrid,
+/area/ai_server_room)
+"ieU" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"ieY" = (
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"ifh" = (
+/turf/simulated/mineral/cetus/edge,
+/area/asteroid/cetus/d3)
+"ifx" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"igm" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"igq" = (
+/turf/simulated/wall/r_wall,
+/area/medical/cetus/jrfirstaid)
+"igz" = (
+/turf/simulated/floor/carpet/brown,
+/area/maintenance/cetus/shallow/law)
+"igO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 9
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"igR" = (
+/obj/structure/bed/chair/shuttle_padded,
+/turf/simulated/shuttle/floor,
+/area/shuttle/large_escape_pod1/centcom)
+"ihi" = (
+/turf/simulated/mineral/cetus/edge,
+/area/maintenance/cetus/threefs)
+"ihE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"iil" = (
+/obj/machinery/cryopod/robot/door/gateway/quiet,
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/turf/simulated/floor/redgrid,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"iiq" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"ijb" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"ije" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threeap)
+"ijr" = (
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/smes/buildable/max_charge_max_input{
+ RCon_tag = "Solar - Asteroid"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"ijB" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"ikd" = (
+/obj/item/stack/material/cardboard,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"ikF" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/foreportsolar)
+"ikT" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Control_Room)
+"ilJ" = (
+/obj/random/junk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"ilK" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreeport)
+"ilW" = (
+/obj/structure/sign/directions/ai_core,
+/turf/simulated/wall/r_wall,
+/area/ai)
+"imH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "AI - Outer Core 2";
+ dir = 10
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/plating,
+/area/ai)
+"inF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Reactor Room"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/engine)
+"inO" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"inQ" = (
+/turf/simulated/wall,
+/area/bridge/secretaryoffice)
+"iob" = (
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"ioz" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled,
+/area/bridge/Deck3_Corridor)
+"ipk" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"ipt" = (
+/turf/simulated/wall/r_wall,
+/area/asteroid/cetus/d3/jr)
+"ipN" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/shallow/flooded)
+"iqF" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"iqP" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"iqX" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Secretary_Quarters)
+"irp" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/space,
+/area/space)
+"irt" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/shallow/ap)
+"irz" = (
+/obj/effect/floor_decal/rust,
+/obj/random/plushielarge,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"irA" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"irF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/command{
+ req_one_access = list(18);
+ name = "EVA"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/eva)
+"irU" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"itm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Joint Research Substation";
+ req_one_access = list(11, 24, 47, 5)
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"its" = (
+/obj/random/trash,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"itv" = (
+/obj/item/a_gift/advanced{
+ pixel_y = 7
+ },
+/obj/structure/table/darkglass,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"itJ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"itO" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/law)
+"itV" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/light/spot{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"iuk" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"ivb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"ivg" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/foresubstation)
+"ivj" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/aihall)
+"ivu" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -37
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"ivy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"ivQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/railing/grey,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"iww" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/greengrid,
+/area/ai)
+"iwJ" = (
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/maintenance/cetus/arcade)
+"ixJ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"ixK" = (
+/obj/structure/outcrop/platinum,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/asteroid/cetus/d3)
+"ixP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"iyF" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"iyU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"iyY" = (
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"izH" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreeport)
+"iAx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"iAG" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"iAI" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/carpet/brown,
+/area/maintenance/cetus/shallow/law)
+"iAL" = (
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = 26
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"iCI" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"iCX" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"iDi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"iDF" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"iDM" = (
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/obj/machinery/telecomms/relay/preset/southerncross/d1,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"iEh" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "Fore_Solars";
+ dir = 8;
+ pixel_x = 21
+ },
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForStar)
+"iEj" = (
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "Atmospherics";
+ sortType = "Atmospherics"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"iEl" = (
+/obj/machinery/atmospherics/valve/shutoff{
+ dir = 4;
+ name = "Atmospherics to Distro automatic shutoff valve"
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Fore";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"iEM" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"iFf" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"iFS" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"iFY" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"iGx" = (
+/obj/structure/sign/directions/science{
+ pixel_y = -11;
+ name = "Joint Research Public Entry";
+ dir = 8
+ },
+/turf/simulated/wall,
+/area/crew_quarters/cetus/Galleryf2)
+"iGI" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"iGK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"iGO" = (
+/obj/machinery/pointdefense{
+ id_tag = "PD Main"
+ },
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/thirddeck/roof)
+"iGW" = (
+/obj/structure/sign/warning/compressed_gas{
+ pixel_y = -31
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"iGZ" = (
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/obj/machinery/camera/xray/command{
+ c_tag = "AI - Tertiary Core"
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "ainanitethree"
+ },
+/area/ai)
+"iHa" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"iHb" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/shallow/fp)
+"iHT" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"iIM" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ id_tag = "escape_pod_3_berth_hatch";
+ name = "Escape Pod 3";
+ req_one_access = null
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/escapepodstar)
+"iJm" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"iJz" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"iJU" = (
+/obj/random/junk,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"iJZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"iKg" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"iKj" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/bridge/sleep/CE_Quarters)
+"iKN" = (
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"iKP" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/lime/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"iKY" = (
+/obj/item/implanter/compliance,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/badsnuggles)
+"iKZ" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"iLd" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/foreportsolar)
+"iLg" = (
+/obj/random/junk,
+/obj/random/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"iLj" = (
+/obj/machinery/telecomms/server/presets/science,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"iLt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"iLA" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/cetus/jointsubstation)
+"iMA" = (
+/obj/machinery/light/yellowed,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"iNl" = (
+/obj/structure/bed/chair/comfy/yellow{
+ dir = 4
+ },
+/obj/machinery/button/remote/airlock{
+ id = "cequarters";
+ name = "Bolt Control";
+ pixel_y = 30;
+ req_access = list(56);
+ specialfunctions = 4;
+ pixel_x = -7
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = 5;
+ pixel_y = 30
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CE_Quarters)
+"iNG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing/overhang/grey{
+ color = "#917448";
+ dir = 1;
+ name = "box";
+ desc = "The edge of a box. Despite looking like cardboard, it feels like it's made of steel"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"iOf" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"iOn" = (
+/obj/machinery/atmospherics/pipe/zpipe/down/supply,
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "32-8"
+ },
+/obj/structure/disposalpipe/down,
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"iOq" = (
+/obj/machinery/computer/telecomms/monitor{
+ dir = 4;
+ network = "tcommsat"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/bluegrid,
+/area/tcomm/computer)
+"iOx" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge/Deck3_Corridor)
+"iOy" = (
+/obj/machinery/camera/network/command{
+ c_tag = "AI - Outer Core 1"
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/ai)
+"iOS" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/carpet/oracarpet,
+/area/bridge/sleep/CE_Quarters)
+"iOT" = (
+/obj/machinery/message_server,
+/turf/simulated/floor/bluegrid,
+/area/ai_server_room)
+"iPh" = (
+/obj/random/trash_pile,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"iPl" = (
+/obj/machinery/computer/secure_data{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"iPo" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/random/cutout,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"iPv" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"iPK" = (
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/aihall)
+"iQi" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"iRe" = (
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"iSp" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"iSq" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"iSM" = (
+/obj/structure/loot_pile/maint/trash,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"iSR" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"iSY" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/engineering{
+ name = "Starboard Solar Access";
+ req_access = list();
+ req_one_access = list(11,24)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftStar)
+"iTw" = (
+/obj/machinery/porta_turret/ai_defense{
+ req_one_access = list(16)
+ },
+/obj/machinery/camera/xray/command{
+ c_tag = "AI - Upload";
+ dir = 10
+ },
+/turf/simulated/floor/redgrid,
+/area/ai_upload)
+"iUv" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/quartermaster/storage)
+"iUw" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/item/towel{
+ color = "#FF8C00";
+ name = "orange towel";
+ pixel_x = -2;
+ pixel_y = 13
+ },
+/obj/item/towel{
+ color = "#FF8C00";
+ name = "orange towel";
+ pixel_x = -2;
+ pixel_y = 16
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/CE_Quarters)
+"iUO" = (
+/obj/machinery/vending/loadout/accessory,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/sex)
+"iUQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CMO_Quarters)
+"iUU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/Atmospherics_Chamber)
+"iUY" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"iVi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"iVn" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"iVq" = (
+/turf/simulated/floor/carpet/oracarpet,
+/area/bridge/sleep/CE_Quarters)
+"iVr" = (
+/obj/effect/floor_decal/rust,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"iVB" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/turfpack,
+/area/crew_quarters/cetus/escapepodjr)
+"iVL" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/greengrid,
+/area/ai)
+"iVU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"iWv" = (
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"iWC" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/bed/chair/bay/chair,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"iWN" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/mininglockerroom)
+"iWR" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/research/particleaccelerator)
+"iYE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"iYL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"iZo" = (
+/obj/machinery/body_scanconsole,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/obj/item/radio/intercom/department/medbay{
+ dir = 1;
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/cetus/jrfirstaid)
+"iZA" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"iZB" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"iZO" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/escapepodjr)
+"iZP" = (
+/obj/machinery/atmospherics/binary/pump{
+ name = "O2 to Connector";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"iZQ" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/light/floortube{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"jac" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Joint Research Public Access"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"jaj" = (
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodaft)
+"jak" = (
+/obj/random/pottedplant,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"jar" = (
+/obj/structure/bed/double,
+/obj/item/bedsheet/captaindouble,
+/obj/effect/landmark/start/captain,
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Captain_Quarters)
+"jau" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"jaX" = (
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "maintnanites"
+ },
+/area/maintenance/cetus/nanites)
+"jaY" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_east = 1;
+ tag_north = 3;
+ tag_west = 2
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"jbe" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sortjunction/flipped{
+ dir = 8;
+ name = "Resleevers";
+ sortType = "Resleevers"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"jbm" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/engine)
+"jbL" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"jbX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"jcf" = (
+/obj/structure/waterfall/top,
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/flooded)
+"jcp" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"jdd" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"jdV" = (
+/obj/machinery/papershredder,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/detective)
+"jew" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"jeF" = (
+/obj/effect/floor_decal/industrial/warning/tile,
+/obj/effect/floor_decal/industrial/warning/color/tile/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"jeR" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"jfb" = (
+/obj/structure/dispenser,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"jfB" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/engineering{
+ name = "Fore Solar Access";
+ req_access = list();
+ req_one_access = list(11,24)
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForStar)
+"jfN" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"jfQ" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/shallow/gamba)
+"jgj" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/sleep/Captain_Quarters)
+"jhk" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"jho" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"jhr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/aihall)
+"jhv" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/structure/curtain/bed{
+ name = "stage curtain";
+ anchored = 1;
+ color = "#701006"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"jhJ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"jhS" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/structure/table/rack,
+/obj/random/medical/lite,
+/obj/random/medical/lite,
+/obj/item/storage/toolbox/emergency,
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = -35;
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24;
+ pixel_x = 26
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/jrfirstaid)
+"jhU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/jrfirstaid)
+"jiP" = (
+/obj/structure/cable/cyan{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"jiZ" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"jjz" = (
+/turf/simulated/open,
+/area/maintenance/cetus/jrthreeport)
+"jkg" = (
+/obj/machinery/atmospherics/valve/digital/open{
+ name = "Nitrogen Outlet Valve";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"jkt" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Captain_Quarters)
+"jku" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"jkx" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -8
+ },
+/obj/structure/mirror{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"jlk" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/ai_slipper,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"jlP" = (
+/obj/structure/bed/chair/wood,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"jlZ" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/jrthreeport)
+"jmr" = (
+/obj/structure/bed/chair,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"jmv" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/solar/forestarboardsolar)
+"jnd" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - JR Pod Hall";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/turfpack,
+/area/crew_quarters/cetus/escapepodjr)
+"jnk" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"jnt" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"jnw" = (
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "maintnanites"
+ },
+/area/maintenance/cetus/nanites)
+"jnC" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"jnM" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"jnT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"joa" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod 2 Hatch"
+ },
+/obj/effect/map_helper/airlock/door/simple,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod2/station)
+"jol" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"joo" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/heads/sc/sd)
+"joq" = (
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/structure/table/standard,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"jos" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"jow" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"joL" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/ladder,
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"joQ" = (
+/obj/structure/table/standard,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"joW" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"jpL" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"jqb" = (
+/obj/structure/railing/overhang/bronze{
+ dir = 8
+ },
+/obj/structure/dummystairs/bronzeledge{
+ dir = 1
+ },
+/obj/structure/railing/overhang/bronze{
+ dir = 4
+ },
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/threeas)
+"jqd" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"jqM" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/bodyguard)
+"jrk" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"jrs" = (
+/obj/machinery/porta_turret/stationary,
+/turf/simulated/floor/redgrid,
+/area/tcomm/computer)
+"jsD" = (
+/turf/simulated/wall,
+/area/quartermaster/storage)
+"jte" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftstarboardsolar)
+"jtj" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoP_Quarters)
+"jtv" = (
+/obj/machinery/deployable/barrier,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"jtA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"jtM" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"juG" = (
+/obj/structure/cliff/automatic/corner{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/boxing{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/jrthreestar)
+"juI" = (
+/obj/item/bedsheet/pillow/green,
+/obj/structure/bed/pillowpilefront/green,
+/obj/random/plushie,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"juT" = (
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftPort)
+"jve" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"jvB" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 5
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"jvV" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"jvX" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/storage/box/donut{
+ pixel_x = 3;
+ pixel_y = 11
+ },
+/obj/item/storage/box/donut{
+ pixel_x = 3;
+ pixel_y = -1
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "coffeeshop";
+ layer = 3.1;
+ name = "Cafe Shutters"
+ },
+/obj/machinery/light/small/fairylights{
+ pixel_y = 10
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"jwp" = (
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "nanitehall"
+ },
+/area/ai_monitored/aihall)
+"jwB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"jxa" = (
+/obj/structure/railing/grey,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threeas)
+"jxn" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/foreportsolar)
+"jxX" = (
+/obj/structure/table/reinforced,
+/obj/item/aicard,
+/obj/item/storage/box/PDAs{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/ids,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge)
+"jyb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass{
+ name = "Joint Research";
+ req_one_access = list(47, 5)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/cetus/stairwelljr3)
+"jyo" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/tracker,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/foreportsolar)
+"jyF" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"jzT" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"jAt" = (
+/obj/structure/bed/chair/sofa/right/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Secretary_Quarters)
+"jAy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"jAR" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/quartermaster/storage)
+"jBL" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"jBU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/yellow/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"jBZ" = (
+/obj/structure/table/standard,
+/obj/random/contraband,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"jCi" = (
+/obj/machinery/atmospherics/pipe/zpipe/down/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "32-8"
+ },
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/cetus/jointsubstation)
+"jDe" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"jDj" = (
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"jDl" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"jDp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/random/junk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"jDs" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"jDE" = (
+/obj/machinery/door/airlock{
+ name = "Shower"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"jDO" = (
+/obj/structure/cable/cyan{
+ icon_state = "2-5"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"jEa" = (
+/obj/structure/bed/chair/bay/comfy/brown,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"jEH" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/foreportsolar)
+"jEK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"jER" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"jEX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"jFa" = (
+/obj/structure/cable/cyan{
+ icon_state = "6-10"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"jFn" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/random/junk,
+/obj/random/maintenance,
+/obj/machinery/light/broken{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"jGb" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_east = 1;
+ tag_north = 4;
+ tag_south = 2;
+ tag_west = 5
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"jGu" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"jGG" = (
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/nanites)
+"jHc" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance/cargo,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/quartermaster/storage)
+"jHs" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/turf/simulated/floor/redgrid,
+/area/security/nuke_storage)
+"jHG" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/carpet/graycarpet,
+/area/quartermaster/storage)
+"jHU" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"jHZ" = (
+/obj/structure/plasticflaps/mining,
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"jIn" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/obj/structure/lattice,
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/auxsupport)
+"jIu" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/detective)
+"jIZ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"jJg" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/clipboard,
+/obj/item/folder/white_rd,
+/obj/item/paper,
+/obj/item/pen,
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"jJv" = (
+/obj/machinery/hologram/holopad,
+/obj/structure/table/bench/padded,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/theater)
+"jKc" = (
+/obj/machinery/door/blast/regular{
+ id = "palabvent";
+ name = "PA Lab Blast Door"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"jKe" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"jKw" = (
+/obj/machinery/door/airlock{
+ name = "Cafe";
+ req_one_access = list(25,28,37)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/Galleryf2)
+"jLF" = (
+/obj/structure/table/standard,
+/obj/random/junk,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"jMe" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"jMh" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"jMK" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ id_tag = "escape_pod_2_berth_hatch";
+ name = "Escape Pod 2";
+ req_one_access = null
+ },
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/crew_quarters/cetus/escapepodaft)
+"jMU" = (
+/obj/structure/table/rack/wood,
+/obj/random/fromList/sexy_costumes,
+/obj/random/fromList/sexy_costumes,
+/obj/effect/landmark/costume/commie,
+/obj/effect/landmark/costume/chicken,
+/obj/item/tvcamera{
+ channel = "Theatrical Feed";
+ name = "theater camera drone"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/dressing)
+"jNe" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"jNs" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/random/junk,
+/obj/random/maintenance,
+/obj/random/trash,
+/obj/structure/table/standard,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"jNA" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"jNE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodstar)
+"jNV" = (
+/obj/structure/outcrop/phoron,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/shallow/fp)
+"jNW" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"jOa" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"jOq" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/random/obstruction,
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"jOC" = (
+/turf/simulated/wall/r_wall,
+/area/asteroid/cetus/d3)
+"jON" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/hopdouble,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/effect/landmark/start{
+ name = "Command Secretary"
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Secretary_Quarters)
+"jOS" = (
+/obj/random/vendordrink{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/quartermaster/storage)
+"jPj" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"jPl" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/ai_slipper,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"jPZ" = (
+/obj/structure/bed/chair/sofa/left/blue{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"jQm" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/starboard)
+"jQq" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"jQZ" = (
+/obj/item/grenade/confetti{
+ pixel_y = -3;
+ pixel_x = 6
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/grenade/confetti{
+ pixel_y = -3;
+ pixel_x = -7
+ },
+/obj/item/grenade/confetti{
+ pixel_y = -3
+ },
+/obj/item/toy/minigibber{
+ pixel_y = 15
+ },
+/obj/machinery/door/window/holowindoor{
+ name = "Prizes"
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006;
+ req_access = list(5)
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"jRE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"jRU" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"jSq" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/mime)
+"jSB" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload)
+"jSG" = (
+/turf/simulated/wall/r_wall,
+/area/ai)
+"jSM" = (
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/structure/curtain/open/shower,
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/HoP_Quarters)
+"jSP" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"jSW" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"jTy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/power/sensor{
+ long_range = 1;
+ name_tag = "Telecommunications"
+ },
+/obj/structure/cable/yellow,
+/turf/simulated/floor/plating,
+/area/tcomm/tcomstorage)
+"jUo" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"jVa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"jVb" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftstarboardsolar)
+"jVJ" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"jVZ" = (
+/obj/structure/table/steel,
+/obj/item/storage/bag/sheetsnatcher,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"jWw" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"jWB" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"jWH" = (
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/obj/machinery/ntnet_relay,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"jWY" = (
+/obj/random/vendorfood{
+ pixel_y = 3
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled,
+/area/bridge/Deck3_Corridor)
+"jYd" = (
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"jYg" = (
+/obj/structure/lattice,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"jYo" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"jYJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"jYK" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"jYM" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"jYQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"jYX" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "ATMTK - Carbon Dioxide";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black/full,
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "co2_sensor"
+ },
+/turf/simulated/floor/reinforced/carbon_dioxide,
+/area/engineering/Atmospherics_Chamber)
+"jZu" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"jZv" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Hydroponics";
+ sortType = "Hydroponics"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"jZL" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"kaf" = (
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"kas" = (
+/obj/structure/table,
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"kaW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"kbl" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"kbA" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "nanitehall"
+ },
+/area/ai_monitored/aihall)
+"kbD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "atmos_port_airlock";
+ pixel_y = 24
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"kbE" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/photocopier/faxmachine{
+ department = "Captain's Office"
+ },
+/obj/item/paper/dockingcodes{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"kbL" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"kcb" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"kcM" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"kcN" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"kcV" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"kds" = (
+/obj/structure/table/marble,
+/obj/machinery/cash_register/civilian{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/random/junk,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"kew" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threeap)
+"keB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Accomodations";
+ id_tag = "sex"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"keN" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/toilet/item,
+/obj/item/grenade/anti_photon/rubberducky/black,
+/obj/effect/step_trigger/teleporter/randomspawn{
+ teleport_z = 8;
+ teleport_x = 183;
+ teleport_y = 173
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"keW" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"kfq" = (
+/obj/machinery/light/yellowed,
+/obj/random/obstruction,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/threeap)
+"kfC" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/mining_scanner,
+/obj/item/clothing/mask/gas/explorer,
+/obj/item/clothing/suit/space/void/mining,
+/obj/item/clothing/head/helmet/space/void/mining,
+/obj/machinery/door/window/southright{
+ name = "Mining Suits";
+ req_access = list(50)
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"kgi" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftstarboardsolar)
+"kgs" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"kgA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Captain_Quarters)
+"kgO" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"khc" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/light/floortube,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"khh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cash_register/civilian{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"khw" = (
+/obj/structure/transit_tube{
+ icon_state = "D-SW"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"khz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"khM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Port Substation";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"khX" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"kio" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"kiu" = (
+/obj/structure/cable{
+ icon_state = "1-6"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"kiD" = (
+/obj/structure/table/reinforced,
+/obj/random/plushie,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"kiV" = (
+/obj/structure/table/gamblingtable,
+/obj/item/material/ashtray/glass,
+/obj/item/trash/cigbutt/cigarbutt{
+ pixel_y = 4;
+ pixel_x = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"kjb" = (
+/obj/structure/sign/directions/medical,
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"kjj" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"kjC" = (
+/obj/machinery/computer/telecomms/server{
+ dir = 4;
+ network = "tcommsat"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/airlock_sensor/airlock_exterior{
+ frequency = 1381;
+ id_tag = "server_access_ex_sensor";
+ master_tag = "server_access_airlock";
+ pixel_y = 25
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/bluegrid,
+/area/tcomm/computer)
+"kjN" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"kka" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/bridge/sleep/CE_Quarters)
+"kkb" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"kke" = (
+/obj/machinery/papershredder,
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"kkC" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"kkG" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/lights/mixed,
+/obj/item/multitool,
+/obj/item/storage/toolbox/mechanical,
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"kkT" = (
+/obj/structure/dummystairs,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"kkX" = (
+/obj/structure/bed/chair/sofa/right/brown{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"kle" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"klw" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/jrfirstaid)
+"klz" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_y = 37
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"klS" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/HoS_Quarters)
+"kmG" = (
+/obj/item/modular_computer/console/preset/command{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge)
+"kny" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"knB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"knI" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/mining_scanner,
+/obj/item/clothing/mask/gas/explorer,
+/obj/item/rig/industrial/equipped,
+/obj/machinery/door/window/southleft{
+ name = "Mining Suits";
+ req_access = list(50)
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"knU" = (
+/obj/machinery/telecomms/server/presets/security,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"knX" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"kol" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"kpn" = (
+/obj/structure/biowaste_tank,
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "garbage"
+ },
+/obj/structure/railing/grey,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"kpR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"kqd" = (
+/obj/structure/cliff/automatic{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/boxing{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/jrthreestar)
+"kqk" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/item/material/shard,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"kqO" = (
+/obj/structure/barricade/cutout/deathsquad,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threefs)
+"krn" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"krC" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/light/small/fluorescent,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/aihall)
+"krU" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/badsnuggles)
+"ksc" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"ksl" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf2)
+"ksx" = (
+/obj/machinery/atmospherics/valve{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"ksV" = (
+/turf/simulated/mineral/cetus,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"ktk" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"ktq" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"ktv" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"ktx" = (
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/keycard_auth{
+ pixel_y = 6;
+ pixel_x = -4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "bridge blast";
+ name = "Bridge Blastdoors";
+ pixel_y = 6;
+ req_access = list(19);
+ pixel_x = 6
+ },
+/obj/machinery/light_switch{
+ pixel_x = 5;
+ pixel_y = -4;
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/button/windowtint{
+ id = "bridge_center";
+ pixel_x = -4;
+ pixel_y = -3
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge)
+"ktY" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"kum" = (
+/obj/machinery/light/yellowed,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"kuG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"kvi" = (
+/obj/structure/showcase,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/sign/warning/acid{
+ name = "\improper DANGEROUS NANITES";
+ desc = "This sign warns of the dangers of AI-controlled S10-P recycling and crowd control nanite hives in the area.";
+ pixel_y = 32;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload_foyer)
+"kvJ" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/sleep/HoS_Quarters)
+"kvT" = (
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "defibrillator closet";
+ pixel_y = 31
+ },
+/obj/item/defib_kit/loaded,
+/obj/structure/bed/roller,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/jrfirstaid)
+"kvU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"kwh" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreeport)
+"kwp" = (
+/obj/structure/table/bench/steel,
+/obj/random/contraband/nofail,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"kwS" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"kxn" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"kxA" = (
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"kxO" = (
+/obj/random/pottedplant,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"kxX" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/solar/forestarboardsolar)
+"kxY" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/d3docks)
+"kyi" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"kyt" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"kyU" = (
+/obj/structure/table/bench/wooden,
+/obj/item/flashlight/lamp/clown{
+ pixel_y = 6
+ },
+/turf/simulated/floor/carpet/retro_red,
+/area/bridge/sleep/HoS_Quarters)
+"kzd" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/obj/structure/curtain/open{
+ name = "stage curtain";
+ color = "#701006";
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"kzw" = (
+/obj/structure/transit_tube,
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/auxsupport)
+"kAH" = (
+/obj/machinery/camera/motion/command{
+ dir = 1;
+ c_tag = "AI- Starboard"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"kAS" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/bridge/sleep/Captain_Quarters)
+"kBo" = (
+/obj/machinery/keycard_auth{
+ pixel_x = 30
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the Starboard Bridge Doors.";
+ id = "sbridgedoor";
+ name = "Starboard Bridge Door Control";
+ pixel_x = 29;
+ pixel_y = -9;
+ req_access = list(20);
+ dir = 8
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the captain's office.";
+ id = "captaindoor";
+ name = "Office Door Control";
+ pixel_x = 29;
+ pixel_y = 10;
+ req_access = list(20);
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"kBG" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"kBI" = (
+/obj/effect/floor_decal/asteroid,
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threeas)
+"kBO" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/black/border,
+/obj/machinery/turretid/lethal{
+ ailock = 1;
+ check_synth = 1;
+ control_area = "\improper Telecomms Control Room";
+ desc = "A firewall prevents AIs from interacting with this device.";
+ name = "Telecoms lethal turret control";
+ req_access = list(61);
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/computer)
+"kBR" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/flooded)
+"kCb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"kCh" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"kCi" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"kCk" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreeport)
+"kCo" = (
+/obj/structure/railing/grey,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload)
+"kCr" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "ATMTK - Nitrous Oxide";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/n20,
+/area/engineering/Atmospherics_Chamber)
+"kCK" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"kCL" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ai_monitored/aihall)
+"kCY" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"kDF" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 29;
+ dir = 8
+ },
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodaft)
+"kDY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoS_Quarters)
+"kEy" = (
+/obj/random/obstruction,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"kFa" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"kFc" = (
+/obj/effect/shuttle_landmark/southern_cross/large_escape_pod1/station{
+ base_area = /area/space
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/large_escape_pod1/centcom)
+"kFu" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threecp)
+"kGG" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/eva)
+"kGS" = (
+/obj/structure/table/marble,
+/obj/machinery/microwave,
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"kGV" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/arcade)
+"kHx" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"kIl" = (
+/obj/random/obstruction,
+/obj/machinery/light/broken{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"kIp" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/cable/cyan{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/super/critical{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "ainaniteone"
+ },
+/area/ai)
+"kIN" = (
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threeas)
+"kJj" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/ai_monitored/aihall)
+"kJt" = (
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"kJu" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"kJA" = (
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"kJK" = (
+/obj/structure/loot_pile/maint/boxfort,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"kJO" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/structure/sign/warning/lethal_turrets{
+ pixel_y = 32;
+ pixel_x = -32
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"kJT" = (
+/obj/structure/cable/cyan{
+ icon_state = "6-9"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"kJY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"kKq" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"kKS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/secretaryoffice)
+"kLJ" = (
+/turf/simulated/open,
+/area/rnd/cetus/entry)
+"kLV" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"kMi" = (
+/turf/simulated/open,
+/area/ai_server_room)
+"kNn" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/threefs)
+"kNw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"kOd" = (
+/obj/structure/cable/yellow,
+/obj/machinery/power/solar{
+ id = "jointresearchsolar";
+ name = "Joint Research Solar Array"
+ },
+/turf/simulated/floor/plating/turfpack/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/cetus/joint)
+"kOk" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/d3bar)
+"kOl" = (
+/obj/structure/lattice,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/theater)
+"kOz" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"kOE" = (
+/obj/structure/transit_tube{
+ icon_state = "S-NW"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"kOI" = (
+/obj/random/maintenance,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"kOQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"kPk" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/bridge/sleep/RD_Quarters)
+"kPn" = (
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"kPo" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/door_assembly,
+/obj/structure/firedoor_assembly,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"kPV" = (
+/obj/random/junk,
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating{
+ icon_state = "dmg4"
+ },
+/area/maintenance/cetus/shallow/derelict/hallway)
+"kQc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"kQp" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"kQy" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/tile,
+/obj/effect/floor_decal/industrial/warning/color/tile/red,
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"kQz" = (
+/obj/machinery/computer/operating{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"kQS" = (
+/obj/structure/sign/directions/bridge{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/bridge/sleep/CMO_Quarters)
+"kQZ" = (
+/obj/structure/table/steel,
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/obj/item/entrepreneur/spirit_board{
+ pixel_y = 3
+ },
+/obj/item/flame/candle/black{
+ pixel_y = -3
+ },
+/obj/item/flame/candle/black{
+ pixel_y = 3;
+ pixel_x = 9
+ },
+/obj/item/flame/candle/black{
+ pixel_y = 3;
+ pixel_x = -9
+ },
+/obj/item/flame/candle/black{
+ pixel_y = 10;
+ pixel_x = -4
+ },
+/obj/item/flame/candle/black{
+ pixel_y = 10;
+ pixel_x = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"kRf" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/firstdeck/vaultlobby)
+"kRJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/tracker,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftstarboardsolar)
+"kRK" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel{
+ color = "#ff0000";
+ name = "red towel";
+ pixel_y = 10
+ },
+/obj/item/towel{
+ color = "#ff0000";
+ name = "red towel";
+ pixel_y = 14
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/HoS_Quarters)
+"kRW" = (
+/obj/structure/table/woodentable,
+/obj/item/paper_bin,
+/obj/item/folder/white_cmo,
+/obj/item/pen/multi,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CMO_Quarters)
+"kSb" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"kSe" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"kSi" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/structure/curtain/bed{
+ name = "stage curtain";
+ anchored = 1;
+ color = "#701006"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"kSs" = (
+/obj/random/mob/mouse,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"kSy" = (
+/obj/structure/table/hardwoodtable,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"kSR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/methane,
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Atmospherics_Chamber)
+"kTb" = (
+/obj/structure/table/standard,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"kTf" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"kTi" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodstar)
+"kTk" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 10
+ },
+/obj/random/maintenance,
+/obj/item/clothing/head/fishing,
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"kTR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Starboard Substation";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"kTS" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"kUa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/secretaryoffice)
+"kUL" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"kVa" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"kVi" = (
+/turf/simulated/floor/tiled,
+/area/bridge)
+"kVs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"kVR" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "d3_near_se";
+ name = "Near Cetus - Deck 3 South East"
+ },
+/turf/space,
+/area/space)
+"kVV" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"kWk" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"kWH" = (
+/obj/machinery/atm{
+ pixel_y = 30
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"kYm" = (
+/obj/item/stool/baystool{
+ dir = 1;
+ pixel_y = 12
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/dressing)
+"kYo" = (
+/obj/random/obstruction,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"kYY" = (
+/obj/structure/railing/overhang/bronze{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/maintenance/cetus/threeas)
+"lbt" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/cetus/stairwellf3)
+"lca" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/Galleryf2)
+"lcg" = (
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = -24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Solar Fore";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftPort)
+"lcH" = (
+/turf/simulated/mineral/cetus,
+/area/engineering/cetus/starsubstation)
+"ldk" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/obj/machinery/shield_diffuser,
+/turf/space,
+/area/space)
+"ldJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"ldX" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/bodyguard)
+"lea" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30;
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Mining Locker Room";
+ dir = 1;
+ name = "security camera"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"leo" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/escapepodjr)
+"leS" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"leV" = (
+/obj/structure/closet/secure_closet/personal/cabinet{
+ name = "paranormal personal closet"
+ },
+/obj/item/clothing/suit/storage/det_trench,
+/obj/item/clothing/head/fedora/brown,
+/obj/item/bluespace_crystal/artificial,
+/obj/item/clothing/accessory/bodycam,
+/obj/structure/closet/secure_closet/personal/cabinet{
+ name = "private personal closet"
+ },
+/obj/item/entrepreneur/spirit_board,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"lfi" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_east = 1;
+ tag_north = 4;
+ tag_south = 2;
+ tag_west = 5
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"lfG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ id_tag = "hopquarters";
+ name = "Head of Personnel Quarters";
+ req_access = list(57)
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoP_Quarters)
+"lfO" = (
+/obj/structure/closet/emcloset{
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodaft)
+"lgi" = (
+/obj/structure/railing/overhang/grey{
+ color = "#917448";
+ dir = 4;
+ name = "box";
+ desc = "The edge of a box. Despite looking like cardboard, it feels like it's made of steel"
+ },
+/obj/item/storage/box,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"lgl" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "8-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "9-10"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"lgE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_command{
+ id_tag = "sbridgedoor";
+ name = "Bridge";
+ req_access = list(19)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge/Deck3_Corridor)
+"lgF" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"lgJ" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Atmospherics_Chamber)
+"lgS" = (
+/turf/simulated/wall/r_wall,
+/area/ai_upload_foyer)
+"lhc" = (
+/obj/structure/bed/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"lhg" = (
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"lhl" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Aft Escape Pod Lounge";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodaft)
+"lho" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 4;
+ target_pressure = 200
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/ai_slipper,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"lhF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ name = "Conference Room";
+ req_access = list(19)
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"lhN" = (
+/obj/structure/outcrop/phoron,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/asteroid/cetus/d3)
+"lhY" = (
+/obj/machinery/telecomms/bus/preset_two/southerncross,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"lii" = (
+/obj/structure/railing/overhang/grey,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/bridge)
+"liF" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"ljT" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreeport)
+"ljW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"lkd" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"lkj" = (
+/obj/structure/lattice,
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"lkl" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/atrium/primary)
+"lkE" = (
+/obj/machinery/button/remote/airlock{
+ id = "sex";
+ name = "Bolt Control";
+ specialfunctions = 4;
+ pixel_y = 26
+ },
+/obj/structure/table/fancyblack,
+/obj/item/leash,
+/obj/item/clothing/accessory/collar/casinosentientprize_fake,
+/obj/structure/cable/green{
+ icon_state = "4-5"
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/sex)
+"lkL" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf2)
+"lkZ" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/bodyguard)
+"llg" = (
+/obj/machinery/door/airlock/freezer,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/maintenance/cetus/arcade)
+"llZ" = (
+/obj/structure/table/fancyblack,
+/obj/item/flame/candle/candelabra/everburn{
+ pixel_y = 8
+ },
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/threeas)
+"lma" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"lmr" = (
+/obj/item/clothing/under/swimsuit/highclass,
+/obj/structure/closet/wardrobe/captain{
+ name = "station director's wardrobe"
+ },
+/obj/random/drinkbottle,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Captain_Quarters)
+"lmC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"lmX" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/item/stool{
+ color = "grey";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/maintenance/cetus/shallow/quack)
+"lnd" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftStar)
+"lni" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"lnE" = (
+/obj/structure/railing/overhang/grey{
+ color = "#917448";
+ name = "box";
+ desc = "The edge of a box. Despite looking like cardboard, it feels like it's made of steel"
+ },
+/obj/structure/loot_pile/maint/boxfort,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"lnK" = (
+/obj/effect/landmark{
+ name = "tripai"
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/item/radio/intercom/private{
+ pixel_y = -21
+ },
+/obj/item/radio/intercom/custom{
+ dir = 1;
+ pixel_y = 21
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/greengrid,
+/area/ai)
+"lnW" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/quartermaster/mininglockerroom)
+"loe" = (
+/turf/simulated/floor/carpet/retro_red,
+/area/bridge/sleep/HoS_Quarters)
+"loE" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/sd)
+"loP" = (
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/random/trash_pile,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"loZ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"lpo" = (
+/obj/machinery/vending/loadout/loadout_misc,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"lqg" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Secretary_Quarters)
+"lqB" = (
+/obj/random/junk,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"lqX" = (
+/obj/structure/lattice,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/button/windowtint{
+ id = "theater";
+ pixel_y = -25;
+ pixel_x = 24;
+ range = 8
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_y = -24;
+ pixel_x = 33
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/theater)
+"lrc" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"lre" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/rnd/cetus/stairwelljr3)
+"lrj" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "d3_near_jr";
+ name = "Near Cetus - Deck 3 Joint Research"
+ },
+/turf/space,
+/area/space)
+"lrs" = (
+/obj/item/radio/intercom/locked/ai_private{
+ dir = 1;
+ pixel_y = 21
+ },
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ai_monitored/aihall)
+"lrw" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eva_port_inner";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ name = "interior access button";
+ pixel_x = -32;
+ pixel_y = 23
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"lrC" = (
+/obj/machinery/atmospherics/unary/heater{
+ icon_state = "heater"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/research/particleaccelerator)
+"lrH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"lrX" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"lsf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"lss" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Central Access"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"lsQ" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"ltl" = (
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "9-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"lto" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/cetus/jrfirstaid)
+"ltS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"lul" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"lup" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"lux" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/structure/table/rack,
+/obj/random/fromList/sexy_costumes,
+/obj/random/fromList/sexy_costumes,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"luy" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/sign/directions/engineering/atmospherics{
+ pixel_y = 32;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"luR" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"lvg" = (
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"lvp" = (
+/obj/machinery/mineral/equipment_vendor{
+ dir = 4;
+ pixel_x = -5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"lvH" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"lvY" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Solar Fore";
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24;
+ pixel_x = 2
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForStar)
+"lwa" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable/yellow,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/cetus/joint)
+"lwQ" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/HoP_Quarters)
+"lwW" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"lxO" = (
+/obj/structure/table/woodentable,
+/obj/structure/sign/painting/public{
+ pixel_y = 29
+ },
+/obj/item/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 3;
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -3;
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/food/condiment/small/sugar{
+ pixel_y = 13
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"lyh" = (
+/obj/item/pickaxe{
+ pixel_x = 5
+ },
+/obj/item/shovel{
+ pixel_x = -5
+ },
+/obj/structure/table/rack{
+ dir = 1
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/storage/belt/utility,
+/obj/item/storage/box/nifsofts_mining,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"lyw" = (
+/obj/random/plushie,
+/obj/random/trash,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/badsnuggles)
+"lyx" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"lyB" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "theater"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/theater)
+"lyJ" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodstar)
+"lyK" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "exterior access button";
+ pixel_x = -31;
+ pixel_y = 32
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForStar)
+"lyV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"lzj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"lzr" = (
+/obj/structure/grille,
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/thirddeck/roof)
+"lAj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"lAp" = (
+/obj/structure/railing/grey,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"lAG" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"lAH" = (
+/obj/structure/closet/crate{
+ name = "Camera Assembly Crate"
+ },
+/obj/item/camera_assembly,
+/obj/item/camera_assembly,
+/obj/item/camera_assembly,
+/obj/item/camera_assembly,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"lAP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ id_tag = "weaverdorm"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"lAU" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"lAX" = (
+/obj/structure/table/reinforced,
+/obj/item/taperecorder,
+/obj/item/rectape/random,
+/turf/simulated/floor/carpet/brown,
+/area/maintenance/cetus/shallow/law)
+"lAY" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"lBk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/eva)
+"lBl" = (
+/obj/random/vendorfood,
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"lBJ" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"lBZ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"lCh" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/lounge)
+"lCl" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"lCB" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/pen,
+/obj/item/clipboard,
+/obj/item/folder/white_cmo,
+/obj/item/paper,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"lCI" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/threeap)
+"lCU" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1
+ },
+/turf/simulated/shuttle/wall/hard_corner,
+/area/shuttle/large_escape_pod1/centcom)
+"lDf" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"lDu" = (
+/obj/effect/landmark/map_data{
+ height = 3
+ },
+/turf/space,
+/area/space)
+"lDP" = (
+/obj/structure/sign/deck/third{
+ pixel_x = 31
+ },
+/turf/simulated/wall,
+/area/bridge/Deck3_Corridor)
+"lDR" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"lEn" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics Monitoring Room";
+ req_access = list(24)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/engineering/Atmospherics_Control_Room)
+"lEK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -35;
+ pixel_x = -5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"lEX" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/random/junk,
+/obj/random/junk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"lFo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{
+ frequency = 1381;
+ id_tag = "escape_pod_3_berth";
+ tag_door = "escape_pod_3_berth_hatch";
+ dir = 8;
+ pixel_y = 33;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodstar)
+"lFL" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"lGa" = (
+/obj/random/junk,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"lGe" = (
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Captain_Quarters)
+"lGM" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"lHd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 1
+ },
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"lHg" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"lIa" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"lIh" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"lIK" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"lIQ" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/lattice,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"lIY" = (
+/obj/structure/bed/pod,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"lJo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/obj/machinery/exonet_node{
+ anchored = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"lJI" = (
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreeport)
+"lJK" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"lJN" = (
+/obj/machinery/vending/weeb,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"lKn" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/bodyguard)
+"lKp" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"lKO" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"lKZ" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"lLe" = (
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/obj/machinery/telecomms/server/presets/engineering,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"lLl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/random/obstruction,
+/obj/machinery/light/yellowed,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"lLo" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating,
+/area/thirddeck/roof)
+"lLu" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodaft)
+"lLJ" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"lMo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/loot_pile/surface/medicine_cabinet/fresh{
+ pixel_y = 32
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"lMM" = (
+/obj/random/obstruction,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"lMR" = (
+/obj/structure/fireaxecabinet,
+/turf/simulated/wall/r_wall,
+/area/engineering/Atmospherics_Chamber)
+"lNQ" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/yellow/bordercorner2,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"lOg" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"lOx" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForStar)
+"lOC" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/dock)
+"lOH" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction,
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"lOQ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/starboard)
+"lOR" = (
+/obj/machinery/atmospherics/valve/digital{
+ name = "Custom Mix Outlet Valve"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"lPe" = (
+/obj/machinery/light/yellowed,
+/obj/structure/table/reinforced,
+/obj/item/form_printer,
+/turf/simulated/floor/carpet/brown,
+/area/maintenance/cetus/shallow/law)
+"lPo" = (
+/obj/item/toy/plushie/octopus,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreeport)
+"lPt" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"lQu" = (
+/obj/structure/sign/warning/falling,
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/d3bar)
+"lQy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"lQF" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"lQL" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/cable{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/plating,
+/area/tcomm/chamber)
+"lQP" = (
+/turf/simulated/wall,
+/area/hallway/cetus/stairwellf3)
+"lRg" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"lRl" = (
+/obj/structure/barricade/cutout/ian,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"lRD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"lSA" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/fitness/weightlifter,
+/turf/simulated/floor/boxing/gym,
+/area/maintenance/cetus/jrthreestar)
+"lSF" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"lSK" = (
+/obj/structure/cliff/automatic,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreeport)
+"lSL" = (
+/obj/structure/table/hardwoodtable,
+/obj/random/drinkbottle{
+ pixel_y = -4;
+ pixel_x = -9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"lSM" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/Solar_Control_ForStar)
+"lTd" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"lTo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ name = "Station Director's Quarters";
+ req_access = list(20)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"lTC" = (
+/obj/structure/bed/chair/comfy/brown,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf2)
+"lTJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"lTW" = (
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"lUu" = (
+/obj/item/stool/padded{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"lUH" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/rust,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"lUI" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftstarboardsolar)
+"lUP" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/dice{
+ pixel_y = 8
+ },
+/obj/item/dice{
+ pixel_y = 5;
+ pixel_x = -6
+ },
+/obj/item/dice{
+ pixel_y = 5;
+ pixel_x = 6
+ },
+/obj/item/dice{
+ pixel_y = 1
+ },
+/obj/item/dice{
+ pixel_y = 12
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"lVe" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"lVw" = (
+/obj/structure/salvageable/console{
+ dir = 4
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"lWk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"lWo" = (
+/obj/machinery/chem_master/condimaster,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"lWy" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 1;
+ target_pressure = 200
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"lWJ" = (
+/obj/structure/loot_pile/maint/boxfort,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"lWP" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/rnd/research/particleaccelerator)
+"lXn" = (
+/obj/structure/closet/crate,
+/obj/random/contraband,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/dressing)
+"lYI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/purple,
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/research/particleaccelerator)
+"lYU" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge";
+ req_access = list(19)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge)
+"lYW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"lZz" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 1
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "nanitehall"
+ },
+/area/ai_monitored/aihall)
+"lZM" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"maI" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"mbr" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"mbu" = (
+/obj/effect/floor_decal/carpet,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"mbw" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1441;
+ id = "n2_in";
+ use_power = 1
+ },
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/nitrogen,
+/area/engineering/Atmospherics_Chamber)
+"mbI" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/flashlight/lamp/green,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"mbM" = (
+/obj/structure/sign/directions/telecomms{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/tcomm/computer)
+"mbZ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"mce" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-2"
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_y = 36
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/aihall)
+"mco" = (
+/turf/space,
+/area/space)
+"mcr" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/item/tank/jetpack/oxygen,
+/obj/item/clothing/mask/gas,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/clothing/suit/space/void/captain,
+/obj/item/clothing/head/helmet/space/void/captain,
+/obj/machinery/door/window/holowindoor{
+ dir = 1;
+ req_access = list(20)
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Captain_Quarters)
+"mcw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"mcz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"mcK" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"mdl" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/quack)
+"mdp" = (
+/obj/machinery/light/yellowed,
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"mdy" = (
+/obj/structure/disposaloutlet{
+ pixel_y = -6
+ },
+/obj/structure/disposalpipe/up{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"mdA" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"mdC" = (
+/obj/structure/table/standard,
+/obj/item/stock_parts/subspace/sub_filter,
+/obj/item/stock_parts/subspace/sub_filter,
+/obj/item/stock_parts/subspace/sub_filter,
+/obj/item/stock_parts/subspace/sub_filter,
+/obj/item/stock_parts/subspace/sub_filter,
+/obj/item/stock_parts/subspace/sub_filter,
+/obj/item/stock_parts/subspace/sub_filter,
+/obj/item/stock_parts/subspace/sub_filter,
+/obj/item/storage/toolbox/mechanical,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/tcomm/tcomstorage)
+"mdF" = (
+/obj/random/junk,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24;
+ pixel_x = 2
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"mdJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"mdQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"mdX" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"meq" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/retro_red,
+/area/bridge/sleep/HoS_Quarters)
+"meK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreeport)
+"meP" = (
+/obj/item/radio/beacon,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"mfa" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload)
+"mgs" = (
+/obj/structure/transit_tube{
+ icon_state = "D-NE"
+ },
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/Galleryf2)
+"mgE" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"mgN" = (
+/obj/structure/bed/chair/comfy/red{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoS_Quarters)
+"mgX" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"mhD" = (
+/obj/machinery/conveyor{
+ dir = 9;
+ id = "garbage"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"mhO" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"mhT" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"mii" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/bridge/sleep/Secretary_Quarters)
+"miq" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"miM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"miN" = (
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"miO" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"mjB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"mjH" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"mjT" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "exterior access button";
+ pixel_x = 10;
+ pixel_y = 32
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftStar)
+"mka" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -3
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"mkt" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threeap)
+"mkH" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/threecp)
+"mkQ" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8;
+ name = "Scrubber to Waste"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"mlc" = (
+/turf/simulated/wall,
+/area/engineering/cetus/foresubstation)
+"mlx" = (
+/turf/simulated/wall,
+/area/rnd/cetus/stairwelljr3)
+"mlM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoP_Quarters)
+"mlN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"mlR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"mmb" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/cash_register/civilian,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "coffeeshop";
+ layer = 3.1;
+ name = "Cafe Shutters"
+ },
+/obj/machinery/light/small/fairylights{
+ pixel_y = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"mmO" = (
+/obj/structure/bed/pillowpile/black,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/badsnuggles)
+"mnc" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"mnn" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"mnq" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = -28;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"mnr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"mnt" = (
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"mnN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/steel,
+/obj/item/pack/cardemon{
+ pixel_y = 5;
+ pixel_x = 6
+ },
+/obj/item/pack/cardemon{
+ pixel_y = 5;
+ pixel_x = -4
+ },
+/obj/item/pack/cardemon{
+ pixel_y = -4;
+ pixel_x = -6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"mof" = (
+/obj/structure/closet/secure_closet/CMO_wardrobe,
+/obj/item/gps/medical/cmo,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/bridge/sleep/CMO_Quarters)
+"moD" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/ai_monitored/aihall)
+"moL" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/restroom)
+"moS" = (
+/obj/machinery/power/apc/super/critical{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"mpp" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"mpr" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 25
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"mqO" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"mrL" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"mrP" = (
+/turf/simulated/wall,
+/area/bridge/Deck3_Corridor)
+"msY" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D3 Primary Stairwell";
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf3)
+"mtj" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"mtm" = (
+/turf/simulated/mineral/cetus,
+/area/bridge/Conference_Room)
+"mtu" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/badsnuggles)
+"mtT" = (
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/structure/sign/warning/lethal_turrets{
+ pixel_y = 32;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"muH" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/airless,
+/area/solar/forestarboardsolar)
+"muU" = (
+/obj/random/trash,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/shallow/ap)
+"mvd" = (
+/obj/structure/prop/dark_node/dust{
+ node_range = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreeport)
+"mve" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"mvw" = (
+/obj/structure/ghost_pod/ghost_activated/unified_hole,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"mvV" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/CMO_Quarters)
+"mwc" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 10
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"mwl" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ pixel_y = -6
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threeap)
+"mwF" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"mwG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/flooded)
+"mxj" = (
+/obj/random/obstruction,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"mxo" = (
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/badsnuggles)
+"mxw" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"mxE" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"mxI" = (
+/obj/structure/cable/cyan{
+ icon_state = "2-5"
+ },
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"mxU" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"mxW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "AI - Messaging Server";
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"myf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"myk" = (
+/obj/item/bone/skull,
+/obj/item/clothing/head/collectable/captain{
+ pixel_y = 3;
+ pixel_x = 1
+ },
+/obj/item/bone/ribs{
+ pixel_y = -14;
+ pixel_x = -7
+ },
+/obj/item/clothing/accessory/poncho/roles/cloak/captain{
+ pixel_y = -13;
+ pixel_x = -5
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/bridge/sleep/Secretary_Quarters)
+"myJ" = (
+/obj/machinery/atmospherics/omni/mixer{
+ active_power_usage = 7500;
+ tag_east = 2;
+ tag_north = 1;
+ tag_north_con = 0.21;
+ tag_west = 1;
+ tag_west_con = 0.79
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"myP" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"mze" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ id_tag = "hosquarters";
+ name = "Head of Security Quarters";
+ req_access = list(58)
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoS_Quarters)
+"mzx" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ use_power = 1;
+ dir = 4
+ },
+/turf/space,
+/area/maintenance/cetus/shallow/derelict/dock)
+"mzG" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftstarboardsolar)
+"mzH" = (
+/obj/structure/barricade/cutout/cultist,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"mzY" = (
+/obj/random/obstruction,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"mAe" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"mAq" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"mAX" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Vault Catwalk"
+ },
+/turf/simulated/open,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"mAY" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/sign/warning/nosmoking_2{
+ pixel_x = -30
+ },
+/obj/machinery/light{
+ dir = 8;
+ name = "1E-light fixture"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"mBi" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ai)
+"mBr" = (
+/obj/structure/railing/grey,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"mBL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/research/particleaccelerator)
+"mBR" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"mCm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/engine)
+"mCq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/item/radio/intercom/locked/ai_private{
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/ai_server_room)
+"mCr" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar{
+ id = "aftportsolar";
+ name = "Aft-Port Solar Array"
+ },
+/turf/simulated/floor/plating/turfpack/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/aftportsolar)
+"mCD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"mDp" = (
+/obj/machinery/light/small/emergency/flicker{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"mDs" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"mEb" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"mEl" = (
+/obj/structure/railing/grey,
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"mEq" = (
+/obj/structure/cable/cyan{
+ icon_state = "6-9"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"mEQ" = (
+/obj/effect/weaversilk/trap,
+/obj/effect/weaversilk/wall,
+/turf/simulated/floor/carpet/happy,
+/area/maintenance/cetus/d3docks)
+"mEU" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200;
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForStar)
+"mFy" = (
+/turf/simulated/open,
+/area/maintenance/cetus/threeap)
+"mFV" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"mFZ" = (
+/obj/structure/smolebuilding/museum,
+/turf/simulated/floor/smole,
+/area/maintenance/cetus/d3docks)
+"mGk" = (
+/turf/simulated/wall,
+/area/bridge/sleep/HoP_Quarters)
+"mGl" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"mGA" = (
+/obj/structure/sign/directions/kitchen{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"mHn" = (
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/structure/closet,
+/obj/fiftyspawner/plastic,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"mHC" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"mHI" = (
+/obj/structure/salvageable/slotmachine2,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"mHO" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"mHQ" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/flooded)
+"mHS" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/cetus/joint)
+"mIs" = (
+/turf/simulated/open,
+/area/engineering/cetus/jointsubstation)
+"mIW" = (
+/obj/effect/floor_decal/spline/plain/cee,
+/obj/machinery/computer/cryopod/gateway{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"mJq" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/obj/machinery/computer/general_air_control/large_tank_control{
+ dir = 4;
+ input_tag = "tox_in";
+ name = "Phoron Supply Control";
+ output_tag = "tox_out";
+ sensors = list("tox_sensor"="Tank")
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"mJu" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"mJQ" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"mJU" = (
+/obj/structure/bed/pillowpile/green,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/badsnuggles)
+"mKb" = (
+/obj/effect/floor_decal/corner/purple/diagonal,
+/obj/effect/floor_decal/corner/orange{
+ dir = 8
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "tox_sensor"
+ },
+/turf/simulated/floor/reinforced/phoron,
+/area/engineering/Atmospherics_Chamber)
+"mKu" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ name = "exterior access button";
+ pixel_x = 32;
+ pixel_y = -8
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"mKw" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/lounge)
+"mKD" = (
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"mKH" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/airless,
+/area/solar/forestarboardsolar)
+"mLA" = (
+/obj/machinery/vending/loadout/clothing,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"mMf" = (
+/obj/structure/smoletrack/roadT{
+ dir = 1
+ },
+/turf/simulated/floor/smole,
+/area/maintenance/cetus/d3docks)
+"mMw" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"mMA" = (
+/obj/machinery/vending/fitness,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - JR D3 Stairwell 1";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"mMB" = (
+/obj/random/vendorfood{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"mNo" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"mNQ" = (
+/obj/structure/closet/walllocker/medical{
+ pixel_y = -30
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/effect/shuttle_landmark/southern_cross/escape_pod2/station,
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{
+ frequency = 1381;
+ id_tag = "escape_pod_2";
+ tag_door = "escape_pod_2_hatch";
+ pixel_y = 24
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod2/station)
+"mOa" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"mOO" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"mOR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"mOS" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"mPO" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/cetus/joint)
+"mPX" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/engine)
+"mRH" = (
+/obj/structure/table/rack,
+/obj/item/circuitboard/telecomms/processor,
+/obj/item/circuitboard/telecomms/processor,
+/obj/item/circuitboard/telecomms/receiver,
+/obj/item/circuitboard/telecomms/server,
+/obj/item/circuitboard/telecomms/server,
+/obj/item/circuitboard/telecomms/bus,
+/obj/item/circuitboard/telecomms/bus,
+/obj/item/circuitboard/telecomms/broadcaster,
+/obj/item/circuitboard/telecomms/exonet_node,
+/obj/machinery/camera/network/telecom{
+ c_tag = "TCOMMS - Storage"
+ },
+/obj/item/circuitboard/telecomms/relay,
+/obj/item/circuitboard/telecomms/relay,
+/obj/item/circuitboard/teleporter,
+/obj/item/circuitboard/teleporter_hub,
+/obj/item/circuitboard/teleporter_station,
+/obj/item/stock_parts/micro_laser/high,
+/obj/item/stock_parts/micro_laser/high,
+/obj/item/stock_parts/micro_laser/high,
+/obj/item/stock_parts/micro_laser/high,
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/micro_laser,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/item/cell/hyper/empty,
+/obj/item/cell/hyper/empty,
+/turf/simulated/floor/plating,
+/area/tcomm/tcomstorage)
+"mRM" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "COM - Bridge Entry Port";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"mRP" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"mSj" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"mSm" = (
+/obj/structure/table/rack,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 4
+ },
+/obj/item/stack/cable_coil/random,
+/obj/item/multitool,
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Particle Accelerator 1"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/research/particleaccelerator)
+"mSp" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"mSx" = (
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"mST" = (
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"mTj" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"mTm" = (
+/obj/structure/prop/dark_node/dust{
+ node_range = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreeport)
+"mTD" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"mUM" = (
+/obj/effect/floor_decal/corner/black,
+/obj/effect/floor_decal/corner/black{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/obj/effect/landmark/costume/sexymime,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/item/reagent_containers/food/drinks/bottle/bottleofnothing,
+/obj/item/reagent_containers/food/drinks/bottle/bottleofnothing{
+ pixel_y = -4;
+ pixel_x = 7
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/mime)
+"mVf" = (
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(1,19);
+ name = "Checkpoint Outer Airlock";
+ id_tag = "outervaultcheck"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "vld_exterior";
+ name = "Checkpoint Lockdown"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"mVp" = (
+/obj/structure/table/standard,
+/obj/item/lipstick{
+ pixel_x = -8
+ },
+/obj/item/lipstick/black{
+ pixel_x = -3
+ },
+/obj/item/lipstick/jade{
+ pixel_x = 2
+ },
+/obj/item/lipstick/purple{
+ pixel_x = 6
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/dressing)
+"mVr" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"mVT" = (
+/obj/machinery/computer/communications{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge)
+"mVU" = (
+/obj/structure/barricade/cutout/fukken_xeno,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"mWh" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"mWi" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"mWU" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/disposaloutlet{
+ name = "Lost & found disposal outlet";
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"mWY" = (
+/obj/machinery/shower{
+ pixel_y = 8
+ },
+/obj/random/soap,
+/turf/simulated/floor/tiled/kafel_full,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"mXl" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf3)
+"mXu" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"mXz" = (
+/obj/structure/sign/kiddieplaque,
+/turf/simulated/wall/r_wall,
+/area/ai_upload)
+"mXB" = (
+/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/cap/visible/supply{
+ dir = 8
+ },
+/obj/item/material/shard,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating{
+ icon_state = "dmg1"
+ },
+/area/maintenance/cetus/shallow/derelict/hallway)
+"mXG" = (
+/obj/machinery/computer/general_air_control/large_tank_control{
+ input_tag = "n2_in";
+ name = "Nitrogen Supply Control";
+ output_tag = "n2_out";
+ sensors = list("n2_sensor"="Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"mXL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"mXV" = (
+/obj/item/stool/padded{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"mYa" = (
+/obj/machinery/light/yellowed,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "5-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"mYd" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"mYw" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"mYy" = (
+/obj/structure/bed/pillowpile/green,
+/obj/random/junk,
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/badsnuggles)
+"mZd" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/boxing{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/jrthreestar)
+"mZo" = (
+/obj/machinery/door/airlock/multi_tile/glass,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"mZq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"mZJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"mZK" = (
+/obj/structure/table/rack/shelf,
+/obj/item/toy/figure/barking_dog{
+ pixel_x = -5;
+ pixel_y = 2
+ },
+/obj/item/toy/figure/carrion{
+ pixel_x = 1;
+ pixel_y = 2
+ },
+/obj/item/toy/figure/error{
+ pixel_y = 14;
+ pixel_x = -5
+ },
+/obj/item/toy/figure/leadbandit{
+ pixel_y = 13
+ },
+/obj/item/toy/figure/profwho{
+ pixel_x = 6;
+ pixel_y = 13
+ },
+/obj/item/toy/figure/roach{
+ pixel_x = 6;
+ pixel_y = 2
+ },
+/obj/machinery/door/window/holowindoor{
+ name = "Prizes"
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"nad" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"nau" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "crglockdown";
+ name = "Cargo Lockdown";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/quartermaster/mininglockerroom)
+"nay" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Command Hall 6"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"naC" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"naL" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"naM" = (
+/obj/machinery/atmospherics/pipe/tank/air,
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"naN" = (
+/obj/structure/sign/deck/third,
+/turf/simulated/wall,
+/area/crew_quarters/cetus/lounge)
+"nbj" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/CE_Quarters)
+"nbB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"ncw" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable{
+ icon_state = "5-6"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"ndh" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"ndt" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"neC" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/shield_diffuser,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_y = 33;
+ pixel_x = -8
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/shallow/derelict/dock)
+"neL" = (
+/obj/structure/table/woodentable,
+/obj/item/reagent_containers/food/drinks/flask{
+ pixel_x = 4;
+ pixel_y = 15
+ },
+/obj/item/storage/fancy/cigar/havana{
+ pixel_y = 5
+ },
+/obj/item/storage/box/matches{
+ pixel_y = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Captain_Quarters)
+"nfz" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ name = "Air to Ports"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"ngb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 10
+ },
+/obj/structure/closet/secure_closet/atmos_personal,
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"ngu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Checkpoint Office";
+ req_one_access = list(1,19)
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "vld_exterior";
+ name = "Checkpoint Lockdown"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"ngw" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/locker)
+"ngN" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/maintenance/cetus/shallow/quack)
+"ngR" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"ngY" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/item/geiger/wall/south,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"nhk" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/light/small{
+ brightness_color = "#DA0205";
+ brightness_power = 1;
+ brightness_range = 5;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/HoS_Quarters)
+"nhU" = (
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"nic" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"nis" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "5-9"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"nix" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/escape_pod4/station)
+"niQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"njd" = (
+/obj/machinery/light/small,
+/turf/simulated/open,
+/area/crew_quarters/cetus/Libraryf2)
+"njx" = (
+/obj/structure/table/reinforced,
+/obj/random/fromList/TFGuns,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"njF" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"njO" = (
+/obj/structure/table/standard,
+/obj/item/soap/deluxe,
+/obj/item/towel{
+ color = "#FFD700";
+ name = "gold towel"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Captain_Quarters)
+"nkg" = (
+/obj/machinery/cryopod/robot{
+ dir = 4
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_server_room)
+"nki" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/Libraryf2)
+"nkQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"nla" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"nlj" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/wall/hard_corner,
+/area/shuttle/large_escape_pod1/centcom)
+"nms" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"nmu" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"nmR" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_y = -30;
+ pixel_x = -6
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftPort)
+"nmW" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"nnv" = (
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/turf/space,
+/area/space)
+"nnX" = (
+/obj/machinery/telecomms/processor/preset_four,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"noh" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"noB" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200;
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"noP" = (
+/obj/random/empty_or_lootable_crate,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"noQ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ name = "Conference Room";
+ req_access = list(19)
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge/Conference_Room)
+"noW" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/shallow/flooded)
+"npo" = (
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/maintenance/cetus/threefs)
+"npy" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "nanitehall"
+ },
+/area/ai_monitored/aihall)
+"npC" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = -32
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{
+ frequency = 1381;
+ id_tag = "escape_pod_3";
+ pixel_y = 25;
+ tag_door = "escape_pod_3_hatch"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod3/station)
+"npH" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/obj/machinery/meter,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"nqj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"nqy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/ladder{
+ pixel_y = 13
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"nqD" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/ai_server_room)
+"nqI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"nqN" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threeap)
+"nqR" = (
+/obj/structure/table/gamblingtable,
+/obj/item/storage/dicecup/loaded{
+ pixel_y = 14;
+ pixel_x = 6
+ },
+/obj/item/storage/dicecup,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"nqU" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/turfpack,
+/area/crew_quarters/cetus/escapepodjr)
+"nqW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"nqZ" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"nrM" = (
+/obj/structure/bed/chair/sofa/purp,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/RD_Quarters)
+"nrN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape_pod4/station)
+"nrV" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"nsh" = (
+/obj/random/obstruction,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"nsq" = (
+/obj/structure/bed/chair/sofa/left/blue,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Secretary_Quarters)
+"nss" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"nsF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/door/airlock/glass_command{
+ id_tag = "sbridgedoor";
+ name = "Bridge";
+ req_access = list(19)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge)
+"nsK" = (
+/obj/structure/table/woodentable,
+/obj/item/paper_bin,
+/obj/item/folder/red_hos,
+/obj/item/pen/multi,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoS_Quarters)
+"nsU" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/hopdouble,
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/HoP_Quarters)
+"ntj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/random/pottedplant,
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Secretary_Quarters)
+"ntL" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoS_Quarters)
+"nue" = (
+/obj/structure/table/steel,
+/obj/item/storage/bag/sheetsnatcher,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"nuO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/door/airlock{
+ name = "Bathroom"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/bridge/sleep/HoS_Quarters)
+"nuZ" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/engineering/Atmospherics_Chamber)
+"nvM" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"nvY" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/item/stool/padded,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/detective)
+"nwp" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"nwM" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/floodlight{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"nwX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"nxc" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"nxs" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Aft Escape Pod Hall";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodaft)
+"nyi" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"nyr" = (
+/obj/structure/railing/overhang/grey,
+/obj/structure/railing/grey,
+/obj/item/storage/box/donut,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"nyv" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/ai_server_room)
+"nyN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"nzd" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"nzr" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threeas)
+"nzS" = (
+/obj/effect/landmark/teleplumb_exit,
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"nAn" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"nAr" = (
+/obj/fiftyspawner/wood,
+/obj/structure/closet,
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/badsnuggles)
+"nAF" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/shallow/flooded)
+"nBn" = (
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/sex)
+"nBq" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/plating{
+ icon_state = "dmg1"
+ },
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"nBs" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"nBA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"nBU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"nDg" = (
+/turf/simulated/mineral/cetus/edge,
+/area/maintenance/cetus/d3bar)
+"nDK" = (
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/threeas)
+"nDU" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Atmospherics_Chamber)
+"nDY" = (
+/obj/structure/table/bench/wooden,
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"nFb" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftPort)
+"nFl" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/storage/pill_bottle/dice_nerd{
+ pixel_y = 9;
+ pixel_x = 5
+ },
+/obj/item/storage/pill_bottle/dice_nerd{
+ pixel_y = 1;
+ pixel_x = -4
+ },
+/obj/item/flashlight/lamp/clown{
+ pixel_y = -8;
+ pixel_x = -15
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"nFo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/medical{
+ name = "Medbay"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"nFu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"nFB" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "D3_Starboard";
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"nFN" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/bot_outline/blue,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/arrows/blue,
+/obj/effect/landmark/free_ai_shell,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload_foyer)
+"nGd" = (
+/obj/structure/railing/overhang/grey,
+/obj/structure/railing/grey,
+/obj/item/toy/sif{
+ pixel_y = 10
+ },
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"nGk" = (
+/obj/random/junk,
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"nGH" = (
+/turf/simulated/shuttle/wall/no_join/orange,
+/area/shuttle/escape_pod2/station)
+"nGW" = (
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/shallow/fp)
+"nHb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"nHj" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"nIi" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/loading/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"nIp" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/open,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"nIu" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"nIG" = (
+/obj/structure/table/standard,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"nIS" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/random/pottedplant,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CMO_Quarters)
+"nJx" = (
+/obj/machinery/mass_driver{
+ id = "trash"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"nJC" = (
+/obj/structure/bed/chair,
+/obj/random/junk,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"nJG" = (
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/camera/xray/command{
+ c_tag = "AI - Entry Hall";
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/ai_monitored/aihall)
+"nJI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"nJN" = (
+/turf/simulated/wall,
+/area/maintenance/disposal)
+"nKp" = (
+/obj/structure/bed/chair/comfy/teal{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"nKA" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"nLe" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreeport)
+"nLf" = (
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"nLn" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/Solar_Control_AftStar)
+"nLo" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"nLr" = (
+/obj/structure/bed/pillowpile/teal,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/lounge)
+"nLW" = (
+/obj/random/junk,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"nLZ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"nMr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"nMy" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/quack)
+"nNd" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"nNi" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"nNS" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/jrthreeport)
+"nOq" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"nOP" = (
+/obj/structure/table/steel,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"nOU" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/solar{
+ id = "forestarboardsolar";
+ name = "Fore-Starboard Solar Array"
+ },
+/turf/simulated/floor/plating/turfpack/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/forestarboardsolar)
+"nPa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"nPz" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftstarboardsolar)
+"nPV" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"nQd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ id_tag = "cequarters";
+ name = "Chief Engineer Quarters";
+ req_access = list(56)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge/sleep/CE_Quarters)
+"nQe" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"nQn" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Captain_Quarters)
+"nRE" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"nSB" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/purple,
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/research/particleaccelerator)
+"nTe" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"nTg" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/foreportsolar)
+"nTn" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/shallow/derelict/dock)
+"nTs" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"nTv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"nUn" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"nUr" = (
+/obj/structure/table/woodentable,
+/obj/machinery/recharger,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Captain_Quarters)
+"nUs" = (
+/turf/simulated/wall/r_wall,
+/area/bridge)
+"nUC" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/bridge)
+"nUK" = (
+/obj/structure/table/bench/steel,
+/obj/random/soap_common,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"nUN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"nUP" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"nVk" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"nVD" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"nVO" = (
+/obj/structure/table/standard,
+/obj/item/bluespace_crystal/artificial{
+ pixel_x = -7;
+ pixel_y = 7
+ },
+/obj/item/stock_parts/subspace/crystal{
+ pixel_x = -7;
+ pixel_y = -4
+ },
+/obj/item/bluespace_crystal/artificial{
+ pixel_y = 7
+ },
+/obj/item/stock_parts/subspace/crystal{
+ pixel_y = -4
+ },
+/obj/item/bluespace_crystal/artificial{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/stock_parts/subspace/crystal{
+ pixel_x = 7;
+ pixel_y = -4
+ },
+/turf/simulated/floor/plating,
+/area/tcomm/tcomstorage)
+"nVP" = (
+/obj/machinery/computer/security/mining,
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"nVW" = (
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/drinks/shaker{
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/food/drinks/teapot{
+ pixel_x = -5;
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/glass/rag{
+ pixel_x = 7;
+ pixel_y = 2
+ },
+/obj/machinery/light,
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"nWe" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"nWE" = (
+/obj/structure/bed/chair/sofa/left/brown{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"nWG" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"nXh" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"nXn" = (
+/obj/structure/cliff/automatic,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"nXu" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"nXA" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/firstdeck/vaultlobby)
+"nXE" = (
+/obj/structure/outcrop/iron,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"nYp" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threeas)
+"nYV" = (
+/turf/simulated/mineral/cetus,
+/area/ai)
+"nZb" = (
+/obj/structure/table/bench/wooden,
+/obj/random/forgotten_tram,
+/turf/simulated/floor/carpet/bcarpet,
+/area/maintenance/cetus/threeas)
+"nZr" = (
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "bridge_center"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/bridge)
+"nZx" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"nZF" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/sign/warning/acid{
+ name = "\improper DANGEROUS NANITES";
+ desc = "This sign warns of the dangers of AI-controlled S10-P recycling and crowd control nanite hives in the area.";
+ pixel_y = -32;
+ pixel_x = 32
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/thirddeck/roof)
+"oai" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/table/bench/wooden,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/carpet/oracarpet,
+/area/bridge/sleep/CE_Quarters)
+"oal" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "maintnanites"
+ },
+/area/maintenance/cetus/nanites)
+"oaB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"oaU" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/large_escape_pod1/centcom)
+"oba" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = -5
+ },
+/turf/simulated/floor/greengrid,
+/area/ai)
+"obz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"obS" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/Libraryf2)
+"obV" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Escape Pod"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/escapepodstar)
+"occ" = (
+/turf/simulated/wall,
+/area/crew_quarters/heads/sc/restroom)
+"oci" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"ocp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"ocA" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"ocJ" = (
+/obj/structure/bookcase{
+ name = "bookcase (Fiction)"
+ },
+/obj/item/book/bundle/custom_library/fiction/taleoftherainbowcat,
+/obj/item/book/bundle/custom_library/fiction/silence,
+/obj/item/book/bundle/custom_library/fiction/raissue147,
+/obj/item/book/bundle/custom_library/fiction/raissue142,
+/obj/item/book/bundle/custom_library/fiction/manfromsnowyriver,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/gamba)
+"ocV" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"odi" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"ods" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"odA" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"odI" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/nanites)
+"odM" = (
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"odX" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"oeb" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"oec" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ brightness_color = "#DA0205";
+ brightness_power = 1;
+ brightness_range = 5;
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/CE_Quarters)
+"oeu" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/micro_tunnel/random{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"oez" = (
+/obj/structure/bed/pillowpile/red,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/badsnuggles)
+"oeI" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"ofo" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{
+ frequency = 1381;
+ id_tag = "large_escape_pod_1_berth";
+ tag_door = "large_escape_pod_1_berth_hatch";
+ dir = 1;
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/escapepodjr)
+"ofu" = (
+/obj/structure/barricade/cutout/gondola,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threefs)
+"ogr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"ogA" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"ogD" = (
+/obj/structure/closet/emcloset,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"ogN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"ohb" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CMO_Quarters)
+"ohp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"oiM" = (
+/obj/structure/railing/overhang/bronze{
+ dir = 8
+ },
+/obj/structure/dummystairs/bronzeledge{
+ dir = 1
+ },
+/obj/structure/railing/overhang/bronze{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/theater)
+"oiU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"ojf" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"ojk" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"ojq" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Utility Atrium Pod Lounge";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodstar)
+"ojB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"ojD" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"okb" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/random/pottedplant,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"okA" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/theater)
+"olx" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/bridge/sleep/CMO_Quarters)
+"olO" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ id = "maintdelivery";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"olW" = (
+/obj/machinery/bodyscanner,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_x = -32
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/cetus/jrfirstaid)
+"omw" = (
+/obj/structure/table/woodentable,
+/obj/item/paper_bin,
+/obj/item/pen/multi{
+ pixel_y = -7
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf2)
+"omO" = (
+/turf/simulated/floor/carpet/bcarpet,
+/area/maintenance/cetus/threeas)
+"onk" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"onn" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/obj/effect/landmark/start{
+ name = "Cyborg"
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/item/radio/beacon,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/ai_upload_foyer)
+"onX" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"ooY" = (
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"opr" = (
+/obj/machinery/computer/secure_data,
+/obj/item/radio/intercom/department/security{
+ dir = 1;
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/red,
+/area/bridge)
+"opY" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"oqe" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/structure/cable/cyan{
+ icon_state = "5-10"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/ai)
+"oqh" = (
+/obj/structure/table/reinforced,
+/obj/random/toy,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"oqn" = (
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"oqs" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Secretary_Quarters)
+"oqv" = (
+/obj/structure/salvageable/autolathe,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"oqG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI Upload";
+ req_access = list(16);
+ req_one_access = list(16)
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/turretid/stun{
+ control_area = "\improper AI Upload Chamber";
+ name = "AI Upload turret control";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload_foyer)
+"oqL" = (
+/turf/simulated/floor/plating{
+ icon_state = "dmg1"
+ },
+/area/maintenance/cetus/shallow/ap)
+"oqO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"orF" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"orR" = (
+/obj/structure/table/bench/wooden,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Secretary_Quarters)
+"osu" = (
+/obj/machinery/atmospherics/unary/freezer{
+ icon_state = "freezer_1";
+ set_temperature = 73;
+ use_power = 1;
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/tcomm/computer)
+"osD" = (
+/obj/structure/table/reinforced,
+/obj/item/clamp{
+ pixel_x = 10;
+ pixel_y = 2
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 22;
+ dir = 4;
+ pixel_y = -12
+ },
+/obj/item/clamp{
+ pixel_x = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"otf" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
+/obj/machinery/meter,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"otj" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"otl" = (
+/obj/machinery/telecomms/relay/preset/southerncross/centcomm,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"otm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForStar)
+"otx" = (
+/obj/machinery/floodlight{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"otT" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/shallow/fp)
+"otY" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 1
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "nanitehall"
+ },
+/area/ai_monitored/aihall)
+"oua" = (
+/obj/structure/bed/pillowpile/yellow,
+/obj/item/toy/plushie/red_fox,
+/turf/unsimulated/floor/dark,
+/area/maintenance/cetus/jrthreeport)
+"ouj" = (
+/obj/machinery/vending/loadout/uniform,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"ous" = (
+/obj/structure/cable/cyan{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"ovb" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/structure/bed/chair/bay/chair,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"ovf" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/rnd/cetus/entry)
+"ovV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"ovY" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"owe" = (
+/obj/effect/floor_decal/asteroid,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/engineering/cetus/aftsubstation)
+"owF" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/turf/space,
+/area/space)
+"owG" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"owR" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"owS" = (
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -25;
+ pixel_y = 11
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 26;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"owU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"oxB" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"oxF" = (
+/obj/random/vendorfood{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"oxJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/RD_Quarters)
+"oyc" = (
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/carbon_dioxide,
+/area/engineering/Atmospherics_Chamber)
+"oye" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"oyj" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"oyL" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"oyV" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"ozh" = (
+/turf/simulated/open,
+/area/bridge/Deck3_Corridor)
+"ozA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ id_tag = "comsecquarters";
+ name = "Secretary Quarters";
+ req_access = list(19)
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge/sleep/Secretary_Quarters)
+"oAv" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"oAK" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/turf/simulated/floor/redgrid,
+/area/security/nuke_storage)
+"oAP" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"oBd" = (
+/obj/structure/table/marble,
+/obj/item/stool/padded,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/random/junk,
+/obj/random/maintenance,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"oBe" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"oBt" = (
+/obj/random/pottedplant,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"oBv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CE_Quarters)
+"oBB" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/adv,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"oBH" = (
+/obj/machinery/telecomms/relay/preset/southerncross/d3,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"oCe" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"oCq" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"oCF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Aft Substation";
+ req_one_access = list(11, 24)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/aftsubstation)
+"oCJ" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/law)
+"oCX" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "ainaniteone"
+ },
+/area/ai)
+"oDb" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/obj/structure/lattice,
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/obj/machinery/light/small/emergency{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/auxsupport)
+"oDq" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{
+ frequency = 1381;
+ id_tag = "large_escape_pod_1";
+ pixel_x = -26;
+ tag_door = "large_escape_pod_1_hatch";
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/large_escape_pod1/centcom)
+"oDA" = (
+/obj/structure/table/bench/steel,
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = -30
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/jrfirstaid)
+"oEr" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/solar/forestarboardsolar)
+"oEQ" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"oET" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"oFl" = (
+/obj/machinery/light/small/flicker{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"oFq" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"oFQ" = (
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/flooded)
+"oFW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"oGD" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/Libraryf2)
+"oHa" = (
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 1
+ },
+/obj/machinery/turretid/stun{
+ check_synth = 1;
+ name = "AI Chamber turret control";
+ pixel_x = -30;
+ pixel_y = -24
+ },
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = 24;
+ pixel_y = -25
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control-switch for the AI core maintenance door.";
+ id = "AICore";
+ name = "AI Maintenance Hatch";
+ pixel_x = 14;
+ pixel_y = 25;
+ req_access = list(16)
+ },
+/obj/machinery/camera/xray/command{
+ c_tag = "AI - Core"
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "ainaniteone"
+ },
+/area/ai)
+"oIp" = (
+/obj/random/trash,
+/obj/structure/loot_pile/maint/trash,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"oIv" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"oIN" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftStar)
+"oJh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"oJq" = (
+/obj/structure/table/standard,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/bodyguard)
+"oJW" = (
+/obj/structure/bed/pod,
+/obj/random/trash,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"oKn" = (
+/obj/machinery/disposal,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"oKw" = (
+/obj/machinery/fitness/heavy/treadmill,
+/turf/simulated/floor/boxing/gym,
+/area/maintenance/cetus/jrthreestar)
+"oKy" = (
+/obj/machinery/pointdefense{
+ id_tag = "PD Main"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/space)
+"oKZ" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"oLn" = (
+/obj/structure/ladder,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/open,
+/area/maintenance/cetus/jrthreestar)
+"oLL" = (
+/obj/machinery/computer/general_air_control/large_tank_control{
+ dir = 4;
+ input_tag = "n2o_in";
+ name = "Nitrous Oxide Supply Control";
+ output_tag = "n2o_out";
+ sensors = list("n2o_sensor"="Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/white/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"oLN" = (
+/obj/machinery/disposal/wall/cleaner{
+ dir = 8;
+ name = "Resleeving lost & found bin";
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Captain_Quarters)
+"oMe" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"oMC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI Access Hall";
+ req_access = list(16);
+ req_one_access = list(16)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_upload_foyer)
+"oMK" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"oML" = (
+/obj/item/radio/intercom/department/security{
+ dir = 1;
+ pixel_y = 21
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/camera/network/security{
+ c_tag = "SEC - Vault checkpoint"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"oMM" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"oNx" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/head/fishing,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"oNM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Lounge"
+ },
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0;
+ anchored = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/lounge)
+"oOm" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"oOv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"oOE" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"oPg" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"oPC" = (
+/obj/structure/cliff/automatic/corner,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreeport)
+"oQa" = (
+/obj/structure/grille/broken,
+/obj/item/stack/rods,
+/obj/structure/firedoor_assembly,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"oQm" = (
+/obj/random/junk,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threecp)
+"oQt" = (
+/obj/structure/transit_tube{
+ icon_state = "E-SW"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/cetus/entry)
+"oQw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"oRa" = (
+/obj/machinery/computer/rcon,
+/turf/simulated/floor/tiled/yellow,
+/area/bridge)
+"oSd" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/law)
+"oSy" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/sex)
+"oSA" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"oSI" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Aft Port";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"oSK" = (
+/obj/structure/bed/pillowpile,
+/obj/item/toy/plushie/teshari,
+/obj/item/toy/plushie/mouse,
+/turf/unsimulated/floor/dark,
+/area/maintenance/cetus/jrthreeport)
+"oSM" = (
+/obj/structure/barricade/cutout/ntsec,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"oTi" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"oTu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"oTG" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"oTP" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"oUQ" = (
+/obj/structure/closet/secure_closet/RD_wardrobe,
+/obj/item/gps/science/rd,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/RD_Quarters)
+"oVe" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/sd)
+"oVq" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"oVz" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/wall/hard_corner,
+/area/shuttle/large_escape_pod1/centcom)
+"oVE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-9"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"oVF" = (
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"oWv" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"oWC" = (
+/obj/structure/bed/chair/bay/chair/padded/red/bignest,
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/badsnuggles)
+"oWM" = (
+/obj/effect/floor_decal/industrial/warning/cee,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"oXf" = (
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - Particle Accelerator 3";
+ dir = 1;
+ network = list("Research","PA Room")
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"oYa" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"oYg" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/shallow/ap)
+"oYi" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Captain_Quarters)
+"oYQ" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/storage)
+"oZb" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/tcomm/chamber)
+"oZJ" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/escapepodstar)
+"oZT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"oZU" = (
+/obj/effect/floor_decal/spline/plain/corner,
+/turf/simulated/floor/boxing{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/jrthreestar)
+"par" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/dock)
+"pat" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"paD" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"paF" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/aihall)
+"paQ" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/escapepodstar)
+"paS" = (
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/carpet/bcarpet,
+/area/maintenance/cetus/threeas)
+"paT" = (
+/turf/simulated/floor/reinforced/nitrogen,
+/area/engineering/Atmospherics_Chamber)
+"pbj" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/obj/structure/curtain/open{
+ name = "stage curtain";
+ color = "#701006";
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"pbO" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/camera_film,
+/obj/item/camera,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"pcC" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CE_Quarters)
+"pcN" = (
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/obj/random/junk,
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"pcU" = (
+/obj/machinery/light/small/emergency{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/nanites)
+"pdh" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"pdp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"pdq" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"pdN" = (
+/obj/structure/sign/directions/ai_core{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/ai_upload_foyer)
+"peh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"pei" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/bridge)
+"pek" = (
+/obj/machinery/conveyor{
+ id = "maintdelivery"
+ },
+/obj/random/junk,
+/obj/random/junk,
+/obj/random/junk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"pev" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/transit_tube{
+ icon_state = "W-SE"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/Galleryf2)
+"peR" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"peV" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/folder/red,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"pfg" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftstarboardsolar)
+"pfn" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/large_escape_pod1/centcom)
+"pfA" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"pfB" = (
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CMO_Quarters)
+"phu" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"piY" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"pjz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"pjD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"pjZ" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"plf" = (
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"plh" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/binary/pump{
+ name = "N2 to Mixing"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"plj" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"plv" = (
+/obj/machinery/vending/loadout/overwear,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/dressing)
+"plP" = (
+/obj/machinery/particle_smasher,
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"plV" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/deck/wizoff{
+ pixel_y = 7
+ },
+/obj/item/book/manual/wizzoffguide{
+ pixel_y = 1;
+ pixel_x = 7
+ },
+/obj/item/deck/tarot{
+ pixel_y = 2;
+ pixel_x = -10
+ },
+/obj/item/deck/schnapsen{
+ pixel_y = -1;
+ pixel_x = -3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"pmf" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green,
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "vld_exterior";
+ name = "Checkpoint Lockdown"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"pmr" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"pmN" = (
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -37
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D3 Library";
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf2)
+"pnq" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "maintnanites"
+ },
+/area/maintenance/cetus/nanites)
+"pox" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/sign/warning/airlock{
+ pixel_x = -32
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/plating,
+/area/ai)
+"poy" = (
+/obj/structure/barricade/cutout/lusty,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threefs)
+"poN" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"poU" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"ppf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"ppD" = (
+/obj/machinery/computer/med_data,
+/obj/item/radio/intercom/department/medbay{
+ dir = 1;
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/white{
+ color = "#8bbbd5"
+ },
+/area/bridge)
+"ppN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/sign/directions/engineering{
+ name = "\improper Engine";
+ dir = 8;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"pqk" = (
+/obj/structure/filingcabinet,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/detective)
+"pqT" = (
+/obj/effect/floor_decal/corner/orange/diagonal{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple,
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 4;
+ frequency = 1441;
+ id = "tox_in";
+ pixel_y = 1;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/phoron,
+/area/engineering/Atmospherics_Chamber)
+"psb" = (
+/obj/structure/closet/walllocker/emerglocker/east,
+/obj/structure/bed/roller,
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/large_escape_pod1/centcom)
+"pse" = (
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"psh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Captain_Quarters)
+"psD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"psF" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/computer/general_air_control{
+ frequency = 1491;
+ name = "PA Chamber Monitor";
+ sensors = list("pa_room"="Particle Accelerator Chamber");
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/research/particleaccelerator)
+"psQ" = (
+/obj/structure/bed/chair/comfy/yellow{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CE_Quarters)
+"psT" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"psU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"ptG" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"ptJ" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ icon_state = "map_vent_in";
+ id_tag = "waste_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/obj/effect/floor_decal/corner/lime/full{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/engineering/Atmospherics_Chamber)
+"ptW" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 8;
+ name = "Maintenance Access"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/flooded)
+"ptY" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"puF" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/starboard)
+"puH" = (
+/obj/structure/safe,
+/obj/item/clothing/under/color/yellow,
+/obj/item/key,
+/obj/item/toy/katana,
+/obj/item/melee/chainofcommand,
+/obj/item/disk/nuclear{
+ name = "authentication disk"
+ },
+/obj/item/moneybag/vault,
+/obj/item/clothing/glasses/monocoole,
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"pvF" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"pvY" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"pwt" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 8
+ },
+/obj/machinery/keycard_auth{
+ pixel_y = -30
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CMO_Quarters)
+"pxn" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"pxo" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/quartermaster/mininglockerroom)
+"pxs" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/light/floortube/flicker,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"pxw" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/boxing{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/jrthreestar)
+"pyh" = (
+/obj/structure/railing/overhang/grey{
+ color = "#917448";
+ dir = 8;
+ name = "box";
+ desc = "The edge of a box. Despite looking like cardboard, it feels like it's made of steel"
+ },
+/obj/structure/loot_pile/maint/boxfort,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"pyk" = (
+/obj/machinery/light/yellowed,
+/obj/structure/table/reinforced,
+/obj/random/forgotten_tram,
+/obj/random/maintenance/security,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"pyl" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"pyX" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 10
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Atmospherics Fore Port";
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"pzc" = (
+/obj/machinery/keycard_auth{
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoP_Quarters)
+"pzk" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/thirddeck/roof;
+ base_turf = /turf/simulated/floor/reinforced/turfpack/airless;
+ docking_controller = "andromeda_airlock_2";
+ landmark_tag = "andromeda_2";
+ name = "HIS Andromeda Dock 2 DO NOT USE";
+ use_docking_codes = 0
+ },
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/thirddeck/roof)
+"pzJ" = (
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"pzT" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"pAg" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"pAL" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"pAY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"pAZ" = (
+/obj/item/modular_computer/console/preset/medical,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/tiled/white{
+ color = "#8bbbd5"
+ },
+/area/bridge)
+"pBN" = (
+/obj/machinery/appliance/cooker/grill,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/light/broken/small,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"pBT" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/threefp)
+"pBW" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"pCx" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_east = 1;
+ tag_north = 3;
+ tag_west = 2
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"pCH" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D3 Art Cafe 2";
+ dir = 6
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"pCQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"pCR" = (
+/obj/structure/bed/pillowpile/red,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/badsnuggles)
+"pDO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Escape Pod"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"pEq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"pEz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 6
+ },
+/obj/machinery/meter{
+ name = "PA-Loop meter"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/research/particleaccelerator)
+"pEC" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "aftportsolar";
+ name = "Aft-Port Solar Array"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/aftportsolar)
+"pEN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/filingcabinet,
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"pEY" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"pEZ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"pFb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"pFh" = (
+/obj/machinery/door/window/eastright{
+ name = "Prizes"
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"pFn" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 19
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"pFp" = (
+/obj/structure/lattice,
+/obj/structure/sign/painting/public{
+ pixel_y = -32
+ },
+/obj/structure/sign/painting/public{
+ pixel_x = 31
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"pGO" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"pHc" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/transit_tube{
+ icon_state = "D-NW"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/rnd/cetus/entry)
+"pHm" = (
+/obj/structure/table/bench/steel,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf3)
+"pHH" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/shallow/flooded)
+"pIe" = (
+/obj/structure/table/standard,
+/obj/item/stock_parts/subspace/transmitter,
+/obj/item/stock_parts/subspace/transmitter,
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/treatment,
+/turf/simulated/floor/plating,
+/area/tcomm/tcomstorage)
+"pIA" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/Galleryf2)
+"pIH" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Secretary_Quarters)
+"pII" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"pJl" = (
+/obj/structure/disposaloutlet{
+ dir = 4;
+ layer = 3.3
+ },
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"pJD" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"pJE" = (
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"pJF" = (
+/obj/item/stool/padded{
+ dir = 8
+ },
+/obj/item/entrepreneur/dumbbell{
+ pixel_y = -2;
+ pixel_x = -1;
+ color = "gray"
+ },
+/turf/simulated/floor/boxing/gym,
+/area/maintenance/cetus/shallow/bodyguard)
+"pJW" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"pKb" = (
+/obj/structure/lattice,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threeap)
+"pKj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"pKn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"pKA" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"pKM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"pKN" = (
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"pKU" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/bodyguard)
+"pLC" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"pLD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"pLH" = (
+/obj/random/junk,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"pLU" = (
+/obj/structure/fireplace{
+ name = "decorative fireplace";
+ desc = "A fireplace with an integrated connection to the station's scrubber network.";
+ density = 0
+ },
+/obj/item/cracker/vore{
+ pixel_y = -10;
+ pixel_x = 15;
+ name = "bluespace cracker"
+ },
+/obj/item/clothing/mask/smokable/pipe{
+ pixel_y = 37;
+ pixel_x = 10
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"pMc" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"pMj" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/cyan{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"pMs" = (
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"pMS" = (
+/turf/simulated/floor/greengrid,
+/area/ai)
+"pMX" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"pNJ" = (
+/obj/structure/lattice,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"pNM" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/down{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/cetus/jointsubstation)
+"pOh" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"pOi" = (
+/obj/structure/railing/overhang/hazard,
+/obj/machinery/porta_turret/ai_defense,
+/turf/simulated/floor/redgrid,
+/area/security/nuke_storage)
+"pOF" = (
+/obj/structure/bed/chair/bay/comfy/yellow{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"pPc" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 1;
+ target_pressure = 200
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"pPr" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"pPZ" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/structure/curtain/medical,
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"pQg" = (
+/obj/machinery/atmospherics/binary/pump/high_power{
+ name = "PA-Room pump"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/research/particleaccelerator)
+"pQk" = (
+/obj/structure/table/steel,
+/obj/item/deck/cards{
+ pixel_y = 3;
+ pixel_x = -4
+ },
+/obj/item/deck/cards/casino{
+ pixel_y = 2;
+ pixel_x = 3
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"pQB" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Atmospherics_Chamber)
+"pRc" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/random/junk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"pRg" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"pRn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D3 Utility Atrium 2";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"pRJ" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/bridge/sleep/HoP_Quarters)
+"pRY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Secretary_Quarters)
+"pRZ" = (
+/obj/item/radio/intercom/locked/ai_private{
+ dir = 4;
+ pixel_x = 21
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/aihall)
+"pSg" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"pSh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/effect/landmark{
+ name = "maint_pred"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"pSk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"pSO" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoP_Quarters)
+"pTf" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Libraryf2)
+"pTG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"pTQ" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/sleep/CMO_Quarters)
+"pTV" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "d3lounge"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/lounge)
+"pUl" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"pUv" = (
+/obj/structure/sign/warning/nosmoking_2{
+ pixel_y = 32
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"pUM" = (
+/obj/random/cutout,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"pVi" = (
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/obj/random/junk,
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"pVn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"pVt" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/lattice,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"pWb" = (
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"pWn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"pWp" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"pWr" = (
+/obj/structure/bookcase{
+ name = "bookcase (Fiction)"
+ },
+/obj/item/book/bundle/custom_library/fiction/poemsforarainyday,
+/obj/item/book/bundle/custom_library/fiction/metalglen,
+/obj/item/book/bundle/custom_library/fiction/ghostship,
+/obj/item/book/bundle/custom_library/fiction/coldmountain,
+/obj/item/book/bundle/custom_library/fiction/chroniclesofmargatavol1,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/gamba)
+"pWu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"pWN" = (
+/turf/simulated/floor/reinforced/carbon_dioxide,
+/area/engineering/Atmospherics_Chamber)
+"pWZ" = (
+/obj/structure/table/standard,
+/obj/item/aiModule/asimov,
+/obj/item/aiModule/freeformcore,
+/obj/machinery/door/window{
+ base_state = "right";
+ icon_state = "right";
+ name = "Core Modules";
+ req_access = list(20)
+ },
+/obj/item/aiModule/corp,
+/obj/item/aiModule/paladin,
+/obj/item/aiModule/robocop,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/bluegrid,
+/area/ai_upload)
+"pXb" = (
+/obj/item/stool/padded{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"pXu" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/random/junk,
+/obj/random/trash,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/table/standard,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"pXJ" = (
+/obj/structure/bed/pillowpile/teal,
+/obj/item/toy/plushie/robo_corgi,
+/turf/unsimulated/floor/dark,
+/area/maintenance/cetus/jrthreeport)
+"pXO" = (
+/obj/effect/decal/cleanable/blood/old,
+/turf/simulated/floor/tiled/old_tile/gray,
+/area/maintenance/cetus/jrthreestar)
+"pXT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"pYi" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"pYj" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/threeap)
+"pYk" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"pYS" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"pYX" = (
+/obj/machinery/light/small/flicker{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreeport)
+"pZz" = (
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/structure/closet/crate,
+/obj/item/clothing/accessory/shiny/gloves,
+/obj/item/clothing/accessory/shiny/socks,
+/obj/item/clothing/head/shiny_hood,
+/obj/item/clothing/head/shiny_hood/closed,
+/obj/item/clothing/under/shiny/catsuit,
+/obj/item/clothing/under/shiny/leotard,
+/obj/item/clothing/under/shiny/leotard/poly,
+/obj/item/handcuffs/fuzzy,
+/obj/item/handcuffs/legcuffs/fuzzy,
+/obj/item/material/twohanded/riding_crop,
+/obj/item/tape_roll,
+/obj/item/stack/cable_coil/random,
+/obj/item/clothing/under/fluff/latexmaid,
+/obj/item/melee/fluff/holochain/mass,
+/obj/item/clothing/accessory/collar/shock,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/item/clothing/mask/muzzle,
+/obj/item/clothing/mask/muzzle/ballgag,
+/obj/item/clothing/mask/muzzle/ballgag/ringgag,
+/obj/item/clothing/under/skinsuit,
+/obj/item/clothing/under/skinsuit/fem,
+/obj/item/clothing/under/skinsuit/fem/gray,
+/obj/item/clothing/under/skinsuit/fem/leotard,
+/obj/item/clothing/under/skinsuit/fem/leotard/gray,
+/obj/item/clothing/under/skinsuit/gray,
+/obj/item/clothing/under/skinsuit/leotard,
+/obj/item/clothing/under/skinsuit/leotard/gray,
+/obj/item/clothing/under/rank/nullsuit/civ,
+/obj/item/clothing/accessory/shiny/gloves/poly,
+/obj/item/clothing/accessory/shiny/socks/poly,
+/obj/item/clothing/head/shiny_hood/poly,
+/obj/item/clothing/head/shiny_hood/closed/poly,
+/obj/item/clothing/under/shiny/catsuit/poly,
+/obj/item/clothing/under/shiny/leotard/poly,
+/obj/item/clothing/accessory/collar/shock,
+/obj/item/clothing/accessory/collar/shock/bluespace/modified,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/random/shibari,
+/obj/random/shibari,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/sex)
+"pZW" = (
+/obj/structure/transit_tube{
+ icon_state = "N-SE"
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/auxsupport)
+"qap" = (
+/obj/machinery/camera/motion/command{
+ dir = 6;
+ c_tag = "AI- Outer Hall 3"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"qaA" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"qaG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"qaV" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/structure/sign/warning/high_voltage{
+ pixel_y = 32
+ },
+/turf/simulated/floor/plating,
+/area/tcomm/chamber)
+"qaZ" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/aihall)
+"qbk" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 9
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"qbI" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"qbN" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"qbV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"qcm" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/computer/skills,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"qcN" = (
+/turf/unsimulated/floor/dark,
+/area/maintenance/cetus/jrthreeport)
+"qdi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"qdo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/bridge/Deck3_Corridor)
+"qdx" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"qes" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 9
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/plating,
+/area/rnd/research/particleaccelerator)
+"qet" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Disposal Access";
+ req_access = list(12)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"qeu" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"qev" = (
+/obj/random/obstruction,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"qeQ" = (
+/obj/structure/transit_tube,
+/obj/structure/lattice,
+/obj/structure/disposalpipe/down{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/auxsupport)
+"qeV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"qff" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"qfM" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"qgw" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/greengrid,
+/area/ai)
+"qgB" = (
+/obj/structure/table/standard,
+/obj/item/stock_parts/subspace/analyzer,
+/obj/item/stock_parts/subspace/analyzer,
+/obj/item/stock_parts/subspace/analyzer,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/tcomm/tcomstorage)
+"qhb" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"qhg" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4;
+ name = "Air Tank Bypass Pump"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"qht" = (
+/obj/structure/closet/secure_closet/atmos_personal,
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"qhy" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"qic" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftPort)
+"qih" = (
+/turf/simulated/wall,
+/area/bridge/sleep/Secretary_Quarters)
+"qiz" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/light,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"qiU" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/drinks/cans/waterbottle/wataur,
+/turf/simulated/floor/tiled/old_tile/gray,
+/area/maintenance/cetus/jrthreestar)
+"qjg" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/clipboard,
+/obj/item/folder/blue,
+/obj/item/pen,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/item/binoculars/spyglass,
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge)
+"qji" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"qju" = (
+/obj/structure/closet/emcloset{
+ anchored = 1
+ },
+/turf/simulated/floor/plating,
+/area/tcomm/tcomstorage)
+"qjv" = (
+/obj/machinery/sleep_console,
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/cetus/jrfirstaid)
+"qjT" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/carpet/brown,
+/area/maintenance/cetus/shallow/law)
+"qjU" = (
+/obj/structure/table/bench/wooden,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 3
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/bridge/sleep/CMO_Quarters)
+"qkm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"qkJ" = (
+/obj/random/unidentified_medicine/drug_den,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/badsnuggles)
+"qkS" = (
+/obj/machinery/vending/nukie,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"qlb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ai)
+"qlv" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/lounge)
+"qlw" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/oracarpet,
+/area/bridge/sleep/CE_Quarters)
+"qlx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"qmU" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Solar Starboard";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftStar)
+"qnh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"qoj" = (
+/obj/structure/railing/overhang/grey{
+ color = "#917448";
+ dir = 4;
+ name = "box";
+ desc = "The edge of a box. Despite looking like cardboard, it feels like it's made of steel"
+ },
+/obj/item/clothing/suit/cardborg,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"qow" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/tool/crowbar,
+/obj/item/multitool,
+/obj/machinery/recharger,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"qoD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"qoG" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar{
+ id = "aftstarboardsolar";
+ name = "Aft-Starboard Solar Array"
+ },
+/turf/simulated/floor/plating/turfpack/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/aftstarboardsolar)
+"qoM" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"qpa" = (
+/obj/machinery/light/small/fluorescent{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "maintnanites"
+ },
+/area/maintenance/cetus/nanites)
+"qpB" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"qqj" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/aihall)
+"qqZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"qry" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"qrH" = (
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"qsa" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/CMO_Quarters)
+"qsC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"qsS" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"qtb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"qtw" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"qtI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"qug" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"qun" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/obj/structure/bed/chair/office/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"quq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/machinery/power/apc/super/critical{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"qvb" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/open,
+/area/engineering/cetus/jointsubstation)
+"qvB" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"qvG" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/threeap)
+"qwE" = (
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"qwG" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/HoP_Quarters)
+"qxa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"qxk" = (
+/obj/machinery/pipedispenser/disposal,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"qxu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"qxB" = (
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/shallow/fp)
+"qyy" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/sex)
+"qyz" = (
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"qzq" = (
+/obj/structure/fireaxecabinet{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "COM - Bridge Port";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"qzO" = (
+/obj/effect/floor_decal/corner/black{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black,
+/obj/item/stool/baystool{
+ dir = 1;
+ pixel_y = 12
+ },
+/obj/effect/landmark/start/mime,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/mime)
+"qAb" = (
+/obj/structure/cable{
+ icon_state = "0-6"
+ },
+/obj/machinery/power/smes/buildable/max_charge_max_input{
+ RCon_tag = "Solar - Aft Port"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftPort)
+"qAc" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"qAu" = (
+/obj/machinery/ore_silo,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"qAx" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Bridge";
+ departmentType = 5;
+ name = "Bridge RC";
+ pixel_x = -28;
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"qAQ" = (
+/obj/structure/lattice,
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/thirddeck/roof)
+"qAS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ai)
+"qAW" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 2;
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"qBw" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/shallow/backstage)
+"qBU" = (
+/obj/structure/plasticflaps/mining,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/disposalpipe/up{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"qCg" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1441;
+ id = "waste_in";
+ pixel_y = 1;
+ use_power = 1
+ },
+/obj/effect/floor_decal/corner/lime/full,
+/turf/simulated/floor/reinforced/airless,
+/area/engineering/Atmospherics_Chamber)
+"qCn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"qCC" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"qCD" = (
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"qCR" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"qDj" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_north = 1;
+ tag_south = 2;
+ tag_west = 7
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"qDr" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/sd)
+"qEZ" = (
+/obj/structure/transit_tube{
+ icon_state = "S-NE"
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"qFp" = (
+/turf/simulated/wall,
+/area/asteroid/cetus/d3)
+"qFN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"qGp" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"qGT" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/bridge/Deck3_Corridor)
+"qGU" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"qHf" = (
+/obj/machinery/floodlight{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"qHh" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/medical/cetus/jrfirstaid)
+"qHi" = (
+/obj/structure/bed/chair/sofa/blue,
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"qHv" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"qIi" = (
+/obj/random/trash,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"qJa" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"qJf" = (
+/obj/random/pottedplant,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodaft)
+"qJo" = (
+/obj/item/gun/energy/sizegun/backfire,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/badsnuggles)
+"qJy" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"qJz" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"qJA" = (
+/obj/structure/displaycase,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Captain_Quarters)
+"qJP" = (
+/turf/simulated/mineral/cetus/edge,
+/area/crew_quarters/cetus/escapepodaft)
+"qKo" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"qKD" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoS_Quarters)
+"qLf" = (
+/obj/machinery/porta_turret/ai_defense,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/redgrid,
+/area/ai)
+"qLl" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/eva)
+"qLD" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/bed/pillowpile/red,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/lounge)
+"qLF" = (
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"qLV" = (
+/obj/structure/lattice,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"qMp" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "Starboard_Solars";
+ pixel_y = 21
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftStar)
+"qMB" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"qMG" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/regular,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/jrfirstaid)
+"qMK" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"qMZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"qNX" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/floodlight{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"qOg" = (
+/obj/structure/toilet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"qOj" = (
+/obj/structure/bed/chair/sofa/corner/purp{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/RD_Quarters)
+"qOw" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "waste_sensor";
+ output = 63
+ },
+/obj/effect/floor_decal/corner/lime/full{
+ dir = 8
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/engineering/Atmospherics_Chamber)
+"qON" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel{
+ color = "#3fc0ea";
+ name = "light blue towel";
+ pixel_x = -1;
+ pixel_y = 13
+ },
+/obj/item/towel{
+ color = "#3fc0ea";
+ name = "light blue towel";
+ pixel_x = -1;
+ pixel_y = 17
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Secretary_Quarters)
+"qOT" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/cetus/joint)
+"qPw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/research/particleaccelerator)
+"qPC" = (
+/obj/structure/table/woodentable,
+/obj/item/threadneedle,
+/obj/item/threadneedle,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"qQI" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ name = "Chemistry";
+ sortType = "Chemistry"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"qSu" = (
+/obj/machinery/vending/loadout/accessory,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"qSy" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"qSA" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ color = "#ff0000"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"qSK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"qTa" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftstarboardsolar)
+"qTD" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = 32
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod3/station)
+"qTF" = (
+/obj/structure/table/standard,
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 28;
+ pixel_x = -4
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 28;
+ pixel_x = 4
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 24;
+ pixel_x = 10
+ },
+/obj/machinery/light/small{
+ dir = 1;
+ nightshift_allowed = 0;
+ pixel_y = 24;
+ pixel_x = -10
+ },
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/item/makeover,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/dressing)
+"qTQ" = (
+/obj/structure/table/bench/wooden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"qTS" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"qUt" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"qVP" = (
+/obj/machinery/light/small/yellowed,
+/obj/structure/ghost_pod/ghost_activated/unified_hole,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"qVS" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"qVU" = (
+/obj/structure/table/steel,
+/obj/item/pack/cardemon{
+ pixel_y = -4;
+ pixel_x = -6
+ },
+/obj/item/pizzabox/old,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"qVW" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/retro_red,
+/area/bridge/sleep/HoS_Quarters)
+"qWq" = (
+/obj/machinery/computer/arcade{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"qWz" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small/yellowed,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"qWG" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Joint Research Public Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/escapepodjr)
+"qWO" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"qWP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1;
+ name = "1N-lighting fixture"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodstar)
+"qWV" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CE_Quarters)
+"qXs" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"qXv" = (
+/obj/structure/cable{
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"qYb" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"qZz" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Suite 2; Private Law Office"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/law)
+"qZO" = (
+/obj/structure/bed/pillowpile/teal,
+/obj/random/plushie,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"qZV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"qZY" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"raf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/shallow/flooded)
+"rak" = (
+/obj/structure/cliff/automatic,
+/turf/simulated/floor/boxing{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/jrthreestar)
+"raF" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/machinery/airlock_sensor{
+ pixel_y = 20;
+ pixel_x = -7
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/light/small/emergency,
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "andromeda_airlock_3";
+ req_one_access = list(13);
+ pixel_y = 21;
+ pixel_x = 7
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"raP" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"raX" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 12;
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf2)
+"rbj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"rbn" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus/edge,
+/area/thirddeck/roof)
+"rbC" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"rbU" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"rcu" = (
+/obj/structure/table/standard,
+/obj/item/stack/material/smolebricks,
+/obj/item/stack/material/smolebricks,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"rcy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/bench/steel,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"rcY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"rdE" = (
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/crew_quarters/cetus/lounge)
+"rdG" = (
+/obj/structure/bed/chair/sofa/left/purp,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/RD_Quarters)
+"rdX" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/theater)
+"red" = (
+/obj/structure/curtain/open{
+ name = "stage curtain";
+ color = "#701006";
+ anchored = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/dummystairs/bronzeledge{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/theater)
+"rfd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"rfz" = (
+/obj/structure/bed/chair/bay/chair/padded/red/bignest,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/badsnuggles)
+"rfP" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"rfX" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/lounge)
+"rfZ" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"rgj" = (
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"rgM" = (
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"rgT" = (
+/obj/structure/railing/overhang/grey{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"rhv" = (
+/obj/machinery/door/airlock/command{
+ id_tag = "captaindoor";
+ name = "Station Director's Office";
+ req_access = list(20)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/heads/sc/sd)
+"rhw" = (
+/obj/structure/table/bench/wooden,
+/obj/item/melee/chainofcommand{
+ pixel_y = 35;
+ pixel_x = -15
+ },
+/obj/random_multi/single_item/captains_spare_id,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/sd)
+"rhI" = (
+/obj/structure/lattice,
+/obj/structure/cable{
+ icon_state = "32-1"
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"rhX" = (
+/obj/item/clothing/glasses/welding{
+ pixel_y = 5
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/glasses/welding{
+ pixel_y = 2
+ },
+/obj/item/clothing/glasses/welding{
+ pixel_y = -2
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"rih" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"riw" = (
+/obj/structure/cable/cyan{
+ icon_state = "5-10"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"riL" = (
+/obj/structure/railing/overhang/bronze{
+ dir = 4
+ },
+/obj/structure/dummystairs/bronzeledge{
+ dir = 1
+ },
+/obj/structure/railing/overhang/bronze{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/threeas)
+"riX" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1381;
+ id_tag = "server_access_pump";
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{
+ frequency = 1381;
+ id_tag = "server_access_airlock";
+ name = "Server Access Airlock";
+ tag_airpump = "server_access_pump";
+ tag_chamber_sensor = "server_access_sensor";
+ tag_exterior_door = "server_access_outer";
+ tag_exterior_sensor = "server_access_ex_sensor";
+ tag_interior_door = "server_access_inner";
+ tag_interior_sensor = "server_access_in_sensor";
+ tag_secure = 1;
+ dir = 4;
+ pixel_x = -26
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/tcomm/computer)
+"rjd" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/catwalk,
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"rjg" = (
+/obj/machinery/door/blast/radproof/open{
+ id = "PAShroud";
+ name = "Particle Accelerator Shroud"
+ },
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"rjr" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/item/nailpolish_remover{
+ pixel_y = 7;
+ pixel_x = 7
+ },
+/obj/item/nailpolish,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/dressing)
+"rjy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"rjF" = (
+/obj/structure/closet/walllocker/medical{
+ pixel_y = -30
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/effect/shuttle_landmark/southern_cross/escape_pod4/station,
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{
+ frequency = 1381;
+ id_tag = "escape_pod_4";
+ pixel_y = 25;
+ tag_door = "escape_pod_4_hatch"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod4/station)
+"rjK" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Solar Joint Research"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"rjV" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"rkI" = (
+/obj/machinery/computer/arcade/clawmachine,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"rlt" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"rlx" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/large_escape_pod1/centcom)
+"rlW" = (
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threeas)
+"rlZ" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftPort)
+"rmt" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"rmw" = (
+/obj/structure/micro_tunnel/random{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/asteroid/cetus/d3)
+"rmX" = (
+/obj/machinery/optable,
+/obj/machinery/oxygen_pump/anesthetic{
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"rmY" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"rnk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"rnw" = (
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"rnR" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/escapepodjr)
+"rnV" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/turf/simulated/floor/boxing/gym{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/sex)
+"roa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"rof" = (
+/obj/effect/floor_decal/corner/blue/full,
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ icon_state = "map_vent_in";
+ id_tag = "o2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/engineering/Atmospherics_Chamber)
+"roD" = (
+/obj/random/junk,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"roW" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/Deck3_Corridor)
+"rpz" = (
+/obj/structure/railing/overhang/grey{
+ color = "#917448";
+ dir = 1;
+ name = "box";
+ desc = "The edge of a box. Despite looking like cardboard, it feels like it's made of steel"
+ },
+/obj/item/stack/material/cardboard,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"rpF" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/syndie_kit/spy,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"rpW" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/engine)
+"rqn" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/loading/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"rrn" = (
+/obj/structure/fitness/punchingbag,
+/turf/simulated/floor/boxing/gym,
+/area/maintenance/cetus/shallow/bodyguard)
+"rrs" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"rrP" = (
+/obj/structure/railing/grey,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/bridge/sleep/HoS_Quarters)
+"rrW" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"rsk" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"rsw" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/clown)
+"rsJ" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"rsO" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodaft)
+"rtk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"rtx" = (
+/obj/random/trash,
+/turf/simulated/floor/tiled/old_tile/gray,
+/area/maintenance/cetus/jrthreestar)
+"rtF" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"rtG" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ color = "#0000ff"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"rtW" = (
+/obj/structure/table/rack/shelf,
+/obj/item/grenade/anti_photon/rubberducky/black{
+ pixel_y = 5;
+ pixel_x = 7
+ },
+/obj/item/grenade/anti_photon/rubberducky/black{
+ pixel_y = 5;
+ pixel_x = -5
+ },
+/obj/item/gun/launcher/confetti_cannon{
+ pixel_y = 15
+ },
+/obj/item/nif/glitch/bad{
+ pixel_y = -9;
+ pixel_x = -3
+ },
+/obj/item/capture_crystal{
+ pixel_y = -8;
+ pixel_x = 5
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"rtY" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/escape_pod2/station)
+"ruN" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"ruO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"rvI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"rvQ" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"rwu" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"rwB" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ icon_state = "map_vent_in";
+ id_tag = "n2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/obj/effect/floor_decal/corner/red/full,
+/turf/simulated/floor/reinforced/nitrogen,
+/area/engineering/Atmospherics_Chamber)
+"rwM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/maintenance/cetus/shallow/quack)
+"rxk" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"rxs" = (
+/turf/simulated/wall,
+/area/bridge/sleep/CMO_Quarters)
+"rxF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CE_Quarters)
+"ryg" = (
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "AI Core";
+ req_access = list(16)
+ },
+/obj/structure/sign/warning/acid{
+ name = "\improper DANGEROUS NANITES";
+ desc = "This sign warns of the dangers of AI-controlled S10-P recycling and crowd control nanite hives in the area.";
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"ryk" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"ryl" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/obj/structure/window/reinforced,
+/obj/machinery/computer/crew{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/jrfirstaid)
+"ryC" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"ryI" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"ryU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/floor_decal/rust,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/flooded)
+"ryZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"rzx" = (
+/obj/structure/table/bench/padded,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/theater)
+"rzC" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"rzI" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/threecp)
+"rzJ" = (
+/obj/structure/bed/roller,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"rzO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"rAa" = (
+/obj/machinery/shower{
+ pixel_y = 16
+ },
+/obj/structure/curtain/open/shower,
+/obj/structure/window/basic{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/RD_Quarters)
+"rAh" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common{
+ name = "Dormitory"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/gray,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"rAD" = (
+/turf/simulated/floor/smole,
+/area/maintenance/cetus/d3docks)
+"rAY" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/d3docks)
+"rBe" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/computer/skills{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"rBW" = (
+/obj/structure/sign/painting/public{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/bordercorner2{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"rCB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Captain_Quarters)
+"rCC" = (
+/obj/structure/dark_portal/minion,
+/obj/effect/map_effect/interval/effect_emitter/sparks,
+/turf/unsimulated/floor/dark,
+/area/maintenance/cetus/jrthreeport)
+"rCH" = (
+/obj/structure/bed/chair/bay/comfy/yellow{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"rCT" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"rDe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"rDh" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"rDo" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/engine)
+"rDJ" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 4;
+ frequency = 1441;
+ id = "n2o_in";
+ pixel_y = 1;
+ use_power = 1
+ },
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red,
+/turf/simulated/floor/reinforced/n20,
+/area/engineering/Atmospherics_Chamber)
+"rDQ" = (
+/obj/structure/table/standard,
+/obj/item/destTagger,
+/obj/item/destTagger,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"rEo" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/rddouble,
+/turf/simulated/floor/carpet/purcarpet,
+/area/bridge/sleep/RD_Quarters)
+"rEI" = (
+/obj/structure/grille,
+/obj/structure/shuttle/window,
+/turf/simulated/shuttle/plating,
+/area/shuttle/large_escape_pod1/centcom)
+"rEZ" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/lattice,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"rFx" = (
+/obj/structure/bed/chair/sofa/blue{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "COM - Vault Lobby";
+ dir = 8;
+ network = list("Command")
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"rFJ" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/Libraryf2)
+"rFY" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"rGM" = (
+/obj/structure/bed/chair/bay/chair,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"rHE" = (
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"rHW" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/structure/sign/painting/public{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"rIn" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"rIN" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/quack)
+"rIV" = (
+/turf/simulated/floor/tiled/old_tile/gray,
+/area/maintenance/cetus/jrthreestar)
+"rJu" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ pixel_x = -22
+ },
+/obj/structure/bed/chair/sofa/corner/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"rKn" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"rKt" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/boxing/gym{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/sex)
+"rKF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Captain_Quarters)
+"rLa" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"rLI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"rLJ" = (
+/obj/structure/dummystairs,
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"rMD" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/surgery,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"rMS" = (
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/engineering/cetus/aftsubstation)
+"rNw" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/airless,
+/area/solar/forestarboardsolar)
+"rNB" = (
+/turf/simulated/wall/r_lead,
+/area/rnd/research/particleaccelerator)
+"rNH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/obj/machinery/access_button{
+ name = "interior access button";
+ pixel_y = 24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"rOq" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-5"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"rOA" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"rPj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"rPv" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/mineral/cetus,
+/area/bridge/sleep/Secretary_Quarters)
+"rQR" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/starboard)
+"rQW" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/railing/grey,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"rRp" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible/cyan,
+/obj/machinery/computer/general_air_control/large_tank_control{
+ frequency = 1443;
+ input_tag = "air_in";
+ name = "Mixed Air Supply Control";
+ output_tag = "air_out";
+ pressure_setting = 2000;
+ sensors = list("air_sensor"="Tank")
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"rRw" = (
+/turf/simulated/mineral/cetus,
+/area/asteroid/cetus/d3)
+"rRB" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"rSo" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/purple,
+/area/shuttle/large_escape_pod1/centcom)
+"rSB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/universal,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"rSO" = (
+/obj/structure/barricade,
+/obj/machinery/door/airlock/maintenance{
+ name = "Prop Storage"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"rTI" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/computer)
+"rTJ" = (
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "COM - Vault Catwalk";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"rUb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"rUw" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"rUN" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"rVs" = (
+/obj/machinery/atmospherics/binary/pump/high_power{
+ name = "PA-Room siphon pump";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/research/particleaccelerator)
+"rVN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Telecommunications";
+ req_access = list(17);
+ req_one_access = list(17)
+ },
+/obj/structure/sign/warning/lethal_turrets{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcomm/computer)
+"rVR" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"rVT" = (
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = -5
+ },
+/turf/simulated/floor/greengrid,
+/area/ai)
+"rVV" = (
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"rVY" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"rWb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"rWm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"rWu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/purple,
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/research/particleaccelerator)
+"rWx" = (
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"rWz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8;
+ req_one_access = list(7, 9, 39, 55)
+ },
+/obj/machinery/door/window/brigdoor/westleft{
+ name = "Containment Pen";
+ req_access = list(47)
+ },
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/purple,
+/area/shuttle/large_escape_pod1/centcom)
+"rWR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"rXb" = (
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"rXc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/law)
+"rXL" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"rXO" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4;
+ icon_state = "map_vent_out";
+ name = "PA-Room Air Vent";
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"rYi" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Theater Access"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"rYn" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_east = 2;
+ tag_north = 1;
+ tag_west = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"rYL" = (
+/obj/structure/table/bench/wooden,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/RD_Quarters)
+"rZp" = (
+/obj/machinery/camera/motion/command{
+ dir = 8;
+ c_tag = "AI- Outer Hall 1"
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/lattice,
+/obj/structure/cable/cyan{
+ icon_state = "1-10"
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/starboard)
+"rZy" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ dir = 8;
+ pixel_x = 29;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/CE_Quarters)
+"rZz" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/threefs)
+"rZH" = (
+/obj/structure/sign/directions/engineering{
+ name = "\improper Engine";
+ pixel_y = 6
+ },
+/obj/structure/sign/directions/kitchen{
+ pixel_y = -6;
+ dir = 4
+ },
+/obj/structure/sign/directions/medical,
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"rZR" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "vld_exterior";
+ name = "Checkpoint Lockdown"
+ },
+/obj/item/radio/phone{
+ pixel_y = 3
+ },
+/obj/machinery/door/window/brigdoor/northleft{
+ name = "Vault Checkpoint";
+ req_one_access = list(1,19);
+ req_access = null
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"sak" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"sas" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "ENG - Solar Fore Port";
+ dir = 1
+ },
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = -24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForPort)
+"sat" = (
+/obj/machinery/floodlight{
+ dir = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threeas)
+"saK" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/research/particleaccelerator)
+"saN" = (
+/obj/structure/table/bench/steel,
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/quartermaster/storage)
+"saV" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/escapepodjr)
+"saX" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"sba" = (
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"sbo" = (
+/obj/structure/table/woodentable,
+/obj/item/paper_bin,
+/obj/item/folder/yellow_ce,
+/obj/item/pen/multi,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CE_Quarters)
+"sbx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"sbL" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"sbU" = (
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"sda" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"sdy" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/quartermaster/storage)
+"sdH" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/structure/bed/chair/sofa/corp/left{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"sdX" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/sleep/HoS_Quarters)
+"sel" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/sign/warning/acid{
+ name = "\improper DANGEROUS NANITES";
+ desc = "This sign warns of the dangers of AI-controlled S10-P recycling and crowd control nanite hives in the area.";
+ pixel_y = -32
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "nanitehall"
+ },
+/area/ai_monitored/aihall)
+"seU" = (
+/obj/structure/table/bench/wooden,
+/obj/item/paper_bin,
+/obj/item/folder/blue,
+/obj/item/pen/multi,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Secretary_Quarters)
+"seV" = (
+/obj/structure/closet/secure_closet/freezer/money,
+/obj/item/storage/secure/briefcase/money{
+ desc = "An sleek tidy briefcase.";
+ name = "secure briefcase"
+ },
+/obj/effect/floor_decal/industrial/warning/cee,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"sft" = (
+/obj/structure/table/bench/padded,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/theater)
+"sfv" = (
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/boxing,
+/area/maintenance/cetus/shallow/quack)
+"sfW" = (
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"sgw" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "ATMTK - Gas Mixing"
+ },
+/obj/effect/floor_decal/corner/lime/full{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/engineering/Atmospherics_Chamber)
+"sgP" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"sgR" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/engineering/cetus/jointsubstation)
+"sgY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"shv" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/shallow/flooded)
+"shD" = (
+/turf/simulated/mineral/cetus/edge,
+/area/maintenance/substation/central)
+"siA" = (
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"siO" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"siR" = (
+/obj/structure/toilet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"sjj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"sjm" = (
+/obj/random/maintenance,
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"sjq" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"skq" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/engineering/Atmospherics_Chamber)
+"skJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"slw" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"smm" = (
+/obj/structure/table/bench/steel,
+/obj/random/junk,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodstar)
+"sng" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"sni" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"snu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"snQ" = (
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/cetus/joint)
+"snX" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 19
+ },
+/turf/simulated/floor/tiled,
+/area/maintenance/cetus/shallow/flooded)
+"som" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"soK" = (
+/obj/machinery/light{
+ dir = 8;
+ name = "1E-light fixture"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"soW" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"sqs" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"sqI" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod 4 Hatch"
+ },
+/obj/effect/map_helper/airlock/door/simple,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod4/station)
+"sre" = (
+/obj/machinery/porta_turret/ai_defense,
+/turf/simulated/floor/redgrid,
+/area/security/nuke_storage)
+"srl" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/light/spot{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"srB" = (
+/obj/machinery/light/small/fairylights{
+ pixel_y = 15
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"srN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"srX" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"ssT" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/substation/central)
+"sta" = (
+/obj/machinery/atmospherics/pipe/zpipe/down/supply,
+/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,
+/obj/structure/disposalpipe/down,
+/obj/structure/cable{
+ icon_state = "32-4"
+ },
+/obj/structure/lattice,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/engineering/Atmospherics_Chamber)
+"stp" = (
+/obj/random/junk,
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/kafel_full,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"stX" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"suk" = (
+/obj/structure/closet/crate,
+/obj/random/toy,
+/obj/random/toy,
+/obj/random/toy,
+/obj/random/toy,
+/obj/random/toy,
+/obj/random/toy,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"sut" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftstarboardsolar)
+"suB" = (
+/obj/item/stool/baystool/padded{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"suM" = (
+/obj/structure/closet/crate,
+/obj/item/mail/junkmail,
+/obj/item/mail/junkmail,
+/obj/item/mail/junkmail,
+/obj/item/mail/junkmail,
+/obj/item/mail/junkmail,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"svq" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/hosdouble,
+/turf/simulated/floor/carpet/retro_red,
+/area/bridge/sleep/HoS_Quarters)
+"svv" = (
+/obj/structure/table/reinforced,
+/obj/random/miniature,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"svB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"svN" = (
+/obj/structure/table/bench/standard,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"swj" = (
+/obj/structure/girder/displaced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"swz" = (
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/solar/cetus/joint)
+"swJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 9
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"swZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"sxm" = (
+/turf/simulated/open,
+/area/engineering/cetus/aftsubstation)
+"sxG" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"syd" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/catwalk,
+/obj/structure/micro_tunnel/random{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"syk" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"syE" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"syJ" = (
+/obj/structure/railing/overhang/grey,
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"szb" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"sze" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 1
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"szq" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 19
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"sAk" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -25;
+ pixel_y = 11
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"sAo" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "ATMTK - Air"
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/effect/floor_decal/corner/blue{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airmix,
+/area/engineering/Atmospherics_Chamber)
+"sBd" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"sBl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"sBr" = (
+/obj/random/junk,
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating{
+ icon_state = "dmg4"
+ },
+/area/maintenance/cetus/shallow/derelict/hallway)
+"sBw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"sBD" = (
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/machinery/light_switch{
+ pixel_y = -13;
+ pixel_x = 26;
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/sex)
+"sBK" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 1
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"sDo" = (
+/obj/random/obstruction,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"sDp" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"sDF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"sDX" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"sDZ" = (
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"sEA" = (
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/aihall)
+"sEF" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"sFm" = (
+/obj/structure/window/reinforced,
+/turf/simulated/mineral/cetus,
+/area/bridge/sleep/Secretary_Quarters)
+"sFQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"sGF" = (
+/obj/structure/cable/green{
+ icon_state = "0-9"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "bridge_center"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/bridge)
+"sGM" = (
+/obj/structure/bed/chair/bay/comfy/yellow{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"sHd" = (
+/turf/simulated/floor/reinforced/phoron,
+/area/engineering/Atmospherics_Chamber)
+"sHv" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"sIm" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"sIJ" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"sIP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/engineering/cetus/aftsubstation)
+"sJi" = (
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"sJo" = (
+/obj/structure/closet/crate/freezer,
+/obj/random/pizzabox,
+/obj/random/pizzabox,
+/obj/random/pizzabox,
+/obj/item/pizzabox/old,
+/obj/item/pizzabox/old,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/maintenance/cetus/arcade)
+"sKL" = (
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating,
+/area/thirddeck/roof)
+"sLC" = (
+/obj/structure/bed/pod,
+/obj/machinery/light/small/yellowed,
+/obj/random/forgotten_tram,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"sLL" = (
+/obj/structure/bed/pillowpile/red,
+/obj/item/toy/plushie/otter,
+/turf/unsimulated/floor/dark,
+/area/maintenance/cetus/jrthreeport)
+"sLM" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/cetus/stairwellf3)
+"sLT" = (
+/obj/structure/bed/chair/sofa/left/brown,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"sLU" = (
+/obj/structure/bed/pod{
+ pixel_y = 14
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/random/forgotten_tram,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"sMD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/turf/simulated/floor/plating,
+/area/hallway/primary/firstdeck/vaultlobby)
+"sMY" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"sNa" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Backstage";
+ req_one_access = list(72)
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/theater)
+"sNx" = (
+/obj/structure/table/woodentable,
+/obj/item/hand_tele,
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Captain_Quarters)
+"sNU" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/foreportsolar)
+"sNX" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"sOa" = (
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/bridge/Deck3_Corridor)
+"sOd" = (
+/obj/random/junk,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"sOg" = (
+/obj/random/pottedplant,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CE_Quarters)
+"sOu" = (
+/obj/structure/table/bench/wooden,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"sOx" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"sOC" = (
+/obj/structure/firedoor_assembly,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"sOE" = (
+/obj/effect/floor_decal/corner/black{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/black,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/mime)
+"sOT" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"sOV" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"sPg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"sQg" = (
+/obj/item/stack/rods,
+/obj/item/material/shard,
+/obj/item/inflatable/torn,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"sQj" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"sQB" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"sQK" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"sQQ" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/shallow/ap)
+"sQR" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"sRO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/power/smes/buildable/max_charge_max_input{
+ RCon_tag = "Unused Sector"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/engine)
+"sSc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/maintenance_hatch{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "server_access_outer";
+ locked = 1;
+ name = "Telecoms Server Access";
+ req_access = list(61);
+ req_one_access = list(61)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/sign/warning/lethal_turrets{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/tcomm/computer)
+"sSf" = (
+/obj/random/junk,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"sSw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"sSJ" = (
+/obj/machinery/porta_turret/ai_defense,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/redgrid,
+/area/security/nuke_storage)
+"sSY" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"sTe" = (
+/obj/structure/smolebuilding/business,
+/turf/simulated/floor/smole,
+/area/maintenance/cetus/d3docks)
+"sTu" = (
+/obj/machinery/telecomms/processor/preset_two,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"sTO" = (
+/turf/simulated/wall,
+/area/engineering/cetus/portsubstation)
+"sUj" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "theater"
+ },
+/turf/simulated/floor/plating,
+/area/crew_quarters/cetus/theater)
+"sUo" = (
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"sUA" = (
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"sUV" = (
+/obj/structure/cable{
+ icon_state = "2-5"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodstar)
+"sVH" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "o2_sensor"
+ },
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/engineering/Atmospherics_Chamber)
+"sVL" = (
+/obj/structure/smoleruins,
+/turf/simulated/floor/smole,
+/area/maintenance/cetus/d3docks)
+"sWA" = (
+/turf/simulated/wall,
+/area/medical/cetus/jrfirstaid)
+"sWG" = (
+/obj/structure/barricade/cutout/viva,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"sWL" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"sXi" = (
+/obj/structure/lattice,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"sXA" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodstar)
+"sXF" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"sXK" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge";
+ req_access = list(19)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge)
+"sYz" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/random/trash_pile,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"sYT" = (
+/obj/structure/sign/warning/lethal_turrets{
+ pixel_x = 32
+ },
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/door/blast/regular{
+ id = "AICore";
+ name = "AI core maintenance hatch"
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 1;
+ name = "exterior access button";
+ pixel_x = -31;
+ pixel_y = 10
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/turf/simulated/floor/plating,
+/area/ai)
+"sZC" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/structure/closet/walllocker/emerglocker/west,
+/turf/simulated/shuttle/floor,
+/area/shuttle/large_escape_pod1/centcom)
+"sZJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Dock"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"sZR" = (
+/obj/structure/bed/chair/comfy/orange,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"sZX" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"sZY" = (
+/obj/effect/floor_decal/industrial/warning/cee,
+/turf/simulated/shuttle/floor/purple,
+/area/shuttle/large_escape_pod1/centcom)
+"taM" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -20
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"tbt" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ dir = 8;
+ pixel_x = 29;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/HoS_Quarters)
+"tbG" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"tbU" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"tcc" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"tck" = (
+/obj/structure/grille,
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"tcI" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"tcW" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"tcY" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner2{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"tdd" = (
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"tdg" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"tdv" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"tec" = (
+/obj/effect/weaversilk/wall,
+/turf/simulated/floor/carpet/happy,
+/area/maintenance/cetus/d3docks)
+"tel" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"teE" = (
+/obj/structure/undies_wardrobe{
+ anchored = 1
+ },
+/obj/structure/curtain/open{
+ name = "dressing curtain";
+ color = "#701006";
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/dressing)
+"teK" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/storage/pill_bottle/dice_nerd{
+ pixel_y = 9;
+ pixel_x = 5
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"tfh" = (
+/obj/structure/dummystairs/hazardledge,
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"tgz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"tgZ" = (
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/thirddeck/roof)
+"thi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"tho" = (
+/obj/structure/bed/chair/comfy/red{
+ dir = 4
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = -26
+ },
+/obj/machinery/button/remote/airlock{
+ id = "hosquarters";
+ name = "Bolt Control";
+ pixel_y = 9;
+ req_access = list(58);
+ specialfunctions = 4;
+ dir = 4;
+ pixel_x = -27
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoS_Quarters)
+"thw" = (
+/obj/structure/cable{
+ icon_state = "2-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"thM" = (
+/obj/machinery/vending/wardrobe/clowndrobe,
+/turf/simulated/floor/carpet/gaycarpet,
+/area/crew_quarters/cetus/clown)
+"thN" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/boxing/gym,
+/area/maintenance/cetus/jrthreestar)
+"thP" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = -25;
+ dir = 1
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/bridge/secretaryoffice)
+"thY" = (
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"tie" = (
+/obj/machinery/computer/borgupload,
+/turf/simulated/floor/bluegrid,
+/area/ai_upload)
+"tif" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"tik" = (
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"tim" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"tiW" = (
+/obj/structure/table/rack/shelf,
+/obj/item/toy/figure/virologist{
+ pixel_y = -4;
+ pixel_x = -7
+ },
+/obj/item/toy/figure/wizard{
+ pixel_y = -4
+ },
+/obj/item/toy/figure/ninja{
+ pixel_x = -6;
+ pixel_y = 15
+ },
+/obj/item/toy/figure/warden{
+ pixel_y = 15;
+ pixel_x = 1
+ },
+/obj/item/toy/figure/syndie{
+ pixel_y = 15;
+ pixel_x = 6
+ },
+/obj/item/toy/figure/paramedic{
+ pixel_y = -4;
+ pixel_x = 6
+ },
+/obj/machinery/door/window/eastright{
+ name = "Prizes"
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"tjI" = (
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/door/airlock{
+ name = "Bathroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Secretary_Quarters)
+"tjV" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-9"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"tkE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/starsubstation)
+"tkQ" = (
+/obj/structure/cable{
+ icon_state = "4-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"tkY" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"tlr" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"tlF" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"tlP" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ id_tag = "cmoquarters";
+ name = "CMO's Quarters";
+ req_access = list(40)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge/sleep/CMO_Quarters)
+"tme" = (
+/obj/structure/bed/pillowpile,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/badsnuggles)
+"tnw" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "COM - Bridge Starboard";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"tnC" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"tnT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"toe" = (
+/obj/structure/cable/green,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "bridge_center"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/bridge)
+"tol" = (
+/obj/structure/cable/green{
+ icon_state = "6-8"
+ },
+/obj/structure/barricade/cutout,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"toq" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ id = "PARoomEmitter";
+ state = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"tov" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"toE" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"tps" = (
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"tpF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload)
+"tpG" = (
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"tpH" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoP_Quarters)
+"tpK" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/down,
+/obj/structure/cable/green{
+ icon_state = "32-2"
+ },
+/obj/structure/ladder,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"tpU" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"tqk" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"tqp" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"tqs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/sign/warning/airlock{
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"tre" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"trq" = (
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/button/remote/emitter{
+ id = "PARoomEmitter";
+ name = "PA Room Emitter";
+ pixel_x = 5;
+ req_access = list(7);
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "PAShroud";
+ name = "PA Shroud Blast Doors";
+ pixel_x = -4;
+ req_access = list(7);
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/research/particleaccelerator)
+"trx" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/port_gen/pacman/super/potato,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/engine)
+"trz" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = -32
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod4/station)
+"trF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"trK" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForStar)
+"trP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/steel,
+/obj/item/pack/spaceball{
+ pixel_y = -2
+ },
+/obj/item/pack/spaceball{
+ pixel_y = 2;
+ pixel_x = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"trT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"tsg" = (
+/obj/random/obstruction,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/threeap)
+"tss" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/theater)
+"tsR" = (
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"ttl" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"ttz" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"ttH" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ name = "Secretary Office";
+ req_access = list(19)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge/secretaryoffice)
+"ttI" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"tui" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"tul" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/sleep/HoP_Quarters)
+"tuu" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-9"
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"tvD" = (
+/obj/machinery/mech_recharger,
+/obj/machinery/vending/wallmed1{
+ name = "NanoMed Wall";
+ pixel_x = -25
+ },
+/turf/simulated/floor/redgrid,
+/area/medical/cetus/jrfirstaid)
+"tvI" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Suite 4; Private Security Services"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "5-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/bodyguard)
+"tvJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"tvU" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"twL" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/rnd/research/particleaccelerator)
+"txs" = (
+/obj/machinery/door/blast/radproof/open{
+ id = "PAShroud";
+ name = "Particle Accelerator Shroud"
+ },
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"txQ" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 4
+ },
+/obj/machinery/light/floortube{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"txY" = (
+/obj/structure/cable{
+ icon_state = "0-5"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftPort)
+"tya" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposaloutlet{
+ pixel_y = -6
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threeap)
+"tyk" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"tym" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ id_tag = "rdquarters";
+ name = "Research Director Quarters";
+ req_access = list(30)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge/sleep/RD_Quarters)
+"tyn" = (
+/obj/structure/bed/chair/bay/comfy/captain{
+ dir = 1
+ },
+/obj/effect/landmark/start/captain,
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge)
+"tys" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "maintdelivery";
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"tyI" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -8
+ },
+/obj/structure/mirror{
+ dir = 1;
+ pixel_y = -25
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"tyK" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"tyP" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/shallow/backstage)
+"tyT" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"tyU" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"tzf" = (
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/maintenance/cetus/threeap)
+"tzv" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftStar)
+"tzR" = (
+/obj/structure/barricade/cutout/free_antag,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"tzZ" = (
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/secretaryoffice)
+"tAE" = (
+/obj/machinery/deployable/barrier,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"tAN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Disposal Access"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"tBq" = (
+/obj/machinery/computer/transhuman/resleeving{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"tBs" = (
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"tBD" = (
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/CE_Quarters)
+"tBI" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/cyan{
+ icon_state = "5-6"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"tBO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/bridge/Deck3_Corridor)
+"tCN" = (
+/obj/machinery/light{
+ layer = 3
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"tDj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/portsubstation)
+"tDP" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CE_Quarters)
+"tDQ" = (
+/obj/structure/bed/pod,
+/obj/random/forgotten_tram,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"tEl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"tEA" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"tEO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"tEW" = (
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"tFc" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"tFK" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"tFS" = (
+/obj/structure/cable{
+ icon_state = "8-10"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"tGP" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 2;
+ name = "Maintenance Access"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"tHf" = (
+/obj/structure/girder,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"tHr" = (
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/obj/structure/curtain/bed{
+ name = "curtain";
+ dir = 8;
+ anchored = 1;
+ pixel_x = -11
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/quack)
+"tHR" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/RD_Quarters)
+"tIc" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"tIj" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreeport)
+"tJC" = (
+/obj/machinery/computer/arcade{
+ dir = 8
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"tJE" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/escape_pod3/station)
+"tJJ" = (
+/turf/simulated/floor/reinforced/airmix,
+/area/engineering/Atmospherics_Chamber)
+"tJZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Central Substation";
+ req_one_access = list(11, 24)
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"tKc" = (
+/obj/random/junk,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"tKk" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/engine)
+"tKx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"tKG" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf3)
+"tKH" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 9
+ },
+/obj/structure/fitness/weightlifter,
+/turf/simulated/floor/boxing/gym,
+/area/maintenance/cetus/jrthreestar)
+"tLg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/door/airlock/vault/bolted{
+ autoclose = 0;
+ frequency = 1969;
+ id_tag = "vaultdoorbolt";
+ req_access = list(53)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"tLn" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -9
+ },
+/obj/structure/mirror{
+ pixel_y = -26;
+ dir = 1
+ },
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"tLq" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"tLr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"tLs" = (
+/obj/structure/salvageable/bliss,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"tLR" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"tMa" = (
+/obj/structure/railing/overhang/bronze{
+ dir = 1
+ },
+/obj/machinery/light/small/fairylights{
+ pixel_y = 15
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/theater)
+"tMb" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"tMM" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/engine)
+"tNk" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/solar{
+ id = "aftportsolar";
+ name = "Aft-Port Solar Array"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/aftportsolar)
+"tNo" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"tNS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"tOu" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/hallway/primary/firstdeck/vaultlobby)
+"tOE" = (
+/obj/machinery/space_heater,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"tOG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"tOW" = (
+/obj/structure/table/reinforced,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"tPS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"tQG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"tRp" = (
+/obj/machinery/telecomms/bus/preset_four,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"tRt" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"tRA" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"tRB" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/bridge/Deck3_Corridor)
+"tRQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"tSn" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"tSu" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"tSz" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/cetus/jointsubstation)
+"tTa" = (
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/obj/machinery/telecomms/server/presets/supply,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"tTo" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Captain_Quarters)
+"tTY" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/research/particleaccelerator)
+"tUb" = (
+/obj/machinery/floodlight{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"tUk" = (
+/obj/random/trash,
+/obj/structure/sign/vacuum{
+ pixel_y = 31
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/fp)
+"tUs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"tUY" = (
+/obj/machinery/light,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"tVd" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"tVI" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"tWt" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"tXN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/HoS_Quarters)
+"tXP" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"tYi" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/effect/floor_decal/spline/plain/corner,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"tYq" = (
+/obj/random/plushie,
+/obj/structure/bed/pillowpile/green,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/badsnuggles)
+"tYz" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/escapepodjr)
+"tZK" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"tZP" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/threefp)
+"tZR" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"uag" = (
+/obj/structure/smoletrack/roadturn{
+ dir = 8
+ },
+/turf/simulated/floor/smole,
+/area/maintenance/cetus/d3docks)
+"ual" = (
+/obj/structure/bed/pod{
+ pixel_y = 14
+ },
+/obj/random/forgotten_tram,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"uaz" = (
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/machinery/meter,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"uaT" = (
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"uaZ" = (
+/obj/structure/bed/pillowpile/teal,
+/obj/random/trash,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/badsnuggles)
+"ubt" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/starboard)
+"ubM" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/law)
+"ubU" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"ucj" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/quack)
+"ucB" = (
+/obj/random/cutout,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"ucF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"ucI" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/law)
+"udd" = (
+/obj/structure/cable/cyan{
+ icon_state = "5-10"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/holoplant,
+/turf/simulated/floor/greengrid,
+/area/ai)
+"udN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"udR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table/bench/steel,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"uee" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/mainsupport)
+"uek" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/thirddeck/roof)
+"uep" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"uez" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/jrthreestar)
+"ueB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner2{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"ueY" = (
+/obj/item/toy/plushie/teppi,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreeport)
+"ufq" = (
+/obj/structure/sign/directions/bridge{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/escapepodfore)
+"ufI" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"ufO" = (
+/obj/structure/barricade/cutout/clown,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"ufV" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"ufW" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "garbage";
+ name = "disposal coveyor"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Waste Disposal";
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"ugc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"ugr" = (
+/obj/machinery/floodlight{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"ugw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Telecoms Storage";
+ req_one_access = list(12, 16, 19, 30)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/tcomstorage)
+"ugz" = (
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreeport)
+"ugA" = (
+/obj/machinery/light/fluorescent,
+/obj/structure/ghost_pod/ghost_activated/unified_hole,
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"ugB" = (
+/obj/machinery/door/window/brigdoor/southright{
+ name = "Medical Staff Only";
+ req_access = null;
+ req_one_access = list(5)
+ },
+/obj/structure/disposalpipe/segment{
+ pixel_y = -2
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/jrfirstaid)
+"ugK" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"uho" = (
+/obj/machinery/door/blast/regular/bookcase{
+ id = "gamba";
+ name = "decorational bookcase"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/gamba)
+"uhA" = (
+/obj/machinery/door/airlock/glass_mining,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"uhF" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Secretary_Quarters)
+"uhS" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"ujg" = (
+/turf/simulated/mineral/cetus,
+/area/engineering/cetus/aftsubstation)
+"ujR" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"ukM" = (
+/obj/structure/table/steel,
+/obj/machinery/light/small/emergency{
+ dir = 4
+ },
+/obj/random/maintenance/foodstuff,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"ukV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"ulj" = (
+/obj/structure/cable{
+ icon_state = "2-9"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"ulk" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForPort)
+"ulL" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"ulN" = (
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"umj" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/yellow/border,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"umy" = (
+/obj/machinery/computer/aifixer,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/ai_server_room)
+"umE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/HoP_Quarters)
+"umO" = (
+/turf/simulated/wall/r_wall,
+/area/rnd/cetus/entry)
+"umY" = (
+/obj/structure/table/bench/wooden,
+/obj/structure/flora/pottedplant/tropical{
+ pixel_y = 10
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/HoP_Quarters)
+"unC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"unD" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Control_Room)
+"unS" = (
+/obj/structure/table/reinforced,
+/obj/item/bodybag/cryobag{
+ pixel_x = 6
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/hypospray/autoinjector/rad{
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/hypospray/autoinjector/rad{
+ pixel_y = -3
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"uos" = (
+/obj/structure/ladder,
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/substation/central)
+"uow" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/threeap)
+"uoE" = (
+/obj/machinery/atmospherics/unary/freezer{
+ icon_state = "freezer"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"uoI" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "ainanitetwo"
+ },
+/area/ai)
+"upv" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"upy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"upS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"uqy" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf3)
+"uqF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"uqG" = (
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 24
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/wood/broken,
+/area/maintenance/cetus/badsnuggles)
+"uqJ" = (
+/obj/structure/table/rack/shelf,
+/obj/item/cracker/vore{
+ name = "bluespace cracker";
+ pixel_y = 2
+ },
+/obj/item/cracker/shrinking{
+ name = "bluespace cracker";
+ pixel_y = -8
+ },
+/obj/item/cracker/shrinking{
+ name = "bluespace cracker";
+ pixel_y = -8
+ },
+/obj/item/cracker/shrinking{
+ name = "bluespace cracker";
+ pixel_y = -8
+ },
+/obj/item/cracker{
+ pixel_y = 12
+ },
+/obj/item/cracker{
+ pixel_y = 12
+ },
+/obj/item/cracker{
+ pixel_y = 12
+ },
+/obj/item/cracker/vore{
+ name = "bluespace cracker";
+ pixel_y = 2
+ },
+/obj/item/cracker/vore{
+ name = "bluespace cracker";
+ pixel_y = 2
+ },
+/obj/machinery/door/window/eastright{
+ name = "Prizes"
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"uqP" = (
+/obj/machinery/space_heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"ure" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/structure/dummystairs/hazardledge,
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/cetus/shallow/derelict/engine)
+"urh" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"uro" = (
+/obj/structure/smoletrack/roadturn,
+/turf/simulated/floor/smole,
+/area/maintenance/cetus/d3docks)
+"urO" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"usf" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel{
+ color = "#3fc0ea";
+ name = "light blue towel";
+ pixel_x = -1;
+ pixel_y = 13
+ },
+/obj/item/towel{
+ color = "#3fc0ea";
+ name = "light blue towel";
+ pixel_x = -1;
+ pixel_y = 17
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/HoP_Quarters)
+"usm" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"usL" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/cedouble,
+/turf/simulated/floor/carpet/oracarpet,
+/area/bridge/sleep/CE_Quarters)
+"utn" = (
+/obj/structure/bed/chair/bay/comfy/blue{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"utG" = (
+/obj/item/modular_computer/console/preset/command{
+ dir = 1
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Station Director's Desk";
+ departmentType = 5;
+ name = "Station Administrator RC";
+ pixel_x = 30
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"utJ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"utY" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/clipboard,
+/obj/item/folder/yellow_ce,
+/obj/item/paper,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"uud" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/bridge/Deck3_Corridor)
+"uuF" = (
+/obj/machinery/light/yellowed,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"uuM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"uuX" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/heads/sc/restroom)
+"uve" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/structure/sign/warning/lethal_turrets{
+ pixel_y = 32;
+ pixel_x = 32
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"uvq" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/cetus/joint)
+"uwf" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/firstdeck/vaultlobby)
+"uwg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ frequency = 1441;
+ pixel_y = 22
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"uwM" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"uwS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"uxk" = (
+/obj/structure/table/steel,
+/obj/item/deck/wizoff,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"uxq" = (
+/obj/effect/floor_decal/cetus/andromeda3,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"uxy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"uxK" = (
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"uxT" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"uyj" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CMO_Quarters)
+"uyo" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer/cold,
+/area/maintenance/cetus/arcade)
+"uyA" = (
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"uza" = (
+/obj/machinery/atmospherics/pipe/tank/nitrogen{
+ start_pressure = 15000
+ },
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"uzk" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold4w/visible/red,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"uzq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"uzt" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodaft)
+"uzH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/thirddeck/roof)
+"uzX" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/telecomms/server/presets/unused,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"uAa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/mob/mouse,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"uAg" = (
+/turf/simulated/wall/r_wall{
+ can_open = 1
+ },
+/area/bridge/sleep/Secretary_Quarters)
+"uAE" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = -32
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod2/station)
+"uAQ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"uBf" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "6-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/camera/network/telecom{
+ c_tag = "TCOMMS - Main Computer Room";
+ dir = 9
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/computer)
+"uBU" = (
+/obj/structure/lattice,
+/obj/structure/disposaloutlet{
+ pixel_y = -6
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threeap)
+"uCc" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"uCg" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"uCz" = (
+/obj/structure/table/reinforced,
+/obj/random/miniature,
+/obj/random/toy,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"uCH" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"uDb" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"uDn" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"uDv" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"uEN" = (
+/obj/structure/cable{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"uEP" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "COM - Conference Room";
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/bridge/Conference_Room)
+"uFE" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"uFG" = (
+/turf/simulated/wall/r_wall,
+/area/security/nuke_storage)
+"uFN" = (
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"uGa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"uGp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"uGu" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod4/station)
+"uGG" = (
+/turf/simulated/floor/boxing,
+/area/maintenance/cetus/shallow/quack)
+"uGZ" = (
+/obj/structure/lattice,
+/obj/structure/sign/painting/public{
+ pixel_x = 31
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"uHG" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "vld_exterior";
+ name = "Checkpoint Lockdown"
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/door/window/brigdoor/northright{
+ name = "Vault Checkpoint";
+ req_access = null;
+ req_one_access = list(1,19)
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"uHL" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"uHM" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "Aft_Solars_";
+ pixel_y = 23
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftPort)
+"uId" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/dock)
+"uIr" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"uIz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/floor_decal/cetus/andromeda5,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"uIA" = (
+/obj/structure/table/woodentable,
+/obj/item/radio/subspace,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"uIE" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/camera/network/research{
+ c_tag = "SCI - JR D3 Stairwell 2";
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"uJf" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"uJs" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI Access";
+ req_access = list(16);
+ req_one_access = list(16)
+ },
+/obj/structure/sign/warning/lethal_turrets{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_monitored/aihall)
+"uJC" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"uKi" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/pen,
+/turf/simulated/floor/tiled/red,
+/area/bridge)
+"uKp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 2;
+ name = "Maintenance Access"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"uKV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/trash,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"uLg" = (
+/obj/structure/lattice,
+/obj/machinery/light/small,
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"uLs" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/clipboard,
+/obj/item/folder,
+/obj/item/paper,
+/obj/item/pen,
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"uLv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"uLH" = (
+/obj/machinery/power/breakerbox/activated{
+ RCon_tag = "Unused Sector"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/engine)
+"uMd" = (
+/obj/machinery/power/solar_control{
+ auto_start = 2;
+ id = "jointresearchsolar";
+ name = "Joint Research Solar Control"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"uMe" = (
+/obj/structure/cable{
+ icon_state = "6-10"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/engine)
+"uMR" = (
+/obj/structure/barricade/cutout/swarmer,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"uNj" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"uNn" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/primary/firstdeck/vaultlobby)
+"uNr" = (
+/obj/machinery/light/small/yellowed,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"uNM" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/table/gamblingtable,
+/obj/item/storage/toolbox/mechanical,
+/obj/fiftyspawner/greencarpet,
+/obj/fiftyspawner/wood,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"uNT" = (
+/obj/structure/lattice,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/structure/ladder,
+/turf/simulated/open,
+/area/engineering/cetus/starsubstation)
+"uNU" = (
+/obj/structure/disposalpipe/tagger{
+ dir = 2;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"uOb" = (
+/obj/item/stool/padded{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"uOq" = (
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/obj/random/pottedplant,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"uOI" = (
+/obj/structure/smoletrack/roadS{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/smole,
+/area/maintenance/cetus/d3docks)
+"uPv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"uPZ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 10
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/backstage)
+"uQQ" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"uQR" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"uQV" = (
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"uRu" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/command{
+ c_tag = "COM - Bridge Entry Starboard";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"uRF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/flooded)
+"uRP" = (
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"uSh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"uSi" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"uSt" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/rnd{
+ req_access = list(7);
+ req_one_access = null
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/rnd/research/particleaccelerator)
+"uSB" = (
+/obj/machinery/power/solar_control{
+ auto_start = 2;
+ id = "aftstarboardsolar";
+ name = "Aft Starboard Solar Control"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftStar)
+"uSR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"uSY" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"uTi" = (
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/redgrid,
+/area/security/nuke_storage)
+"uTx" = (
+/obj/machinery/ai_status_display{
+ pixel_x = -32
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"uUB" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/sleep/Secretary_Quarters)
+"uUD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_external/public{
+ name = "Large Escape Pod 1";
+ id_tag = "large_escape_pod_1_berth"
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodjr)
+"uUR" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/black/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/computer/general_air_control/large_tank_control{
+ dir = 4;
+ input_tag = "co2_in";
+ name = "Carbon Dioxide Supply Control";
+ output_tag = "co2_out";
+ sensors = list("co2_sensor"="Tank")
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"uVq" = (
+/obj/structure/table/standard,
+/obj/item/stack/material/smolebricks,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"uVK" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "2-9"
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/plating{
+ icon_state = "dmg1"
+ },
+/area/maintenance/cetus/d3bar)
+"uWa" = (
+/obj/random/junk,
+/obj/structure/table/standard,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"uWg" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/integrated_electronics/debugger,
+/obj/item/integrated_electronics/wirer{
+ pixel_x = 5
+ },
+/obj/item/storage/bag/circuits/basic,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"uWw" = (
+/obj/structure/table/reinforced,
+/obj/random/plushie,
+/obj/item/toy/snappop{
+ pixel_y = 12
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"uXt" = (
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Vault Lobby"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/hallway/primary/firstdeck/vaultlobby)
+"uXK" = (
+/obj/structure/barricade/cutout/law,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"uXQ" = (
+/obj/structure/railing/grey,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"uYh" = (
+/obj/random/vendordrink{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/primary/firstdeck/vaultlobby)
+"uYk" = (
+/obj/effect/landmark/start{
+ name = "Intern"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"uYA" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/starboard)
+"uYH" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"uYZ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"uZw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/engineering/cetus/aftsubstation)
+"uZB" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/purcarpet,
+/area/bridge/sleep/RD_Quarters)
+"uZT" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"uZY" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/cable/green{
+ icon_state = "0-6"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "bridge blast";
+ name = "Bridge Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/bridge)
+"uZZ" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Libraryf2)
+"vaF" = (
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "nanitehall"
+ },
+/area/ai_monitored/aihall)
+"vbb" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/visible/red,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"vbh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"vbR" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"vcg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"vco" = (
+/turf/simulated/wall/r_wall,
+/area/crew_quarters/cetus/mime)
+"vcq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"vcz" = (
+/obj/structure/lattice,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"vcX" = (
+/obj/structure/table/standard,
+/obj/item/aiModule/oxygen,
+/obj/item/aiModule/oneHuman,
+/obj/machinery/door/window{
+ dir = 8;
+ name = "High-Risk Modules";
+ req_access = list(20)
+ },
+/obj/item/aiModule/purge,
+/obj/item/aiModule/antimov,
+/obj/item/aiModule/teleporterOffline,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/obj/item/aiModule/freeform,
+/turf/simulated/floor/bluegrid,
+/area/ai_upload)
+"vdl" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/form_printer,
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"vdI" = (
+/obj/random/junk,
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"vdJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "vld_exterior";
+ name = "Checkpoint Lockdown";
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "vld_interior";
+ name = "Vault Lockdown";
+ pixel_x = 7;
+ pixel_y = -1
+ },
+/obj/machinery/button/remote/airlock{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "outervaultcheck";
+ name = "Outer Airlock Control";
+ pixel_y = -1;
+ pixel_x = -4;
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/obj/machinery/turretid/lethal{
+ pixel_x = 31;
+ name = "Vault lethal turret control";
+ req_access = null;
+ req_one_access = list(1,19);
+ control_area = "\improper Vault"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"vdT" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"vdW" = (
+/obj/structure/table/bench/wooden{
+ pixel_y = -9;
+ pixel_x = -17
+ },
+/obj/item/bikehorn/rubberducky/grey{
+ pixel_y = 38;
+ pixel_x = -6
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/item/bone/skull/unathi{
+ pixel_x = -12;
+ pixel_y = 32
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"vee" = (
+/obj/structure/railing/grey,
+/obj/structure/lattice,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/open,
+/area/ai_server_room)
+"vej" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"veq" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"ver" = (
+/obj/machinery/suit_cycler/captain,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Captain_Quarters)
+"vfk" = (
+/obj/structure/cable{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"vfw" = (
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"vfy" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/greengrid,
+/area/ai)
+"vgl" = (
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/railing/grey,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"vgm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"vgq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"vgM" = (
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/turretid/stun{
+ check_synth = 1;
+ name = "AI Entry Hall turret control";
+ pixel_x = -30;
+ control_area = "\improper AI Core Entry Hall"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"vgN" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreeport)
+"vha" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/old_tile/blue,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"vhn" = (
+/obj/machinery/camera/motion/command{
+ dir = 10;
+ c_tag = "AI- Airlock"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/thirddeck/roof)
+"vhv" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"vhD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"vjb" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/large_escape_pod1/centcom)
+"vjn" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 2;
+ name = "Maintenance Access";
+ locked = 1;
+ icon_state = "door_locked"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"vjN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/RD_Quarters)
+"vjW" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"vkq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_monitored/aihall)
+"vkR" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ dir = 8;
+ pixel_x = 29;
+ pixel_y = 5
+ },
+/obj/machinery/disposal/wall/cleaner{
+ name = "Resleeving lost & found bin";
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Secretary_Quarters)
+"vlg" = (
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Command Hall 2"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"vlw" = (
+/obj/structure/sign/warning/radioactive{
+ pixel_y = -32;
+ pixel_x = 32
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreeport)
+"vmd" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/redgrid,
+/area/security/nuke_storage)
+"vmv" = (
+/turf/simulated/wall,
+/area/quartermaster/mininglockerroom)
+"vmZ" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"vnv" = (
+/obj/structure/cable{
+ icon_state = "4-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodstar)
+"vnN" = (
+/obj/random/obstruction,
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"vnX" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"vnZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{
+ frequency = 1381;
+ id_tag = "escape_pod_4_berth";
+ pixel_x = -25;
+ pixel_y = 30;
+ tag_door = "escape_pod_4_berth_hatch";
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"voc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"voj" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"vpk" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_y = 36;
+ pixel_x = -3
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-2"
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_y = 37;
+ pixel_x = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload)
+"vpl" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/gamba)
+"vpK" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/rnd/cetus/entry)
+"vpQ" = (
+/turf/simulated/wall/r_wall,
+/area/ai_server_room)
+"vri" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"vrl" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"vrG" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 2;
+ name = "Stairwell"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/hallway/cetus/stairwellf3)
+"vsp" = (
+/obj/machinery/computer/security/engineering{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"vsM" = (
+/obj/machinery/vending/cigarette{
+ dir = 4;
+ pixel_x = -7
+ },
+/obj/machinery/light{
+ dir = 8;
+ name = "1E-light fixture"
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"vtp" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"vtH" = (
+/obj/structure/lattice,
+/obj/structure/sign/painting/public{
+ pixel_y = -32
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"vtK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Research";
+ sortType = "Research"
+ },
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/threefp)
+"vvl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"vvy" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "ATMTK - Oxygen"
+ },
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/oxygen,
+/area/engineering/Atmospherics_Chamber)
+"vvT" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/gamba)
+"vwb" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/thirddeck/roof)
+"vwl" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/photocopier/faxmachine{
+ anchored = 0;
+ department = "Internal Affairs"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"vwJ" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"vwN" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"vwS" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threeas)
+"vxK" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/random/trash_pile,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"vxP" = (
+/obj/random/trash,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/badsnuggles)
+"vxT" = (
+/turf/simulated/wall/r_wall,
+/area/ai_monitored/aihall)
+"vzc" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/flooded)
+"vzT" = (
+/obj/structure/loot_pile/maint/trash,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"vAH" = (
+/obj/random/drinkbottle,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/badsnuggles)
+"vBi" = (
+/obj/structure/sign/warning/falling,
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/ap)
+"vBI" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "aftportsolar";
+ name = "Aft-Port Solar Array"
+ },
+/turf/simulated/floor/plating/turfpack/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/aftportsolar)
+"vBY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"vBZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Captain_Quarters)
+"vCn" = (
+/obj/random/contraband,
+/obj/random/maintenance,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/locker)
+"vCw" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"vCJ" = (
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"vCR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"vDi" = (
+/obj/machinery/telecomms/hub/preset/southerncross,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"vDm" = (
+/obj/effect/landmark{
+ name = "JoinLateCyborg"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/loading/blue,
+/obj/machinery/computer/cryopod/robot{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"vDr" = (
+/obj/structure/cable/cyan{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ pressure_checks = 0;
+ pressure_checks_default = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"vDy" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/cetus/stairwelljr3)
+"vDH" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/engineering/cetus/aftsubstation)
+"vDS" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/shallow/ap)
+"vDY" = (
+/obj/structure/fireplace{
+ name = "decorative fireplace";
+ desc = "A fireplace with an integrated connection to the station's scrubber network.";
+ density = 0
+ },
+/obj/structure/table/bench/wooden,
+/obj/item/storage/box/donut,
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/sd)
+"vEe" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"vEC" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"vED" = (
+/obj/structure/bed/chair/bay/chair,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"vEG" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/bluedouble,
+/turf/simulated/floor/carpet/tealcarpet,
+/area/bridge/sleep/CMO_Quarters)
+"vEQ" = (
+/obj/machinery/light{
+ layer = 3
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"vFg" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start/captain,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"vFm" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"vGi" = (
+/obj/structure/grille,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/machinery/light/floortube{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"vGU" = (
+/turf/simulated/wall,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"vHs" = (
+/obj/structure/sign/directions/eva{
+ dir = 1
+ },
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"vHA" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/telecomms/receiver/preset_right/southerncross,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"vHC" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"vHN" = (
+/obj/structure/railing,
+/obj/structure/railing,
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"vHX" = (
+/turf/simulated/wall/r_wall,
+/area/tcomm/chamber)
+"vJh" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/structure/curtain/open{
+ name = "stage curtain";
+ color = "#701006";
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"vJX" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge";
+ req_access = list(19)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge/Deck3_Corridor)
+"vKH" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/button/windowtint{
+ id = "d3lounge";
+ pixel_x = 11;
+ pixel_y = 25
+ },
+/obj/machinery/light_switch{
+ pixel_x = -11;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"vKK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"vLc" = (
+/obj/structure/table/woodentable,
+/obj/item/megaphone,
+/obj/machinery/recharger,
+/obj/item/storage/secure/safe{
+ pixel_x = 5;
+ pixel_y = -26
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"vLm" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/adv,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/medical/cetus/jrfirstaid)
+"vLJ" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/large_escape_pod1/centcom)
+"vLO" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"vLV" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/obj/random/junk,
+/turf/simulated/floor/boxing{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/jrthreestar)
+"vMg" = (
+/obj/structure/table/standard,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/wrapping_paper{
+ pixel_x = -10;
+ pixel_y = 10
+ },
+/obj/item/mail/junkmail,
+/obj/item/mail/junkmail,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"vMi" = (
+/obj/effect/floor_decal/corner/black/full{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ icon_state = "map_vent_in";
+ id_tag = "co2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/reinforced/carbon_dioxide,
+/area/engineering/Atmospherics_Chamber)
+"vMp" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"vMz" = (
+/obj/structure/railing/grey,
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"vMK" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/photocopier/faxmachine{
+ anchored = 0;
+ department = "Internal Affairs"
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"vMR" = (
+/obj/effect/floor_decal/spline/plain,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/law)
+"vNa" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"vNo" = (
+/obj/structure/sign/atmosplaque{
+ dir = 1;
+ pixel_y = 30
+ },
+/obj/structure/railing,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/engineering/Atmospherics_Control_Room)
+"vNx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodaft)
+"vNE" = (
+/obj/structure/closet/crate/freezer,
+/obj/random/donkpocketbox,
+/obj/random/donkpocketbox,
+/obj/random/donkpocketbox,
+/obj/random/donkpocketbox,
+/obj/random/donkpocketbox,
+/turf/simulated/floor/tiled/freezer/cold,
+/area/maintenance/cetus/arcade)
+"vNQ" = (
+/obj/structure/girder,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/shallow/fp)
+"vNT" = (
+/obj/machinery/atmospherics/binary/pump{
+ name = "N2 to Connector";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"vOo" = (
+/obj/structure/table/standard,
+/obj/structure/cable/yellow{
+ icon_state = "0-6"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/item/folder/yellow,
+/obj/item/multitool,
+/obj/item/pen/blue{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/paper_bin,
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/computer)
+"vOz" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/bridge/Deck3_Corridor)
+"vOA" = (
+/obj/random/trash,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"vOD" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threeas)
+"vON" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"vOP" = (
+/obj/structure/sign/warning/compressed_gas{
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light{
+ dir = 4;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"vOZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"vPQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-6"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"vPS" = (
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/sign/warning/high_voltage{
+ pixel_y = -32
+ },
+/obj/structure/cable/cyan{
+ icon_state = "0-4"
+ },
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/structure/window/phoronreinforced/full,
+/turf/simulated/floor/plating,
+/area/ai_server_room)
+"vQC" = (
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"vQL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"vQN" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/cetus/joint)
+"vQO" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"vQW" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"vRr" = (
+/obj/structure/bed/pod{
+ pixel_y = 14
+ },
+/obj/random/trash,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"vRA" = (
+/obj/machinery/computer/arcade{
+ dir = 1
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Deck 3 Lounge";
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"vRC" = (
+/obj/structure/bed/chair/comfy/brown,
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"vRH" = (
+/obj/structure/closet/secure_closet/engineering_chief_wardrobe,
+/obj/item/gps/engineering/ce,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CE_Quarters)
+"vRX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/random/junk,
+/obj/random/maintenance,
+/obj/random/trash,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"vSh" = (
+/obj/machinery/atmospherics/valve/digital/open{
+ name = "PA-Room passive supply valve";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/research/particleaccelerator)
+"vSm" = (
+/obj/structure/table,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"vSo" = (
+/obj/structure/table,
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"vSJ" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"vTf" = (
+/obj/machinery/door/airlock/maintenance{
+ req_one_access = list(19)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/bridge/secretaryoffice)
+"vTq" = (
+/obj/effect/floor_decal/spline/plain/corner,
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/rnd/research/particleaccelerator)
+"vTy" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftportsolar)
+"vTC" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/quack)
+"vUj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"vUr" = (
+/obj/structure/toilet,
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/RD_Quarters)
+"vUt" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"vUK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/item/inflatable/door/torn,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"vUN" = (
+/obj/machinery/conveyor{
+ id = "maintdelivery";
+ dir = 4
+ },
+/obj/random/junk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"vUP" = (
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"vVe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"vVx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"vVB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/tcomm/tcomstorage)
+"vVD" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"vVL" = (
+/obj/structure/closet/secure_closet/hop2,
+/obj/item/gps/command,
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/HoP_Quarters)
+"vVP" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/clipboard,
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white{
+ color = "#8bbbd5"
+ },
+/area/bridge)
+"vVV" = (
+/turf/simulated/wall,
+/area/maintenance/cetus/jrthreeport)
+"vWn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"vWz" = (
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ frequency = 1441;
+ icon_state = "map_vent_in";
+ id_tag = "n2o_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/obj/effect/floor_decal/corner/red/diagonal,
+/obj/effect/floor_decal/corner/white{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/n20,
+/area/engineering/Atmospherics_Chamber)
+"vWE" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"vWY" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/glass_mining,
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"vWZ" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"vXh" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"vYb" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/turf/simulated/open,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"vYT" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload_foyer)
+"vZd" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodstar)
+"vZG" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/obj/machinery/light/small/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "maintnanites"
+ },
+/area/maintenance/cetus/nanites)
+"waf" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"waA" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf3)
+"wbw" = (
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Escape Pod"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/hallway/cetus/stairwellf3)
+"wbC" = (
+/obj/structure/fans/hardlight/colorable{
+ desc = "Retains air, blocks radiation, allows passage.";
+ light_color = "#243550";
+ name = "hardlight radiation shield";
+ rad_resistance = 200
+ },
+/obj/machinery/door/window/brigdoor/northright{
+ name = "Particle Focus door";
+ req_access = list(7)
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "palabvent";
+ name = "Emergency Vent Control";
+ pixel_x = 25;
+ req_access = list(7)
+ },
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"wbJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"wcN" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/retro_red,
+/area/bridge/sleep/HoS_Quarters)
+"wdm" = (
+/turf/simulated/floor/reinforced/airless,
+/area/engineering/Atmospherics_Chamber)
+"wdI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"wdN" = (
+/turf/simulated/floor/plating,
+/area/tcomm/tcomstorage)
+"wdU" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"wel" = (
+/obj/structure/table/bench/steel,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/micro_tunnel/random{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodaft)
+"weF" = (
+/obj/effect/floor_decal/spline/plain/cee,
+/turf/simulated/floor/plating,
+/area/rnd/research/particleaccelerator)
+"weQ" = (
+/obj/item/storage/box/syndie_kit/chameleon,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threefs)
+"wfj" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/structure/table/bench/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"wfn" = (
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/ai_upload)
+"wfA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"wfN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"wgk" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftStar)
+"wgq" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"wgA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"wgR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftPort)
+"whC" = (
+/obj/item/radio/intercom/locked/ai_private{
+ dir = 4;
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload)
+"whG" = (
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/bridge/Deck3_Corridor)
+"whW" = (
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ name = "N2O Outlet Valve"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"wic" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/flashlight/lamp/clown,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"wil" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/random/junk,
+/obj/random/trash,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"wir" = (
+/obj/structure/table/reinforced,
+/obj/random/drinkbottle,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"wiT" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/foreportsolar)
+"wjs" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"wju" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/curtain/bed{
+ name = "stage curtain";
+ anchored = 1;
+ color = "#701006"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"wjB" = (
+/obj/structure/cable{
+ icon_state = "1-10"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodstar)
+"wkd" = (
+/obj/item/forensics/sample_kit/powder,
+/obj/item/forensics/sample_kit,
+/obj/item/reagent_scanner{
+ pixel_y = 4;
+ pixel_x = -6
+ },
+/obj/item/clothing/suit/storage/det_trench,
+/obj/item/clothing/head/fedora/brown,
+/obj/structure/closet/secure_closet/personal/cabinet{
+ name = "private personal closet"
+ },
+/obj/item/cartridge/detective,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/detective)
+"wkI" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 26;
+ pixel_y = -27
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Control_Room)
+"wkL" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"wkN" = (
+/obj/structure/lattice,
+/obj/structure/disposaloutlet{
+ pixel_y = -6
+ },
+/obj/structure/disposalpipe/up{
+ dir = 1
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"wlr" = (
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/starboard)
+"wls" = (
+/obj/random/trash_pile,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"wlz" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"wlH" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/structure/table/wooden_reinforced,
+/obj/item/juke_remote{
+ pixel_y = 2
+ },
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/shallow/quack)
+"wlJ" = (
+/obj/structure/barricade/cutout/shadowling,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"wlR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Fore Substation";
+ req_one_access = list(11, 24)
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/foresubstation)
+"wlT" = (
+/obj/random/unidentified_medicine/drug_den,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/badsnuggles)
+"wnw" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"wnF" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"wnG" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Command Hall 5"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"wnH" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/rnd/research/particleaccelerator)
+"wnR" = (
+/obj/structure/cable{
+ icon_state = "32-1"
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/engineering/cetus/jointsubstation)
+"woC" = (
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"woM" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"woP" = (
+/obj/machinery/ai_status_display{
+ pixel_y = -32
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -32
+ },
+/turf/simulated/floor/greengrid,
+/area/ai)
+"wpj" = (
+/obj/structure/closet/medical_wall{
+ pixel_y = -31;
+ dir = 1
+ },
+/obj/item/storage/firstaid/regular,
+/obj/item/bodybag/cryobag,
+/obj/item/roller,
+/obj/item/storage/pill_bottle/spaceacillin,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/bridge)
+"wpG" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/flashlight,
+/obj/item/flashlight{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/radio{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/radio{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"wpU" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"wql" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"wqw" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"wqO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"wqV" = (
+/obj/machinery/door/blast/regular{
+ id = "trash";
+ name = "disposal mass driver"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"wqX" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/HoP_Quarters)
+"wrf" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"wrV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"wrY" = (
+/obj/random/trash,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"wsv" = (
+/turf/simulated/mineral/cetus,
+/area/maintenance/cetus/threecp)
+"wsJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/item/material/shard,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"wsQ" = (
+/obj/structure/bed/chair/wood,
+/obj/structure/cable/green{
+ icon_state = "0-5"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 12;
+ pixel_y = 25
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"wtj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"wtB" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"wtN" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"wuD" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Escape Pod"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/crew_quarters/cetus/escapepodjr)
+"wuF" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"wuW" = (
+/turf/simulated/mineral/cetus,
+/area/crew_quarters/cetus/escapepodaft)
+"wvE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"wvP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"wwk" = (
+/obj/effect/landmark/start{
+ name = "AI"
+ },
+/obj/machinery/requests_console{
+ department = "AI";
+ departmentType = 5;
+ pixel_x = 30;
+ pixel_y = -32
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/obj/item/radio/intercom/private{
+ dir = 4;
+ pixel_x = 21;
+ pixel_y = -10
+ },
+/obj/item/radio/intercom/custom{
+ dir = 8;
+ pixel_x = -21;
+ pixel_y = -10
+ },
+/obj/machinery/light_switch{
+ name = "light switch ";
+ pixel_x = 35
+ },
+/obj/machinery/light/small/fluorescent,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/turf/simulated/floor/greengrid,
+/area/ai)
+"wwt" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/tealcarpet,
+/area/bridge/sleep/CMO_Quarters)
+"wwJ" = (
+/obj/structure/transit_tube{
+ icon_state = "D-SE"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"wxz" = (
+/obj/item/bone,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/bridge/sleep/Secretary_Quarters)
+"wxN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"wxT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"wxY" = (
+/obj/structure/barricade/cutout/greytide,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"wyF" = (
+/obj/machinery/light{
+ layer = 3
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"wyL" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"wyY" = (
+/obj/machinery/holoplant,
+/turf/simulated/floor/greengrid,
+/area/ai)
+"wza" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftstarboardsolar)
+"wzu" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/escape_pod4/station)
+"wzP" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"wAg" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"wAu" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/cetus/andromeda1,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"wAJ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"wAN" = (
+/obj/structure/curtain/open{
+ name = "dressing curtain";
+ color = "#701006";
+ anchored = 1
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/dressing)
+"wAP" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"wAY" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"wBc" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"wBl" = (
+/obj/structure/table/woodentable,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 9
+ },
+/obj/item/melee/chainofcommand,
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Captain_Quarters)
+"wBz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"wBC" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/green{
+ icon_state = "6-10"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"wBF" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 1;
+ pixel_y = -30
+ },
+/obj/machinery/light,
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"wBJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Central Access"
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"wCb" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
+/obj/machinery/vending/cigarette{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/escapepodaft)
+"wCf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/closet/emcloset,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"wCn" = (
+/obj/structure/sign/warning/nosmoking_2{
+ pixel_y = -32
+ },
+/obj/machinery/light/fluorescent,
+/obj/machinery/telecomms/processor/preset_one,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"wCr" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/eva)
+"wCv" = (
+/obj/machinery/atmospherics/binary/pump{
+ name = "CO2 to Connector";
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"wCz" = (
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "AI Core";
+ req_access = list(16)
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/sign/warning/acid{
+ name = "\improper DANGEROUS NANITES";
+ desc = "This sign warns of the dangers of AI-controlled S10-P recycling and crowd control nanite hives in the area.";
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai)
+"wCV" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ id_tag = "eva_port_outer";
+ locked = 1;
+ name = "External Airlock Access";
+ req_access = list(13)
+ },
+/obj/machinery/access_button{
+ dir = 1;
+ name = "exterior access button";
+ pixel_x = 32;
+ pixel_y = -22
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"wDj" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ pixel_y = -1
+ },
+/obj/structure/cable/green,
+/obj/machinery/light_switch{
+ pixel_y = -12;
+ pixel_x = 22;
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/nanites)
+"wDo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"wDA" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"wDL" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"wDZ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"wFl" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/shallow/derelict/locker)
+"wFy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ id_tag = "hopquarters";
+ name = "Head of Personnel Quarters";
+ req_access = list(57)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge/sleep/HoP_Quarters)
+"wGk" = (
+/obj/structure/lattice,
+/obj/structure/catwalk{
+ pixel_x = -1
+ },
+/obj/machinery/floodlight,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/theater)
+"wGC" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2,
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"wGM" = (
+/turf/simulated/floor/reinforced,
+/area/rnd/research/particleaccelerator)
+"wHk" = (
+/obj/random/plushie,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/badsnuggles)
+"wHF" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_command{
+ id_tag = "sbridgedoor";
+ name = "Bridge";
+ req_access = list(19)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/bridge/Deck3_Corridor)
+"wHO" = (
+/turf/simulated/floor/reinforced/oxygen,
+/area/engineering/Atmospherics_Chamber)
+"wIy" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"wIR" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1379;
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Internal Airlock Access";
+ req_access = list(13)
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/access_button{
+ dir = 1;
+ name = "interior access button";
+ pixel_x = -30;
+ pixel_y = 9
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/maintenance/cetus/shallow/derelict/dock)
+"wIX" = (
+/obj/structure/sign/painting/public{
+ pixel_x = 31
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"wJe" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"wJf" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-6"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"wJh" = (
+/obj/structure/table/bench/wooden,
+/obj/item/paper_bin,
+/obj/item/folder/white_rd,
+/obj/item/pen/multi,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/RD_Quarters)
+"wJk" = (
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"wJn" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"wKN" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/theater)
+"wLV" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"wMA" = (
+/obj/structure/transit_tube/station{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/transit_tube_pod,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"wMC" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/eva)
+"wMR" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/light/small/yellowed,
+/obj/machinery/atmospherics/pipe/simple/hidden/universal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/engine)
+"wNg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"wNl" = (
+/obj/structure/railing/overhang/hazard/nanite,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"wNn" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"wNZ" = (
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/maintenance/cetus/shallow/derelict/bridge)
+"wOa" = (
+/obj/structure/bed/pillowpile/yellow,
+/obj/random/junk,
+/turf/simulated/floor/wood,
+/area/maintenance/cetus/badsnuggles)
+"wOd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"wOi" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner2{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"wOw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape_pod3/station)
+"wOH" = (
+/obj/structure/cable/cyan{
+ icon_state = "0-5"
+ },
+/obj/machinery/power/smes/buildable/engine_default{
+ RCon_tag = "Telecommunications Satellite"
+ },
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/turf/simulated/floor/redgrid,
+/area/ai)
+"wOI" = (
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ name = "CO2 Outlet Valve"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"wOY" = (
+/obj/random/junk,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/maintenance/cetus/shallow/derelict/bathroom)
+"wPr" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"wPT" = (
+/obj/machinery/appliance/cooker/oven,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"wQd" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/shallow/derelict/eva)
+"wQV" = (
+/obj/structure/inflatable,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"wRA" = (
+/obj/structure/barricade/cutout/wizard,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"wRB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"wSi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/backstage)
+"wSn" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"wSy" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/escape_pod3/station)
+"wSF" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - Command Hall 3";
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"wTA" = (
+/obj/machinery/light/small{
+ brightness_color = "#DA0205";
+ brightness_power = 1;
+ brightness_range = 5;
+ dir = 8
+ },
+/obj/structure/bed/chair/sofa/corp{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"wUu" = (
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/bridge/Conference_Room)
+"wUN" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 4
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"wVp" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"wVQ" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"wVU" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"wWA" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating/turfpack/airless,
+/area/solar/aftstarboardsolar)
+"wWM" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape_pod2/station)
+"wWR" = (
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard/nanite{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"wXe" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/button/remote/airlock{
+ id = "comsecquarters";
+ name = "Bolt Control";
+ pixel_y = -26;
+ req_access = list(19);
+ specialfunctions = 4;
+ dir = 1;
+ pixel_x = -10
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24;
+ pixel_x = 2
+ },
+/obj/machinery/light_switch{
+ pixel_x = 13;
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-10"
+ },
+/turf/simulated/floor/carpet/blucarpet,
+/area/bridge/sleep/Secretary_Quarters)
+"wYv" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "9-10"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"wYy" = (
+/obj/structure/smoletrack/roadT,
+/turf/simulated/floor/smole,
+/area/maintenance/cetus/d3docks)
+"wYJ" = (
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ name = "Supply to PA-Loop pump";
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/effect/floor_decal/spline/plain,
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/rnd/research/particleaccelerator)
+"wYT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"wZf" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/shallow/derelict/dock)
+"xau" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge/sleep/HoS_Quarters)
+"xbK" = (
+/obj/machinery/atmospherics/unary/outlet_injector{
+ frequency = 1443;
+ id = "air_in";
+ use_power = 1
+ },
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/effect/floor_decal/corner/blue{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/airmix,
+/area/engineering/Atmospherics_Chamber)
+"xca" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/Captain_Quarters)
+"xct" = (
+/obj/structure/sign/directions/cargo/mining,
+/obj/structure/sign/directions/teleporter{
+ pixel_y = -6
+ },
+/obj/structure/sign/directions/ai_core{
+ pixel_y = 6;
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"xcw" = (
+/obj/machinery/papershredder,
+/turf/simulated/floor/wood,
+/area/crew_quarters/heads/sc/sd)
+"xcL" = (
+/obj/machinery/light/yellowed,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"xcU" = (
+/obj/structure/table/woodentable,
+/obj/item/trash/plate{
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/food/drinks/cup{
+ pixel_y = 7;
+ pixel_x = -5
+ },
+/obj/item/material/kitchen/utensil/fork,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"xdg" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/structure/bed/chair/sofa/right/brown{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"xdm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"xdG" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/Libraryf2)
+"xdW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"xeu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/engineering/cetus/aftsubstation)
+"xfd" = (
+/obj/structure/lattice,
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/primary)
+"xfk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"xfo" = (
+/obj/machinery/camera/network/engineering{
+ c_tag = "ATMTK - Phoron";
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/diagonal{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/phoron,
+/area/engineering/Atmospherics_Chamber)
+"xgw" = (
+/obj/item/survivalcapsule/superpose{
+ pixel_y = 7
+ },
+/obj/structure/table/darkglass,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/security/nuke_storage)
+"xgX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"xgZ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner2{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"xhe" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"xhK" = (
+/obj/machinery/vending/fitness{
+ dir = 4;
+ pixel_x = -5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Mining Hallway";
+ dir = 5;
+ name = "security camera"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"xih" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"xiO" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"xiY" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/structure/bed/pillowpilefront/orange,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/crew_quarters/cetus/lounge)
+"xjf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"xjo" = (
+/obj/machinery/floodlight{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"xjC" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/escapepodfore)
+"xku" = (
+/obj/item/stool/padded,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/disposal)
+"xky" = (
+/obj/structure/lattice,
+/obj/machinery/light/small/fairylights{
+ pixel_y = 15
+ },
+/obj/machinery/camera/network/civilian{
+ c_tag = "CIV - D3 Utility Atrium 1"
+ },
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"xkS" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/airless,
+/area/solar/forestarboardsolar)
+"xlb" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"xld" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 5
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"xlj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"xlo" = (
+/obj/machinery/telecomms/server/presets/medical,
+/turf/simulated/floor/bluegrid,
+/area/tcomm/chamber)
+"xly" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"xmx" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"xni" = (
+/obj/structure/cable/yellow{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/smes/buildable/engine_default{
+ RCon_tag = "Telecommunications Satellite"
+ },
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/ai_server_room)
+"xnR" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/boxing{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/jrthreestar)
+"xnX" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/railing/grey,
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"xnZ" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"xog" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"xoO" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"xpd" = (
+/obj/structure/lattice,
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/open,
+/area/maintenance/cetus/d3docks)
+"xpt" = (
+/obj/random/maintenance/medical,
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"xpJ" = (
+/obj/machinery/atmospherics/omni/mixer{
+ active_power_usage = 7500;
+ tag_east = 2;
+ tag_north = 1;
+ tag_north_con = 0.21;
+ tag_west = 1;
+ tag_west_con = 0.79
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"xqD" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/crew_quarters/heads/sc/restroom)
+"xqL" = (
+/obj/structure/closet/secure_closet/captains{
+ name = "station director's locker"
+ },
+/obj/item/storage/photo_album{
+ pixel_y = -10
+ },
+/obj/item/camera,
+/obj/item/gps/command,
+/obj/random_multi/single_item/captains_spare_id,
+/turf/simulated/floor/wood,
+/area/bridge/sleep/Captain_Quarters)
+"xqU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"xrd" = (
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/obj/machinery/hologram/holopad,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/hallway/primary/firstdeck/vaultlobby)
+"xrH" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "6-9"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "englockdown";
+ name = "Engineering Lockdown";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/door/airlock/maintenance/engi{
+ req_one_access = list(24)
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"xsc" = (
+/turf/simulated/wall/r_wall,
+/area/bridge/sleep/CE_Quarters)
+"xsr" = (
+/obj/structure/girder/displaced,
+/turf/simulated/floor/plating{
+ icon_state = "dmg4"
+ },
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"xsu" = (
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/rnd/cetus/stairwelljr3)
+"xsw" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf3)
+"xsL" = (
+/obj/effect/wingrille_spawn/reinforced/polarized,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/bridge/secretaryoffice)
+"xsS" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"xsU" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "coffeeshop";
+ layer = 3.1;
+ name = "Cafe Shutters"
+ },
+/obj/machinery/light/small/fairylights{
+ pixel_y = 10
+ },
+/turf/simulated/floor/lino,
+/area/crew_quarters/cetus/Galleryf2)
+"xtp" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/turf/simulated/floor/redgrid,
+/area/security/nuke_storage)
+"xtH" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"xua" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/maintenance/cetus/shallow/derelict/dorms)
+"xuj" = (
+/obj/effect/weaversilk/wall,
+/obj/machinery/button/remote/airlock{
+ id = "weaverdorm";
+ name = "Bolt Control";
+ specialfunctions = 4;
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/carpet/happy,
+/area/maintenance/cetus/d3docks)
+"xum" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/engineering/cetus/jointsubstation)
+"xuB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"xuF" = (
+/obj/effect/floor_decal/corner/black,
+/obj/effect/floor_decal/corner/black{
+ dir = 4
+ },
+/obj/machinery/vending/wardrobe/mimedrobe,
+/turf/simulated/floor/tiled/white,
+/area/crew_quarters/cetus/mime)
+"xuM" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ id_tag = "AI_External";
+ pixel_y = 20
+ },
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/plating,
+/area/ai)
+"xuP" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"xvm" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"xwa" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/cetus/jointsubstation)
+"xwI" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/Atmospherics_Chamber)
+"xwN" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_upload)
+"xyb" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 21
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"xyy" = (
+/obj/structure/railing/overhang/grey{
+ dir = 4
+ },
+/obj/structure/dummystairs/hazardledge{
+ dir = 1
+ },
+/turf/simulated/floor/smole,
+/area/maintenance/cetus/d3docks)
+"xyG" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftStar)
+"xzh" = (
+/obj/random/obstruction,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3docks)
+"xzF" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"xzG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CE_Quarters)
+"xzV" = (
+/obj/structure/closet/crate,
+/obj/random/flashlight,
+/obj/random/flashlight,
+/obj/random/flashlight,
+/obj/random/flashlight,
+/obj/random/flashlight,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"xAe" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threecp)
+"xAw" = (
+/obj/structure/closet/firecloset,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"xAy" = (
+/obj/structure/sign/warning/caution,
+/turf/simulated/wall/r_wall,
+/area/tcomm/computer)
+"xAz" = (
+/turf/simulated/wall,
+/area/bridge/Conference_Room)
+"xAI" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"xAM" = (
+/turf/simulated/floor/boxing/gym{
+ name = "floor mat"
+ },
+/area/maintenance/cetus/sex)
+"xAR" = (
+/turf/simulated/open,
+/area/maintenance/cetus/threeas)
+"xBb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"xBJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/light/fluorescent{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"xCd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"xCp" = (
+/obj/structure/bed/pillowpile/white,
+/obj/random/plushie,
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"xDi" = (
+/obj/structure/cable/green{
+ icon_state = "5-8"
+ },
+/obj/random/pottedplant,
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodstar)
+"xDE" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/random/trash,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/starboard)
+"xDP" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey,
+/turf/simulated/floor/water/pool/station{
+ name = "flooded tiles"
+ },
+/area/maintenance/cetus/shallow/flooded)
+"xDU" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"xEc" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"xEe" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"xEY" = (
+/obj/structure/dummystairs{
+ dir = 8
+ },
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/jrthreestar)
+"xFu" = (
+/obj/machinery/porta_turret/ai_defense,
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/machinery/camera/xray/command{
+ c_tag = "COM - Vault Interior";
+ dir = 9
+ },
+/turf/simulated/floor/redgrid,
+/area/security/nuke_storage)
+"xFz" = (
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"xFJ" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/multi,
+/obj/structure/cable/green{
+ icon_state = "2-5"
+ },
+/obj/item/destTagger,
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"xGr" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/threeas)
+"xGB" = (
+/obj/random/junk,
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"xGH" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/asteroid/cetus/d3)
+"xGM" = (
+/obj/random/unidentified_medicine/drug_den,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/badsnuggles)
+"xGU" = (
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/threeas)
+"xHb" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"xHx" = (
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"xHB" = (
+/obj/structure/railing/grey,
+/turf/simulated/open,
+/area/bridge/sleep/HoS_Quarters)
+"xHJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ai)
+"xHT" = (
+/obj/structure/railing/overhang/grey{
+ color = "#917448"
+ },
+/obj/structure/railing/overhang/grey{
+ color = "#917448";
+ dir = 1;
+ name = "box";
+ desc = "The edge of a box. Despite looking like cardboard, it feels like it's made of steel"
+ },
+/obj/structure/railing/overhang/grey{
+ color = "#917448";
+ dir = 8;
+ name = "box";
+ desc = "The edge of a box. Despite looking like cardboard, it feels like it's made of steel"
+ },
+/obj/structure/railing/overhang/grey{
+ color = "#917448";
+ dir = 4;
+ name = "box";
+ desc = "The edge of a box. Despite looking like cardboard, it feels like it's made of steel"
+ },
+/obj/structure/railing/overhang/grey{
+ color = "#917448";
+ name = "box";
+ desc = "The edge of a box. Despite looking like cardboard, it feels like it's made of steel"
+ },
+/turf/simulated/floor/tiled/old_cargo/yellow,
+/area/maintenance/cetus/threefp)
+"xHV" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200;
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeas)
+"xIr" = (
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/turf/simulated/floor/reinforced/turfpack/airless,
+/area/thirddeck/roof)
+"xIO" = (
+/turf/simulated/wall/r_wall,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"xIT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ai_server_room)
+"xIU" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf3)
+"xJf" = (
+/obj/structure/table/rack/shelf,
+/obj/item/implanter/compliance{
+ pixel_y = -4
+ },
+/obj/item/personal_shield_generator/belt/parry{
+ pixel_y = -2
+ },
+/obj/item/storage/box/remote_scene_tools{
+ pixel_y = 9;
+ pixel_x = -4
+ },
+/obj/item/storage/box/remote_scene_tools/voodoo{
+ pixel_y = 9;
+ pixel_x = 3
+ },
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/arcade)
+"xJN" = (
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/d3bar)
+"xKm" = (
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner2{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/turf/simulated/floor/tiled,
+/area/bridge)
+"xKr" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/random/trash,
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"xLa" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"xLs" = (
+/obj/structure/table/bench/steel,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/hallway/cetus/stairwellf3)
+"xLt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red,
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/dock)
+"xMe" = (
+/obj/machinery/atmospherics/binary/pump{
+ name = "O2 to Mixing"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"xMm" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/ap)
+"xMY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/d3bar)
+"xNC" = (
+/obj/structure/cable/green{
+ icon_state = "1-10"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/hallway/primary/firstdeck/vaultcheckpoint)
+"xNQ" = (
+/obj/structure/closet/walllocker/medical/east,
+/obj/structure/bed/roller,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/large_escape_pod1/centcom)
+"xNV" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/maintenance/cetus/nanites)
+"xNX" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/medical/cetus/jrfirstaid)
+"xOp" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmoslockdown";
+ name = "Atmospherics Lockdown";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/engineering/Atmospherics_Chamber)
+"xPb" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -38;
+ pixel_y = 6
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/dark,
+/area/maintenance/cetus/shallow/bodyguard)
+"xPg" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"xPi" = (
+/obj/machinery/camera/network/command{
+ c_tag = "COM - Secretary Office";
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/bridge/secretaryoffice)
+"xPB" = (
+/obj/structure/salvageable/console{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/geo,
+/area/maintenance/cetus/arcade)
+"xPG" = (
+/turf/simulated/open,
+/area/quartermaster/storage)
+"xPI" = (
+/obj/machinery/light/small/emergency,
+/turf/simulated/floor/redgrid,
+/area/security/nuke_storage)
+"xPV" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/crew_quarters/cetus/atrium/secondaryf3)
+"xPW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"xQl" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"xQp" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"xQz" = (
+/obj/structure/railing,
+/turf/simulated/open,
+/area/crew_quarters/cetus/Galleryf2)
+"xQC" = (
+/obj/structure/catwalk,
+/obj/random/mob/mouse,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/starboard)
+"xQR" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -15;
+ pixel_y = -3
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -29;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/bridge/sleep/RD_Quarters)
+"xQZ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/camera/network/telecom{
+ c_tag = "TCOMMS - Central Compartment Port";
+ dir = 10
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tcomm/chamber)
+"xRg" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/Libraryf2)
+"xRo" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/cetus/entry)
+"xRD" = (
+/obj/machinery/porta_turret/ai_defense,
+/turf/simulated/floor/redgrid,
+/area/ai)
+"xSv" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"xSG" = (
+/obj/structure/dummystairs,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/bridge)
+"xSR" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"xTd" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/clipboard,
+/obj/item/folder/blue_captain,
+/obj/item/paper,
+/obj/item/pen,
+/turf/simulated/floor/carpet/bcarpet,
+/area/bridge/Conference_Room)
+"xUa" = (
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"xUn" = (
+/obj/machinery/button/remote/airlock{
+ id = "cmoquarters";
+ name = "Bolt Control";
+ pixel_y = 30;
+ req_access = list(40);
+ specialfunctions = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/wood,
+/area/bridge/sleep/CMO_Quarters)
+"xUp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/rnd/research/particleaccelerator)
+"xUw" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/plating,
+/area/solar/cetus/joint)
+"xUx" = (
+/obj/structure/prop/dark_node/dust{
+ node_range = 3
+ },
+/turf/unsimulated/floor/dark,
+/area/maintenance/cetus/jrthreeport)
+"xUO" = (
+/obj/machinery/atmospherics/unary/heater{
+ icon_state = "heater"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"xWw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"xWM" = (
+/obj/structure/micro_tunnel/random{
+ dir = 1
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/maintenance/cetus/jrthreestar)
+"xXh" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/obj/machinery/fitness/heavy/lifter,
+/turf/simulated/floor/boxing/gym,
+/area/maintenance/cetus/jrthreestar)
+"xXF" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"xXK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/starboard)
+"xXO" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/light/floortube{
+ dir = 4;
+ pixel_x = 2
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/light/floortube{
+ dir = 8;
+ pixel_x = -3
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/security/nuke_storage)
+"xYB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Escape Pod"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/rnd/cetus/entry)
+"xYI" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/ap)
+"xYJ" = (
+/obj/structure/sign/painting/public{
+ pixel_y = -32
+ },
+/obj/structure/table/woodentable,
+/obj/item/tape_roll,
+/turf/simulated/floor/tiled/dark,
+/area/crew_quarters/cetus/Galleryf2)
+"xYU" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"xZK" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/substation/central)
+"xZO" = (
+/obj/structure/cable{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/binary/pump/on{
+ target_pressure = 200;
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_ForPort)
+"ybn" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/fluorescent{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ai)
+"ybC" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/cetus/dressing)
+"ybF" = (
+/obj/random/pottedplant,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -27
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -20
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/crew_quarters/cetus/escapepodaft)
+"ybH" = (
+/obj/structure/cable/green{
+ icon_state = "5-10"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"ybW" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/cash_register/civilian{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/random/coin,
+/turf/simulated/floor/tiled/white,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"ybY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 4
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/cetus/andromeda4,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"ycS" = (
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/engineering/Solar_Control_AftStar)
+"ydc" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threeap)
+"ydw" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/deck/cah,
+/obj/item/deck/cah/black{
+ pixel_y = -8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/lounge)
+"ydE" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/maintenance/cetus/shallow/derelict/atmos)
+"ydG" = (
+/obj/structure/cable/cyan{
+ icon_state = "2-9"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/tiled/techfloor,
+/area/ai)
+"ydH" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"ydS" = (
+/obj/machinery/power/solar{
+ id = "forestarboardsolar";
+ name = "Fore-Starboard Solar Array"
+ },
+/turf/simulated/floor/plating/turfpack/airless{
+ icon_state = "solarpanel"
+ },
+/area/solar/forestarboardsolar)
+"ydT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/tagger{
+ dir = 8;
+ sort_tag = "Resleevers";
+ name = "Resleevers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/turf/simulated/floor/tiled/old_cargo,
+/area/bridge/sleep/CMO_Quarters)
+"ydZ" = (
+/turf/simulated/wall/r_wall,
+/area/engineering/Atmospherics_Control_Room)
+"yed" = (
+/obj/item/material/shard,
+/turf/simulated/floor/lino,
+/area/maintenance/cetus/shallow/derelict/kitchen)
+"yem" = (
+/obj/structure/curtain/open{
+ name = "stage curtain";
+ color = "#701006";
+ anchored = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/dummystairs/bronzeledge{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/crew_quarters/cetus/theater)
+"yep" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/crew_quarters/heads/sc/sd)
+"yeV" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefs)
+"yfd" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/cetus/andromeda2,
+/turf/simulated/floor/tiled/neutral,
+/area/maintenance/cetus/shallow/derelict/hallway)
+"yfm" = (
+/obj/structure/transit_tube{
+ icon_state = "D-NE"
+ },
+/obj/structure/lattice,
+/turf/simulated/open,
+/area/maintenance/cetus/auxsupport)
+"yfJ" = (
+/obj/structure/transit_tube{
+ icon_state = "N-S";
+ density = 0
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/auxsupport)
+"yge" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/crew_quarters/cetus/Galleryf2)
+"ygJ" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor/glass,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA"
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/shallow/derelict/dock)
+"ygP" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"ygU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/carpet/graycarpet,
+/area/maintenance/cetus/shallow/fp)
+"yhl" = (
+/obj/structure/cable{
+ icon_state = "6-9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/bridge/Deck3_Corridor)
+"yhp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/retro_red,
+/area/bridge/sleep/HoS_Quarters)
+"yhG" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard/nanite,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/water/digestive_enzymes/nanites{
+ id = "aichambernanite"
+ },
+/area/ai)
+"yhQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ name = "Robotics";
+ sortType = "Robotics"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-10"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/cetus/threefp)
+"yij" = (
+/turf/simulated/shuttle/wall/no_join/orange,
+/area/shuttle/escape_pod4/station)
+"yil" = (
+/obj/machinery/suit_cycler/mining,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/mininglockerroom)
+"yin" = (
+/obj/random/maintenance/medical,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/maintenance/cetus/shallow/derelict/medbay)
+"yis" = (
+/obj/effect/floor_decal/borderfloor,
+/obj/effect/floor_decal/corner/brown/border,
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/machinery/camera/network/cargo{
+ c_tag = "CRG - Cargo Stairwell";
+ dir = 5;
+ name = "security camera"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/quartermaster/storage)
+"yiP" = (
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/obj/structure/ladder,
+/turf/simulated/open,
+/area/maintenance/cetus/threecp)
+"yiY" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/folder/white,
+/obj/item/folder/white,
+/obj/item/pen/multi,
+/turf/simulated/floor/carpet/brown,
+/area/maintenance/cetus/shallow/law)
+"yjs" = (
+/turf/simulated/floor/tiled,
+/area/engineering/Atmospherics_Chamber)
+"ykI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "4-9"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/engineering/cetus/aftsubstation)
+
+(1,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+lDu
+"}
+(2,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(3,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(4,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(5,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(6,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(7,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(8,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(9,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(10,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(11,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(12,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(13,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(14,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(15,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(16,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(17,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(18,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(19,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(20,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(21,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(22,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(23,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(24,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(25,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(26,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(27,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(28,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(29,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(30,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(31,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(32,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(33,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(34,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(35,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+irp
+irp
+irp
+irp
+irp
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(36,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(37,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(38,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+idF
+idF
+idF
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(39,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+idF
+idF
+idF
+idF
+idF
+idF
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(40,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+ely
+ely
+ely
+ely
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+ely
+ely
+ely
+ely
+ipt
+idF
+idF
+idF
+ipt
+ely
+ely
+ely
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(41,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+ely
+ely
+ely
+ely
+idF
+idF
+idF
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(42,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+ely
+ipt
+idF
+idF
+idF
+ipt
+ely
+aib
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(43,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+ely
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+vVV
+vVV
+vVV
+vVV
+vVV
+vVV
+vVV
+vVV
+aib
+aib
+aib
+aib
+aib
+aib
+ely
+ely
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+ely
+ely
+ely
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(44,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+ely
+ely
+ely
+aib
+aib
+jlZ
+jlZ
+jlZ
+jlZ
+jlZ
+jlZ
+jlZ
+jlZ
+vVV
+exB
+jjz
+exB
+exB
+gFb
+ilK
+vVV
+nNS
+jlZ
+aib
+aib
+aib
+aib
+ely
+ipt
+idF
+idF
+idF
+ipt
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+ely
+ely
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+kVR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(45,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+jlZ
+jlZ
+izH
+kwh
+jjz
+jjz
+jjz
+kwh
+kwh
+meK
+exB
+jjz
+jjz
+exB
+jjz
+ilK
+vVV
+ugz
+jlZ
+jlZ
+aib
+aib
+aib
+ely
+ely
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+ely
+ely
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(46,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+jlZ
+kwh
+kwh
+jlZ
+jjz
+jjz
+kwh
+jjz
+jlZ
+vVV
+pYX
+exB
+jjz
+jjz
+bxa
+exB
+meK
+ilK
+ugz
+nNS
+aib
+aib
+aib
+ely
+gTQ
+idF
+idF
+idF
+gTQ
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+ely
+ely
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(47,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+jlZ
+jlZ
+kwh
+kwh
+jjz
+kwh
+jlZ
+jjz
+kwh
+vVV
+ljT
+exB
+exB
+jjz
+jjz
+exB
+vVV
+ljT
+ilK
+jlZ
+aib
+aib
+aib
+rNB
+rNB
+jKc
+jKc
+jKc
+rNB
+rNB
+rNB
+tYz
+tYz
+tYz
+tYz
+tYz
+tYz
+tYz
+tYz
+tYz
+tYz
+tYz
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(48,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+jlZ
+jlZ
+jlZ
+jlZ
+jlZ
+jlZ
+kwh
+kwh
+vVV
+ilK
+gFb
+exB
+jjz
+jjz
+jjz
+vVV
+kCk
+gwd
+nNS
+aib
+aib
+aib
+rNB
+rNB
+wGM
+dxn
+wGM
+rNB
+rNB
+rNB
+hTq
+dYJ
+fWR
+lCU
+nlj
+fTw
+fuV
+fuV
+fuV
+fuV
+fuV
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(49,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+jlZ
+jlZ
+ilK
+ilK
+vVV
+vVV
+vVV
+vVV
+vVV
+vVV
+gFb
+ilK
+jlZ
+iWR
+iWR
+iWR
+rNB
+rNB
+toq
+plP
+oXf
+rNB
+rNB
+rNB
+leo
+ofo
+fWR
+fTw
+rlx
+oDq
+sZC
+vjb
+pfn
+vjb
+fTw
+fuV
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(50,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+ely
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+kwh
+izH
+jlZ
+aib
+aib
+aib
+aib
+nNS
+ilK
+kCk
+nNS
+iWR
+aFK
+nPV
+wbC
+apw
+rXO
+gET
+bZp
+rNB
+rNB
+gbZ
+aeJ
+ekH
+uUD
+eBz
+kFc
+oaU
+oaU
+rSo
+gzg
+sZY
+igR
+rEI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(51,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+ely
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+jlZ
+kwh
+kwh
+jlZ
+aib
+aib
+aib
+aib
+jlZ
+gFb
+gFb
+jlZ
+iWR
+wIy
+feo
+rNB
+rNB
+txQ
+vGi
+iZQ
+rNB
+rNB
+rNB
+rnR
+bgM
+fWR
+fTw
+vLJ
+xNQ
+psb
+gws
+rWz
+gjY
+fTw
+fuV
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(52,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+kwh
+izH
+jlZ
+jlZ
+jlZ
+jlZ
+jlZ
+jlZ
+nNS
+ilK
+tIj
+nNS
+iWR
+djd
+ngY
+rNB
+rNB
+hVM
+txs
+rjg
+rNB
+rNB
+rNB
+iZO
+saV
+fWR
+lCU
+oVz
+fTw
+fuV
+fuV
+fuV
+fuV
+fuV
+idF
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(53,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+kwh
+kwh
+jlZ
+jlZ
+alY
+kwh
+jlZ
+jlZ
+jlZ
+lJI
+nLe
+jlZ
+iWR
+cQy
+qaA
+cwu
+gLc
+kQy
+jeF
+cUK
+dxU
+wCf
+iWR
+wuD
+fWR
+fWR
+tYz
+tYz
+tYz
+tYz
+tYz
+tYz
+tYz
+tYz
+idF
+hgI
+hgI
+irp
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(54,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+kwh
+kwh
+kwh
+kwh
+kwh
+kwh
+kwh
+jlZ
+nNS
+vgN
+ffm
+vlw
+uSt
+uYZ
+uYZ
+btc
+wBC
+wnH
+vTq
+weF
+rRB
+mlN
+iWR
+hmL
+sWA
+olW
+ibJ
+qHh
+tvD
+epA
+sWA
+ely
+ely
+idF
+idF
+mco
+mco
+irp
+mco
+hRR
+oKy
+hRR
+mco
+mco
+hgI
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+hgI
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(55,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+jlZ
+jlZ
+kwh
+izH
+kwh
+izH
+kwh
+kwh
+jlZ
+jlZ
+nNS
+jlZ
+iWR
+htM
+eDz
+ulL
+mwc
+trq
+lWP
+cwu
+tEA
+kcM
+iWR
+iVB
+sWA
+iZo
+dtL
+qjv
+jhU
+oDA
+sWA
+ely
+ely
+idF
+idF
+idF
+mco
+irp
+irp
+irp
+irp
+irp
+irp
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+irp
+irp
+irp
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(56,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+mTm
+kwh
+kwh
+kwh
+izH
+kwh
+jlZ
+jlZ
+aib
+aib
+iWR
+mSm
+mBL
+rWu
+rVs
+tTY
+qes
+iFY
+xUp
+ekk
+iWR
+nqU
+sWA
+kvT
+lto
+ugB
+cDU
+hUj
+sWA
+ely
+ely
+idF
+idF
+idF
+mco
+mco
+mco
+hgI
+mco
+hgI
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+hgI
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+irp
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(57,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+jlZ
+kwh
+kwh
+kwh
+kwh
+kwh
+kwh
+jlZ
+aib
+aib
+iWR
+saK
+nSB
+rWu
+vSh
+psF
+twL
+iFY
+nkQ
+eZh
+iWR
+jnd
+sWA
+vLm
+qMG
+ryl
+klw
+jhS
+sWA
+ely
+ely
+idF
+idF
+idF
+mco
+mco
+mco
+hgI
+mco
+hgI
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+tck
+irp
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(58,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+kwh
+kwh
+jlZ
+acY
+jlZ
+jlZ
+kwh
+jlZ
+aib
+aib
+iWR
+dsu
+nSB
+rWu
+pQg
+bfu
+qPw
+bvY
+qun
+unS
+iWR
+fMJ
+sWA
+xNX
+xNX
+xNX
+cJB
+dYW
+igq
+umO
+ely
+idF
+idF
+idF
+mco
+mco
+mco
+hgI
+mco
+hgI
+mco
+mco
+mco
+mco
+tgZ
+bZH
+bZH
+bZH
+tgZ
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+tgZ
+bZH
+bZH
+bZH
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+bZH
+bZH
+bZH
+tgZ
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+irp
+irp
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(59,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+kwh
+kwh
+jlZ
+jlZ
+jlZ
+kwh
+kwh
+jlZ
+jlZ
+aib
+iWR
+lrC
+lYI
+pEz
+wYJ
+rtG
+pKM
+oOv
+ovV
+slw
+iWR
+amH
+fWR
+mMA
+bKX
+dVM
+lIh
+lJK
+vsM
+umO
+ely
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+bZH
+bZH
+bZH
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+bZH
+bZH
+bZH
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+bZH
+bZH
+bZH
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+irp
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(60,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+kwh
+kwh
+jlZ
+jlZ
+jlZ
+kwh
+kwh
+kwh
+jlZ
+jlZ
+iWR
+fqc
+gSN
+gSN
+aXe
+qSA
+eEH
+tel
+tRt
+jNA
+iWR
+qWG
+fWR
+aSp
+fnF
+cUm
+uSi
+wtN
+wVp
+umO
+umO
+ely
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+bZH
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+bZH
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+bZH
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(61,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+kwh
+kwh
+jlZ
+jlZ
+jlZ
+jlZ
+kwh
+kwh
+kwh
+kwh
+iWR
+iWR
+iWR
+iWR
+iWR
+iWR
+iWR
+bwo
+egE
+iWR
+bwo
+pGO
+drR
+hFR
+pdp
+vpK
+hPw
+hPw
+poN
+gez
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(62,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+izH
+kwh
+jlZ
+jlZ
+jlZ
+kwh
+acY
+kwh
+izH
+dSN
+dSN
+jlZ
+jlZ
+jlZ
+aib
+aib
+mlx
+eEF
+lOH
+drf
+jyb
+iAG
+xvm
+nNi
+xQl
+ovf
+kLJ
+kLJ
+wwJ
+qEZ
+yfJ
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+jIn
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+oDb
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+jIn
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+oDb
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+jIn
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+hNo
+jIn
+hNo
+hNo
+hNo
+pZW
+yfm
+bZH
+bZH
+bZH
+tgZ
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(63,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+jlZ
+kwh
+kwh
+jlZ
+jlZ
+jlZ
+kwh
+qcN
+qcN
+kwh
+qcN
+qcN
+kwh
+dSN
+jlZ
+aib
+aib
+mlx
+nwX
+ljW
+maI
+mlx
+asv
+xhe
+asv
+xYB
+cMG
+cMG
+cMG
+oQt
+pHc
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+bZH
+ffN
+bIv
+bZH
+bZH
+bZH
+bZH
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(64,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+kwh
+kwh
+kwh
+kwh
+jlZ
+dSN
+kwh
+qcN
+qcN
+qcN
+qcN
+qcN
+mvd
+kwh
+jlZ
+aib
+aib
+mlx
+rcy
+tZK
+bhJ
+ejB
+asv
+enp
+asv
+aKm
+wfj
+iWv
+gez
+chp
+umO
+ely
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+bZH
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+bZH
+bZH
+bZH
+tgZ
+tgZ
+bZH
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+bZH
+tgZ
+tgZ
+fxc
+bZH
+kzw
+bZH
+bZH
+bZH
+tgZ
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(65,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+gnS
+gnS
+gnS
+gnS
+gnS
+aib
+aib
+aib
+aib
+aib
+gnS
+fcz
+oPC
+kwh
+kwh
+kwh
+dSN
+qcN
+qcN
+bxi
+dzq
+qcN
+kwh
+cYU
+kwh
+jlZ
+aib
+aib
+mlx
+mjB
+fYb
+lre
+ejB
+asv
+myf
+asv
+hTp
+xRo
+uIE
+qAW
+hgT
+umO
+ely
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+bZH
+bZH
+bZH
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+bZH
+bZH
+bZH
+tgZ
+bZH
+bZH
+bZH
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+bZH
+bZH
+bZH
+tgZ
+tgZ
+bZH
+kzw
+bZH
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(66,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+gnS
+rbU
+rbU
+rbU
+gnS
+gnS
+aib
+aib
+aib
+aib
+gnS
+rbU
+djw
+oPC
+kwh
+kwh
+dSN
+qcN
+qcN
+rCC
+qcN
+qcN
+qcN
+kwh
+qcN
+dSN
+aib
+aib
+mlx
+udR
+vDy
+lre
+ejB
+asv
+trT
+asv
+eSp
+eSp
+eSp
+eSp
+umO
+umO
+ely
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+bZH
+bZH
+bZH
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+bZH
+tgZ
+tgZ
+bZH
+bZH
+bZH
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+bZH
+bZH
+bZH
+tgZ
+tgZ
+bZH
+kzw
+bZH
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(67,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+gnS
+gnS
+rbU
+qpB
+rbU
+nXE
+gnS
+aib
+aib
+aib
+aib
+gnS
+rbU
+gnS
+lSK
+kwh
+kwh
+jlZ
+dSN
+idn
+qcN
+qcN
+qcN
+qcN
+qcN
+izH
+dSN
+aib
+aib
+mlx
+rvI
+uCc
+lma
+gNW
+asv
+enp
+asv
+aib
+aib
+aib
+aib
+ipt
+ely
+ely
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+bZH
+kzw
+bZH
+tgZ
+tgZ
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(68,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+gnS
+rbU
+rbU
+rbU
+rbU
+gnS
+gnS
+gnS
+gnS
+gnS
+gnS
+gnS
+rbU
+rbU
+lSK
+kwh
+kwh
+jlZ
+jlZ
+dSN
+qcN
+xUx
+qcN
+kwh
+kwh
+kwh
+jlZ
+aib
+aib
+mlx
+hlO
+ulN
+ulN
+xsu
+asv
+enp
+asv
+aib
+aib
+aib
+aib
+aib
+ely
+ely
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+bZH
+dvh
+bZH
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(69,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+gnS
+rbU
+gnS
+rbU
+gnS
+gnS
+gnS
+rbU
+rbU
+wQV
+rbU
+rbU
+rbU
+rbU
+nXn
+kwh
+kwh
+jlZ
+jlZ
+jlZ
+dSN
+qcN
+qcN
+dSN
+jlZ
+jlZ
+jlZ
+gnS
+uez
+asv
+asv
+fTR
+asv
+asv
+fgO
+chH
+fgO
+fgO
+fgO
+fgO
+aib
+aib
+ely
+ely
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+jyo
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+bZH
+kzw
+bZH
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(70,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+gnS
+qpB
+gnS
+rbU
+rbU
+gnS
+rbU
+rbU
+qpB
+bOp
+rbU
+qpB
+otx
+rbU
+gnS
+gnS
+jlZ
+jlZ
+aib
+jlZ
+dSN
+dSN
+dSN
+dSN
+dSN
+jlZ
+nNS
+tlF
+jyF
+jyF
+nad
+jyF
+ksc
+jyF
+itm
+pNM
+tSz
+mIs
+mIs
+fgO
+aib
+aib
+ely
+ely
+cfA
+vQN
+kOd
+mco
+cfA
+vQN
+kOd
+mco
+cfA
+vQN
+kOd
+mco
+cfA
+vQN
+fZX
+mco
+cfA
+vQN
+kOd
+mco
+cfA
+vQN
+kOd
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+jxn
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+bZH
+kzw
+bZH
+tgZ
+tgZ
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(71,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+gnS
+rbU
+rbU
+gnS
+rbU
+rbU
+rbU
+gnS
+gnS
+gnS
+rbU
+rbU
+rbU
+rbU
+rbU
+gnS
+aib
+aib
+aib
+jlZ
+dSN
+edA
+oua
+pXJ
+dSN
+gnS
+jow
+jve
+uez
+gnS
+uez
+gnS
+uez
+gnS
+fgO
+iLA
+sgR
+qvb
+wnR
+fgO
+aib
+ely
+ely
+idF
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+mco
+fmu
+fmu
+fmu
+fmu
+fmu
+cru
+jxn
+cru
+fmu
+fmu
+fmu
+fmu
+fmu
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+bZH
+kzw
+bZH
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(72,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+gnS
+rbU
+rbU
+gnS
+gnS
+rbU
+rbU
+rbU
+ugr
+gnS
+gnS
+rbU
+rbU
+rbU
+rbU
+gnS
+gnS
+gnS
+aib
+jlZ
+jlZ
+hlR
+oSK
+gRn
+dSN
+uez
+xAw
+jve
+asv
+oSy
+qyy
+oSy
+qyy
+qyy
+fgO
+adz
+jCi
+aog
+mIs
+fgO
+ely
+ely
+ely
+idF
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+mco
+sNU
+hGt
+hGt
+hGt
+hGt
+ikF
+aMz
+ikF
+jEH
+jEH
+jEH
+jEH
+cnF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+bZH
+bZH
+qeQ
+bZH
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(73,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+gnS
+gnS
+rbU
+rbU
+gnS
+gnS
+qpB
+rbU
+rbU
+rbU
+gnS
+gnS
+rbU
+qpB
+rbU
+gBX
+cNg
+gnS
+gnS
+jlZ
+dSN
+lPo
+ueY
+sLL
+dSN
+gnS
+sOx
+jve
+asv
+iUO
+hLd
+xAM
+dFK
+oSy
+fgO
+xum
+ocV
+xwa
+fgO
+fgO
+ely
+ely
+idF
+idF
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+mco
+bEd
+bEd
+bEd
+bEd
+bEd
+cru
+jxn
+cru
+bEd
+bEd
+bEd
+bEd
+bEd
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+pIA
+pIA
+pev
+mgs
+pIA
+pIA
+mco
+mco
+mco
+irp
+irp
+irp
+hgI
+irp
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(74,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+aib
+gnS
+rbU
+rbU
+rbU
+gnS
+gnS
+gnS
+rbU
+rbU
+rbU
+gnS
+rbU
+rbU
+rbU
+rbU
+qpB
+qHf
+gnS
+jlZ
+jlZ
+jlZ
+dSN
+dSN
+jlZ
+uez
+xnZ
+jve
+asv
+pZz
+hLd
+haG
+dAE
+oSy
+ijr
+noB
+gzF
+xwa
+ely
+ely
+ely
+idF
+idF
+idF
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+cfA
+mPO
+kOd
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+cru
+jxn
+cru
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+lca
+dzd
+khw
+kOE
+wMA
+pIA
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(75,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+ely
+ely
+ely
+aib
+aib
+aib
+gnS
+rbU
+qpB
+rbU
+gnS
+gnS
+gnS
+gnS
+gnS
+rbU
+wQV
+rbU
+qpB
+rbU
+rbU
+wjs
+rgM
+asv
+asv
+asv
+asv
+asv
+asv
+asv
+asv
+hUS
+mOO
+asv
+lkE
+rnV
+rKt
+acR
+oSy
+rjK
+eyb
+uNr
+xwa
+xwa
+xwa
+idF
+idF
+idF
+idF
+idF
+mHS
+swz
+swz
+swz
+mHS
+swz
+swz
+swz
+mHS
+swz
+swz
+swz
+mHS
+swz
+swz
+swz
+mHS
+swz
+swz
+swz
+mHS
+swz
+tgZ
+tgZ
+fmu
+fmu
+fmu
+fmu
+fmu
+cru
+jxn
+cru
+fmu
+fmu
+fmu
+fmu
+fmu
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+lca
+nDY
+xuP
+brI
+rBW
+pIA
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(76,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+aib
+gnS
+rbU
+avk
+rbU
+rbU
+gnS
+aib
+aib
+gnS
+gnS
+gnS
+gnS
+rbU
+rbU
+rbU
+tHf
+rbU
+duw
+rbU
+rak
+bpy
+mZd
+pxw
+qiU
+asv
+fAT
+jdd
+keB
+sBD
+nBn
+cHc
+ftv
+oSy
+uMd
+kNw
+lYW
+dKR
+heT
+bQw
+qOT
+eEU
+eEU
+eEU
+eEU
+bgz
+eEU
+eEU
+eEU
+bgz
+eEU
+eEU
+eEU
+bgz
+eEU
+eEU
+eEU
+bgz
+eEU
+eEU
+eEU
+bgz
+eEU
+eEU
+eEU
+bgz
+eEU
+lwa
+snQ
+etY
+hGt
+hGt
+hGt
+hGt
+ikF
+aMz
+ikF
+jEH
+jEH
+jEH
+jEH
+cnF
+mco
+mco
+mco
+mco
+pBT
+pBT
+pBT
+pBT
+pBT
+pBT
+pBT
+pBT
+pBT
+pBT
+pBT
+pBT
+pIA
+lca
+lca
+pIA
+iGx
+jac
+cjF
+jKw
+pIA
+pIA
+pIA
+pIA
+mco
+mco
+hgI
+mco
+mco
+irp
+irp
+irp
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(77,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+aib
+aib
+gnS
+gnS
+rbU
+rbU
+gnS
+gnS
+aib
+aib
+aib
+aib
+aib
+gnS
+rbU
+rbU
+rbU
+asv
+qpB
+rbU
+rbU
+rak
+dgI
+dgI
+bgw
+rIV
+asv
+lLJ
+akT
+asv
+oSy
+qyy
+oSy
+qyy
+oSy
+xwa
+xwa
+xwa
+xwa
+xwa
+xwa
+idF
+idF
+idF
+idF
+idF
+mHS
+swz
+swz
+swz
+mHS
+swz
+swz
+swz
+mHS
+swz
+swz
+swz
+mHS
+swz
+swz
+swz
+mHS
+swz
+swz
+swz
+mHS
+swz
+tgZ
+tgZ
+bEd
+bEd
+bEd
+bEd
+bEd
+cru
+jxn
+cru
+bEd
+bEd
+bEd
+bEd
+bEd
+mco
+mco
+mco
+mco
+pBT
+auz
+auz
+lkj
+arM
+wlz
+uHL
+sXi
+auz
+auz
+auz
+kJt
+cjF
+wsQ
+xcU
+kxn
+bdj
+rGM
+xsU
+gek
+rjV
+fiI
+kGS
+pIA
+mco
+mco
+hgI
+mco
+mco
+hgI
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(78,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+ely
+aib
+aib
+gnS
+gnS
+gnS
+gnS
+aib
+aib
+aib
+aib
+aib
+aib
+gnS
+gnS
+rbU
+rbU
+rgM
+rbU
+rbU
+rbU
+rak
+dgI
+dgI
+bgw
+wjs
+jnM
+vMp
+oLn
+uez
+uee
+uee
+aib
+ipt
+aib
+aib
+aib
+ely
+ely
+idF
+idF
+idF
+idF
+mco
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+cru
+jxn
+cru
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+pBT
+auz
+qwE
+qWO
+tcW
+tyK
+uHL
+drp
+nqZ
+nqZ
+eaN
+pEq
+haF
+hZB
+hZB
+hZB
+ldJ
+vED
+mmb
+nPa
+eFE
+uRP
+avE
+pIA
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+hgI
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(79,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+gnS
+gnS
+gnS
+djO
+rbU
+rbU
+rbU
+rak
+dgI
+oZU
+aFh
+rIV
+asv
+gnS
+uez
+uez
+uee
+uee
+uee
+aib
+aib
+aib
+ipt
+ely
+idF
+idF
+idF
+idF
+mco
+mco
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+mco
+fmu
+fmu
+fmu
+fmu
+fmu
+cru
+jxn
+cru
+fmu
+fmu
+fmu
+fmu
+fmu
+mco
+mco
+mco
+mco
+pBT
+auz
+qwE
+qWO
+sYz
+tyK
+ptG
+cXi
+pYi
+pYi
+vtK
+qTS
+cjF
+kKq
+oCe
+bdj
+wfN
+iWC
+gQh
+ick
+jEK
+lDf
+nVW
+pIA
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+hgI
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(80,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+ely
+ely
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+gnS
+gnS
+xWM
+aMH
+kqd
+juG
+xnR
+vLV
+rIV
+wjs
+asv
+aib
+uee
+uee
+eGN
+eGN
+uee
+uee
+aib
+ipt
+ely
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+mco
+sNU
+hGt
+hGt
+hGt
+hGt
+ikF
+aMz
+ikF
+jEH
+jEH
+jEH
+jEH
+cnF
+mco
+mco
+mco
+mco
+pBT
+auz
+qwE
+qWO
+uHL
+nHb
+cjM
+irU
+oMK
+iuk
+yhQ
+wOd
+cjF
+lxO
+uIA
+kVs
+vgq
+ovb
+jvX
+uRP
+kol
+eVs
+dXP
+pIA
+dtG
+dtG
+qvG
+dtG
+qvG
+dtG
+dtG
+qvG
+tgZ
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(81,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+aib
+aib
+asv
+rbU
+asv
+pXO
+rtx
+rIV
+rIV
+rIV
+asv
+asv
+aib
+aib
+uee
+uee
+eGN
+eGN
+uee
+uee
+ely
+tgZ
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+cfA
+hqj
+kOd
+mco
+mco
+bEd
+bEd
+bEd
+bEd
+bEd
+cru
+jxn
+cru
+bEd
+bEd
+bEd
+bEd
+bEd
+mco
+mco
+mco
+mco
+pBT
+auz
+qwE
+qWO
+uHL
+bFP
+fVG
+uHL
+sTO
+sTO
+khM
+sTO
+cjF
+efW
+yge
+cjN
+wfN
+eyT
+cjF
+ajp
+fky
+eVs
+aSo
+cjF
+mhO
+xzV
+atr
+xjo
+mhO
+gMJ
+mhO
+qvG
+tgZ
+hgI
+irp
+irp
+irp
+irp
+irp
+hgI
+irp
+irp
+irp
+irp
+irp
+hgI
+irp
+irp
+irp
+irp
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(82,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+ely
+ely
+ely
+ely
+ely
+ely
+aib
+aib
+aib
+aib
+aib
+uez
+xEY
+uez
+ajO
+tKH
+eVg
+lSA
+eVg
+asv
+aib
+aib
+ipt
+aib
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+cfA
+xUw
+kOd
+mco
+cfA
+uvq
+kOd
+mco
+cfA
+uvq
+kOd
+mco
+cfA
+uvq
+kOd
+mco
+cfA
+uvq
+kOd
+mco
+cfA
+uvq
+kOd
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+cru
+jxn
+cru
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+pBT
+auz
+qwE
+qWO
+uHL
+bFP
+fVG
+dmh
+sTO
+pRg
+ryZ
+tDj
+cjF
+asb
+iKZ
+mxU
+wvP
+rHW
+cjF
+cjF
+cjF
+hiz
+cjF
+cjF
+gYY
+nGk
+tYi
+jYQ
+ktY
+kqk
+wrY
+qvG
+tgZ
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(83,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+ely
+ely
+ely
+aib
+aib
+aib
+aib
+gnS
+rIV
+qCD
+rIV
+thN
+gwt
+gwt
+aBn
+asv
+aib
+ipt
+aib
+aib
+aib
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+fmu
+fmu
+fmu
+fmu
+fmu
+cru
+jxn
+cru
+fmu
+fmu
+fmu
+fmu
+fmu
+mco
+mco
+mco
+mco
+pBT
+kJt
+nqZ
+sQB
+uHL
+bFP
+fVG
+dyn
+sTO
+qrH
+bWw
+fos
+cjF
+pCH
+vHN
+cFm
+cEk
+jos
+qMB
+qMB
+fpd
+dMN
+tik
+drz
+gmY
+dnY
+uow
+tzf
+uow
+sQg
+vUK
+qvG
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(84,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+ely
+ely
+ely
+ely
+ely
+ely
+uez
+gnS
+uez
+rIV
+xXh
+gwt
+oKw
+oKw
+uez
+ely
+ely
+ely
+aib
+ipt
+ely
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+wiT
+iLd
+iLd
+iLd
+iLd
+ikF
+aMz
+ikF
+jEH
+jEH
+jEH
+jEH
+cnF
+mco
+mco
+mco
+mco
+pBT
+mcK
+uHL
+uHL
+uHL
+bFP
+pat
+uHL
+sTO
+sTO
+sTO
+sTO
+cjF
+sba
+xQz
+nZx
+gjh
+qPC
+fzM
+xYJ
+cjF
+cgu
+aUu
+vwJ
+gMJ
+mhO
+uow
+aJC
+uow
+gMJ
+wsJ
+qvG
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(85,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+ely
+ely
+ely
+ely
+uez
+uez
+uez
+uez
+sxG
+sxG
+sxG
+sxG
+uez
+ely
+ely
+ely
+ipt
+ely
+ely
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+uee
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+bEd
+bEd
+bEd
+bEd
+bEd
+cru
+jxn
+cru
+bEd
+bEd
+bEd
+bEd
+bEd
+mco
+mco
+mco
+mco
+pBT
+nqy
+lsf
+aFJ
+lsf
+kaW
+azp
+mrL
+saX
+vOZ
+vOZ
+pTG
+cjF
+eFS
+nwp
+tdg
+krn
+dMi
+dMi
+awd
+cjF
+bnV
+gny
+odI
+odI
+odI
+odI
+odI
+odI
+mhO
+qeV
+qvG
+qvG
+dtG
+dtG
+qvG
+qvG
+noW
+noW
+noW
+noW
+noW
+noW
+noW
+noW
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(86,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+uee
+uee
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+cru
+jxn
+cru
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+pBT
+eRy
+uHL
+uHL
+uHL
+fVG
+uHL
+uHL
+uHL
+uHL
+uHL
+oFW
+cjF
+eyX
+bdj
+dvB
+oCq
+sba
+sba
+vtH
+cjF
+iDi
+qCR
+odI
+gjw
+gyh
+vZG
+jaX
+odI
+tif
+iJU
+uow
+rDQ
+cei
+pek
+abs
+nqN
+kBR
+tps
+tps
+tps
+thY
+tps
+tps
+tps
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(87,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+fmu
+fmu
+fmu
+fmu
+fmu
+cru
+jxn
+cru
+fmu
+fmu
+fmu
+fmu
+fmu
+mco
+mco
+mco
+mco
+pBT
+kPn
+heC
+heC
+heC
+ivy
+heC
+heC
+heC
+gbY
+uHL
+sPg
+cjF
+pLU
+kkX
+dvB
+oCq
+sba
+sba
+uLg
+cjF
+pjz
+odI
+odI
+hbL
+jnw
+jnw
+foA
+odI
+suk
+qeV
+uow
+vMg
+dAG
+lAp
+vUN
+nqN
+kBR
+tps
+gKy
+gKy
+gKy
+tps
+tps
+tps
+noW
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+irp
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(88,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+sNU
+hGt
+hGt
+hGt
+hGt
+ikF
+aMz
+ikF
+jEH
+jEH
+jEH
+jEH
+cnF
+mco
+mco
+mco
+mco
+pBT
+auz
+qwE
+qwE
+qwE
+tLr
+qwE
+qwE
+qwE
+qWO
+uHL
+sPg
+cjF
+vdW
+nWE
+wIX
+pVt
+uGZ
+pvF
+pFp
+cjF
+byQ
+odI
+jGG
+oal
+pnq
+qpa
+hUN
+odI
+mhO
+qeV
+uow
+tys
+gYY
+ivQ
+olO
+nqN
+kBR
+tps
+jcf
+oFQ
+gKy
+gKy
+gKy
+gKy
+noW
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(89,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+hgI
+qAQ
+uee
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+bEd
+bEd
+bEd
+bEd
+bEd
+cru
+jxn
+cru
+bEd
+bEd
+bEd
+bEd
+bEd
+mco
+mco
+mco
+mco
+pBT
+auz
+qwE
+nqZ
+nqZ
+fAG
+qwE
+qwE
+qwE
+qWO
+uHL
+edK
+cjF
+cjF
+cjF
+cjF
+cjF
+cjF
+hPK
+cjF
+cjF
+pjz
+odI
+pcU
+wDj
+odI
+odI
+odI
+odI
+uow
+nbB
+hth
+drz
+gmY
+uow
+uow
+nqN
+kBR
+nzS
+jcf
+oFQ
+gKy
+amd
+amd
+amd
+noW
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(90,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+uee
+uee
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+cru
+jxn
+cru
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+pBT
+auz
+qWO
+qvB
+fnG
+qnh
+tZP
+tZP
+tZP
+tZP
+tZP
+tov
+mkH
+pcN
+hrV
+jnk
+hrV
+ryI
+hrV
+uow
+pUM
+pjz
+odI
+xNV
+odI
+odI
+jUo
+kQZ
+sSY
+uow
+uow
+uow
+dez
+mHn
+uow
+vwJ
+nqN
+kBR
+kBR
+kBR
+kBR
+kBR
+amd
+amd
+amd
+noW
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(91,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+irp
+irp
+mco
+qAQ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+fmu
+fmu
+fmu
+fmu
+fmu
+cru
+jxn
+cru
+fmu
+fmu
+fmu
+fmu
+fmu
+tgZ
+iHb
+iHb
+iHb
+iHb
+auz
+qWO
+uxk
+xUa
+trP
+tZP
+lWJ
+qoj
+lWJ
+tZP
+jVa
+mkH
+qAc
+oPg
+mkH
+bTE
+jMe
+hrV
+uow
+uow
+oci
+uow
+qNX
+uow
+vwJ
+vwJ
+vwJ
+vwJ
+vwJ
+uow
+suM
+noP
+noP
+uow
+cEF
+nqN
+uow
+daY
+lCI
+lCI
+ptW
+gKy
+gKy
+gKy
+noW
+noW
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(92,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+irp
+mco
+hgI
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+sNU
+hGt
+hGt
+hGt
+hGt
+ikF
+aMz
+ikF
+jEH
+jEH
+jEH
+jEH
+cnF
+tgZ
+iHb
+dIu
+dIu
+tSu
+qfM
+qWO
+lEX
+lul
+lAj
+tZP
+lnE
+xHT
+rpz
+tZP
+hYt
+mkH
+hrV
+aMA
+mkH
+mTD
+jMe
+hrV
+uow
+uQQ
+xWw
+rWm
+mOR
+uow
+vwJ
+uow
+uow
+uow
+beU
+uow
+uow
+uow
+uow
+uow
+vwJ
+pse
+uow
+iVr
+lCI
+lCI
+bOQ
+gKy
+gKy
+gKy
+tps
+tps
+noW
+tgZ
+tgZ
+tgZ
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(93,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+hRR
+hgI
+hgI
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+bEd
+bEd
+bEd
+bEd
+bEd
+mco
+jxn
+mco
+bEd
+bEd
+bEd
+bEd
+bEd
+tgZ
+iHb
+sda
+dIu
+chR
+qLV
+qWO
+qvB
+fnG
+iyU
+tZP
+ikd
+gwc
+bCM
+tZP
+qqZ
+upy
+uyA
+aMA
+mkH
+hrV
+jMe
+hrV
+uow
+mhO
+vwJ
+uow
+qQI
+pLD
+ydc
+uBU
+mFy
+qvG
+vwJ
+hzH
+vwJ
+dnY
+vwJ
+dqs
+vwJ
+uow
+uow
+cQY
+kew
+mkt
+kBR
+amd
+amd
+gKy
+tps
+ugA
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+hgI
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(94,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+jxn
+mco
+mco
+tgZ
+tgZ
+tgZ
+iHb
+iHb
+iHb
+dIu
+dIu
+chR
+auz
+qWO
+qVU
+lul
+mnN
+tZP
+lgi
+ixP
+xSv
+grc
+pAY
+tZP
+tZP
+tZP
+tZP
+hrV
+jMe
+hrV
+uow
+gMJ
+dqs
+uow
+qeV
+uow
+xFz
+uow
+uow
+uow
+vwJ
+uow
+uow
+uow
+uow
+vwJ
+gMJ
+uow
+wls
+sOd
+nqN
+mFy
+kBR
+amd
+amd
+gKy
+tps
+tps
+noW
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(95,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+jxn
+mco
+mco
+tgZ
+tgZ
+tgZ
+iHb
+uxT
+chR
+chR
+dIu
+chR
+auz
+qWO
+cht
+hOe
+fAJ
+tZP
+bZM
+iNG
+xUa
+tZP
+xUa
+tZP
+dre
+szb
+tZP
+hrV
+jMe
+hrV
+uow
+sDp
+vwJ
+uow
+wDo
+uow
+vwJ
+vwJ
+dnY
+vwJ
+vwJ
+uow
+cUR
+dzB
+uow
+vwJ
+mhO
+uow
+ctd
+cQY
+nqN
+mFy
+kBR
+amd
+amd
+gKy
+noW
+noW
+noW
+noW
+noW
+tgZ
+tgZ
+tgZ
+tgZ
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(96,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+jxn
+mco
+mco
+tgZ
+tgZ
+tgZ
+iHb
+dIu
+dIu
+dIu
+dIu
+chR
+auz
+qWO
+xUa
+tZP
+bQv
+tZP
+pyh
+xPW
+eaS
+tZP
+xUa
+voc
+xUa
+qVP
+tZP
+hrV
+jMe
+hrV
+uow
+ryk
+dnY
+uow
+qeV
+uow
+uow
+jUo
+ukM
+sSY
+uow
+uow
+cUR
+dzB
+uow
+vwJ
+irz
+uow
+ctd
+vOA
+nqN
+mFy
+kBR
+snX
+gKy
+gKy
+gKy
+mwG
+eTp
+fAx
+noW
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(97,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+hgI
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+jxn
+mco
+mco
+tgZ
+tgZ
+tgZ
+iHb
+dIu
+dIu
+chR
+dIu
+chR
+kJt
+kjj
+lul
+tZP
+qwE
+tZP
+tZP
+pjD
+tZP
+tZP
+mkH
+tZP
+tOE
+dHx
+tZP
+hrV
+bnJ
+hrV
+uow
+dXq
+vwJ
+uow
+mZq
+mdQ
+uow
+uow
+uow
+uow
+uow
+gMJ
+hEq
+mhO
+uow
+daY
+mhO
+uow
+wrf
+woM
+nqN
+mFy
+kBR
+deK
+deK
+xDP
+gKy
+kBR
+kBR
+kBR
+noW
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(98,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+hgI
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+jxn
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+iHb
+sda
+dIu
+chR
+uFN
+chR
+cMw
+fnG
+xUa
+chR
+iHb
+chR
+tyT
+tNS
+vbR
+nNd
+jnT
+tZP
+tZP
+tZP
+tZP
+oKZ
+mkH
+oKZ
+uow
+uow
+fMB
+uow
+uow
+uSR
+drz
+mdQ
+uow
+mhO
+gYY
+drz
+mdQ
+gMJ
+uow
+cvs
+uow
+uow
+hzH
+kBR
+kBR
+kBR
+kBR
+tps
+tps
+knX
+feY
+gKy
+gKy
+gKy
+gKy
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(99,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+hgI
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+jxn
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+iHb
+dIu
+dIu
+chR
+dIu
+chR
+chR
+chR
+chR
+chR
+qtw
+chR
+nBA
+chR
+chR
+chR
+gVR
+mkH
+nVk
+nVk
+xih
+hrV
+ryI
+hrV
+jMe
+hrV
+rOA
+uyA
+uow
+uow
+uow
+qeV
+uow
+qCR
+qeV
+uow
+lBJ
+aIk
+uow
+wrf
+cQY
+oeI
+cQY
+kBR
+tps
+tps
+mbr
+mbr
+mbr
+mbr
+jnC
+deK
+deK
+deK
+gKy
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(100,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+jxn
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+iHb
+dIu
+dIu
+dIu
+dIu
+fNC
+dIu
+dIu
+dIu
+dIu
+dIu
+dIu
+dIu
+dIu
+dIu
+chR
+iYE
+uyA
+uyA
+uyA
+uyA
+hrV
+jMe
+hrV
+jMe
+hrV
+fcc
+uyA
+aMA
+kwp
+uow
+edV
+bff
+ieU
+gmY
+uow
+mZq
+bFl
+eEK
+lUH
+drz
+lUH
+lUH
+pHH
+shv
+eYc
+eYc
+shv
+shv
+shv
+raf
+kBR
+tBs
+tps
+gKy
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(101,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+jxn
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+iHb
+dIu
+dIu
+dIu
+dIu
+dIu
+dIu
+dIu
+chR
+chR
+vrl
+chR
+dIu
+dIu
+ckp
+chR
+jDp
+bpF
+bpF
+xgX
+oWM
+hrV
+jMe
+hrV
+jMe
+hrV
+rOA
+hrV
+aMA
+uow
+uow
+afP
+uow
+uow
+uow
+uow
+uow
+uow
+uow
+uow
+uow
+uow
+uow
+kBR
+kBR
+kBR
+kBR
+gKy
+kBR
+kBR
+fmU
+kBR
+tps
+tps
+gKy
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(102,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+jxn
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+iHb
+chR
+lvH
+chR
+chR
+chR
+dIu
+dIu
+dIu
+chR
+chR
+chR
+dIu
+hgz
+kas
+chR
+iYE
+uyA
+uyA
+uyA
+uyA
+hrV
+jMe
+hrV
+jMe
+hrV
+rOA
+hrV
+aMA
+uow
+gYY
+stX
+drz
+drz
+drz
+ecQ
+drz
+bHE
+uow
+iPh
+mhO
+vwJ
+vwJ
+gMJ
+gMJ
+mhO
+kBR
+gKy
+cqZ
+kBR
+oFQ
+kBR
+tps
+tps
+gKy
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(103,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+jxn
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+iHb
+dIu
+dIu
+dIu
+rxk
+chR
+dIu
+dIu
+dIu
+chR
+otT
+chR
+dIu
+dIu
+ckp
+chR
+vgm
+mkH
+nKA
+nKA
+vWE
+hrV
+jMe
+hrV
+jMe
+hrV
+eis
+mkH
+aVY
+aVY
+hOG
+aVY
+aVY
+aVY
+aVY
+aVY
+aVY
+hSV
+uow
+beU
+dnY
+uaT
+vwJ
+beU
+vwJ
+vwJ
+kBR
+gKy
+cqZ
+kBR
+kBR
+kBR
+tps
+tps
+noW
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(104,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+jxn
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+iHb
+sda
+dIu
+bCl
+rxk
+chR
+dIu
+dIu
+dIu
+chR
+otT
+chR
+tSn
+dIu
+dIu
+chR
+pJl
+mkH
+sJi
+sJi
+eon
+hrV
+jMe
+hrV
+jMe
+hrV
+sOT
+mkH
+ooY
+ooY
+lmC
+aVY
+ooY
+ooY
+ooY
+ooY
+aVY
+hOG
+aVY
+tQG
+drz
+drz
+drz
+drz
+mWh
+pSh
+kBR
+gKy
+gcV
+mbr
+mbr
+tps
+tps
+tps
+noW
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(105,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+hgI
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+jxn
+mco
+mco
+tgZ
+tgZ
+tgZ
+iHb
+dIu
+dIu
+dIu
+rxk
+chR
+dIu
+dIu
+dIu
+chR
+otT
+vNQ
+tSn
+tSn
+dIu
+chR
+sJi
+mkH
+sJi
+sJi
+eon
+hrV
+jMe
+hrV
+jMe
+hrV
+sOT
+mkH
+wpU
+ooY
+lmC
+aVY
+ooY
+ooY
+ooY
+ooY
+aVY
+hzz
+dPX
+dzT
+ije
+pKb
+pKb
+eHS
+qeV
+qeV
+kBR
+gKy
+gKy
+gKy
+gKy
+tps
+tps
+tps
+noW
+tgZ
+tgZ
+tgZ
+tgZ
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(106,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+irp
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+uee
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+jxn
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+iHb
+dIu
+dIu
+chR
+chR
+chR
+dIu
+dIu
+dIu
+chR
+otT
+qxB
+nGW
+tSn
+eUl
+chR
+rzI
+mkH
+sJi
+sJi
+eon
+hrV
+bnJ
+hrV
+jMe
+hrV
+sOT
+mkH
+ooY
+ooY
+hzz
+xYI
+xYI
+kuG
+xYI
+xYI
+xYI
+xYI
+phu
+ekg
+mwl
+mFy
+mFy
+fyA
+gmY
+qeV
+kBR
+kBR
+kBR
+kBR
+gKy
+tps
+tps
+woC
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(107,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+uee
+uee
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+jxn
+tgZ
+tgZ
+tgZ
+tgZ
+ifh
+chR
+dIu
+dIu
+chR
+dIu
+dIu
+mvw
+dIu
+rgj
+chR
+otT
+otT
+nGW
+alW
+swj
+eUl
+otT
+wsv
+rzI
+sJi
+eon
+oTu
+rzI
+uSY
+mpp
+hrV
+sOT
+mkH
+ooY
+ooY
+aVY
+aVY
+aVY
+aVY
+ooY
+ooY
+aVY
+ooY
+aVY
+mZq
+tya
+mFy
+mFy
+fyA
+drz
+gmY
+mhO
+kBR
+gKy
+gKy
+gKy
+gKy
+gKy
+tps
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(108,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+lrj
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+nTg
+tgZ
+tgZ
+ifh
+ifh
+ifh
+chR
+dIu
+dIu
+chR
+rxk
+dIu
+dIu
+dIu
+dIu
+chR
+eUl
+eUl
+nGW
+otT
+nGW
+eUl
+otT
+otT
+wsv
+wsv
+eon
+qff
+wsv
+mjH
+hrV
+hrV
+epf
+rzI
+aVY
+aVY
+aVY
+ooY
+byh
+ooY
+ooY
+aVY
+aVY
+ooY
+aVY
+aVY
+uow
+mFy
+cqt
+kBR
+kBR
+kBR
+kBR
+kBR
+gKy
+gKy
+kBR
+gKy
+gKy
+tps
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(109,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+ifh
+ifh
+ifh
+ifh
+ifh
+aSw
+eEb
+aSw
+ifh
+ifh
+ifh
+rRw
+chR
+dIu
+dIu
+chR
+kTb
+miO
+dIu
+dIu
+dIu
+chR
+eUl
+eUl
+otT
+otT
+otT
+otT
+otT
+otT
+rzI
+sJi
+eon
+qff
+rzI
+xAe
+bpF
+bpF
+aCH
+wsv
+rRw
+rRw
+aVY
+gFZ
+byh
+ooY
+aVY
+aVY
+ooY
+ooY
+ooY
+ooY
+uow
+cqt
+cqt
+kBR
+nAF
+tps
+tps
+tps
+tps
+tps
+kBR
+gKy
+gKy
+tps
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+hgI
+irp
+irp
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(110,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+irp
+hgI
+qAQ
+uee
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+mco
+mco
+mco
+idF
+ifh
+ifh
+ifh
+ifh
+ifh
+aSw
+fgi
+aSw
+ifh
+rRw
+rRw
+rRw
+chR
+sda
+uFN
+chR
+tLs
+dIu
+dIu
+dIu
+dIu
+chR
+eUl
+eUl
+eUl
+otT
+otT
+otT
+otT
+otT
+wsv
+sJi
+eon
+lrH
+wsv
+mjH
+hrV
+hrV
+hrV
+rzI
+rRw
+rRw
+aVY
+ooY
+byh
+ooY
+ooY
+aVY
+ooY
+ooY
+ooY
+ooY
+uow
+cqt
+beU
+kBR
+nAF
+tps
+tps
+kBR
+kBR
+kBR
+kBR
+kBR
+tps
+tps
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(111,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+uee
+uee
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+idF
+idF
+ifh
+ifh
+rRw
+rRw
+rRw
+aSw
+aSw
+cKN
+aSw
+aSw
+rRw
+rRw
+rRw
+chR
+dIu
+dIu
+chR
+chR
+chR
+chR
+dIu
+chR
+chR
+eUl
+eUl
+jNV
+eUl
+otT
+otT
+otT
+otT
+wsv
+wsv
+rzI
+bLQ
+rzI
+bJf
+rzI
+wsv
+rzI
+wsv
+rRw
+rRw
+aVY
+aVY
+aVY
+aVY
+ooY
+aVY
+eTS
+ooY
+ooY
+ooY
+uow
+tsg
+gMJ
+kBR
+nAF
+tps
+tps
+kBR
+tps
+ipN
+aIu
+kBR
+tps
+tps
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(112,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+irp
+irp
+mco
+qAQ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+tgZ
+tgZ
+ifh
+ifh
+rRw
+rRw
+rRw
+rRw
+aSw
+gYS
+dsB
+sas
+aSw
+chR
+chR
+chR
+chR
+dIu
+dIu
+chR
+otT
+otT
+chR
+dIu
+chR
+otT
+otT
+eUl
+eUl
+eUl
+eUl
+alo
+otT
+otT
+otT
+wsv
+wsv
+bMz
+wsv
+awu
+wsv
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+aVY
+dRl
+aVY
+ooY
+ooY
+uYk
+ooY
+uow
+tsg
+tsg
+kBR
+nAF
+tps
+tps
+tps
+tps
+kBR
+kBR
+kBR
+kBR
+tps
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+irp
+irp
+irp
+irp
+irp
+irp
+mco
+mco
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(113,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+irp
+mco
+hgI
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+ifh
+ifh
+rRw
+jOC
+rRw
+rRw
+rRw
+aSw
+ulk
+dGR
+xZO
+gXo
+gyw
+ttl
+oIv
+ygU
+iVU
+dIu
+chR
+otT
+otT
+chR
+dIu
+chR
+otT
+otT
+otT
+otT
+eUl
+eUl
+eUl
+eUl
+eUl
+otT
+wsv
+wsv
+bMz
+rzI
+gNe
+rzI
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+aVY
+ooY
+aVY
+ooY
+ooY
+ooY
+ooY
+uow
+pYj
+kfq
+kBR
+nAF
+tps
+tps
+kBR
+tps
+kBR
+tps
+dUN
+tps
+tps
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+piY
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+hRR
+iGO
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(114,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+hRR
+hRR
+hRR
+hgI
+hgI
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+rRw
+jOC
+rRw
+rRw
+rRw
+rRw
+aSw
+hKb
+fmz
+gCJ
+aSw
+szq
+nzd
+jIZ
+fsn
+iZA
+dIu
+chR
+chR
+chR
+chR
+lvH
+chR
+chR
+chR
+chR
+chR
+chR
+chR
+chR
+chR
+chR
+chR
+chR
+otT
+bMz
+wsv
+bMz
+wsv
+rzI
+wsv
+rzI
+aVY
+aVY
+aVY
+aVY
+aVY
+aVY
+ooY
+aVY
+aVY
+ooY
+aVY
+aVY
+aVY
+ooY
+vjn
+aVY
+aVY
+aVY
+irt
+kBR
+tps
+tps
+tps
+pPZ
+kBR
+tps
+noW
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+vTy
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+hRR
+tgZ
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(115,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+hgI
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+rRw
+rRw
+rRw
+jOC
+rRw
+aSw
+aSw
+aSw
+aSw
+aSw
+chR
+chR
+chR
+chR
+acq
+rcY
+fkr
+kcV
+fkr
+fkr
+kcV
+fkr
+fkr
+fkr
+fkr
+efY
+fkr
+fkr
+fkr
+blQ
+oiU
+svB
+fNC
+iHb
+upy
+rzI
+upy
+rzI
+mjH
+yiP
+qff
+etf
+ooY
+ooY
+qJz
+ooY
+ooY
+ooY
+ooY
+qJz
+ooY
+ooY
+ooY
+ooY
+ooY
+ooY
+ooY
+ooY
+ooY
+ooY
+kBR
+kBR
+kBR
+kBR
+kBR
+kBR
+kBR
+noW
+tgZ
+tgZ
+tgZ
+mco
+mCr
+mCr
+mCr
+mCr
+mCr
+nhU
+iJZ
+nhU
+mCr
+mCr
+mCr
+mCr
+mCr
+mco
+mco
+irp
+irp
+irp
+irp
+tgZ
+irp
+irp
+irp
+hgI
+hRR
+hRR
+hRR
+hgI
+irp
+irp
+lzr
+lzr
+lzr
+irp
+irp
+hgI
+hRR
+hRR
+hRR
+hgI
+irp
+irp
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(116,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+rRw
+jOC
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+chR
+rFY
+xSR
+vvT
+vvT
+vvT
+vvT
+vvT
+vvT
+dIu
+dIu
+dIu
+mTj
+dIu
+dIu
+dIu
+dIu
+iFS
+bMh
+mTj
+nBA
+bMz
+bMz
+lkd
+ttz
+bJf
+ilJ
+alA
+mcw
+ooY
+ooY
+cCz
+ooY
+ooY
+aVY
+ooY
+ooY
+ooY
+ooY
+ooY
+ooY
+ooY
+awb
+rwu
+cHr
+cHr
+cHr
+ryU
+mHQ
+dmd
+oFQ
+oFQ
+oFQ
+oFQ
+uRF
+tgZ
+tgZ
+tgZ
+mco
+bmi
+fXk
+fXk
+fXk
+fXk
+eAp
+nhU
+dZI
+hbd
+hbd
+hbd
+hbd
+grn
+hgI
+hgI
+hgI
+mco
+mco
+mco
+tgZ
+mco
+mco
+mco
+mco
+hRR
+iGO
+hRR
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+hRR
+iGO
+hRR
+mco
+hgI
+mco
+mco
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(117,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+irp
+mco
+mco
+mco
+mco
+idF
+idF
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+rRw
+rRw
+rRw
+jOC
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+chR
+rFY
+xSR
+vvT
+oVF
+oVF
+vdT
+fMF
+vvT
+chR
+chR
+chR
+chR
+chR
+chR
+chR
+chR
+chR
+oVE
+chR
+iHb
+kFu
+rzI
+wsv
+rzI
+wsv
+rzI
+wsv
+etf
+aVY
+aVY
+aVY
+peR
+aVY
+aVY
+aVY
+aVY
+aVY
+peR
+aVY
+aVY
+etf
+wDZ
+etf
+aVY
+aVY
+aVY
+kBR
+vzc
+fLA
+oFQ
+oFQ
+oFQ
+oFQ
+uRF
+tgZ
+tgZ
+tgZ
+mco
+pEC
+vBI
+vBI
+vBI
+vBI
+nhU
+nhU
+nhU
+vBI
+vBI
+vBI
+vBI
+vBI
+mco
+mco
+hgI
+mco
+mco
+mco
+tgZ
+mco
+mco
+mco
+mco
+hRR
+tgZ
+hRR
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+hRR
+tgZ
+hRR
+mco
+hgI
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(118,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+hgI
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+rRw
+jOC
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+chR
+tvU
+foD
+vvT
+cYY
+kiV
+mXV
+kWk
+pWr
+raX
+rJu
+xdg
+xRg
+aDF
+rFJ
+ojf
+jhk
+hlt
+nUN
+mkH
+oQm
+kFu
+wsv
+aTa
+ksV
+aTa
+ksV
+rRw
+rRw
+rRw
+rRw
+aVY
+ooY
+ooY
+ooY
+ooY
+ooY
+ooY
+ooY
+aVY
+oYg
+oYg
+xLa
+oYg
+rRw
+rRw
+rRw
+noW
+noW
+noW
+noW
+noW
+uRF
+uRF
+noW
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nhU
+nhU
+nhU
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+tgZ
+mco
+mco
+mco
+mco
+mco
+tgZ
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+tgZ
+mco
+mco
+hgI
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(119,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+hgI
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+tgZ
+tgZ
+uee
+uee
+eGN
+eGN
+uee
+uee
+rRw
+rRw
+rRw
+jOC
+rRw
+rRw
+rRw
+rRw
+rRw
+chR
+rFY
+xSR
+vvT
+azR
+eGr
+mXV
+vpl
+uho
+lkL
+gHZ
+fUs
+fcj
+mbu
+pmN
+kcN
+eWK
+lUP
+njF
+mkH
+dnB
+ksV
+aTa
+jtv
+jtv
+tAE
+aTa
+rRw
+rRw
+rRw
+rRw
+aVY
+pvY
+ooY
+ooY
+aVY
+ooY
+ooY
+byh
+aVY
+oYg
+etf
+tKc
+etf
+rRw
+rRw
+ifh
+ifh
+ifh
+jOC
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mCr
+mCr
+mCr
+mCr
+mCr
+nhU
+nhU
+nhU
+mCr
+mCr
+mCr
+mCr
+mCr
+tgZ
+lzr
+lzr
+lzr
+lzr
+tgZ
+tgZ
+tgZ
+lzr
+lzr
+lzr
+lzr
+lzr
+lzr
+lzr
+lzr
+lzr
+tgZ
+tgZ
+tgZ
+lzr
+lzr
+lzr
+lzr
+lzr
+lzr
+lzr
+lzr
+tgZ
+tgZ
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(120,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+tgZ
+ifh
+uee
+uee
+eGN
+eGN
+uee
+uee
+rRw
+jOC
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+chR
+rFY
+xSR
+vvT
+hsQ
+nqR
+uOb
+jZL
+ocJ
+dtC
+cFU
+sOu
+uxK
+mST
+hnj
+jrk
+nFl
+plV
+opY
+mkH
+kbL
+aTa
+owS
+ivb
+dxH
+sWL
+ksV
+jOC
+rRw
+rRw
+rRw
+aVY
+byh
+byh
+ooY
+aVY
+ooY
+bxN
+byh
+aVY
+oYg
+oYg
+faY
+oYg
+rRw
+ifh
+ifh
+ifh
+ifh
+jOC
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tui
+fXk
+fXk
+fXk
+fXk
+eAp
+nhU
+dZI
+hbd
+hbd
+hbd
+hbd
+vON
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(121,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+hgI
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+jOC
+ifh
+uee
+uee
+eGN
+eGN
+uee
+uee
+rRw
+rRw
+rRw
+jOC
+rRw
+rRw
+rRw
+chR
+rFY
+xSR
+vvT
+dWc
+cJx
+oVF
+uNM
+dwv
+uZZ
+sLT
+xlb
+xlb
+onk
+hnj
+pTf
+nAn
+pMc
+oBt
+huH
+sMD
+aTa
+ngu
+aTa
+oML
+rTJ
+aTa
+ksV
+rRw
+rRw
+rRw
+aVY
+aVY
+aVY
+ooY
+aVY
+ooY
+aVY
+aVY
+aVY
+aVY
+etf
+soW
+nJN
+nJN
+gNo
+gNo
+idF
+idF
+sKL
+tgZ
+tgZ
+hJd
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+pEC
+pEC
+pEC
+pEC
+pEC
+nhU
+nhU
+nhU
+pEC
+pEC
+pEC
+pEC
+pEC
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+irp
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(122,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+ifh
+ifh
+rRw
+uee
+uee
+eGN
+eGN
+uee
+jOC
+rRw
+jOC
+rRw
+rRw
+rRw
+chR
+chR
+rFY
+xSR
+vvT
+hML
+vvT
+gNN
+jfQ
+gNN
+ksl
+hnj
+hnj
+lTC
+omw
+xdG
+aqE
+aqE
+gnv
+gnv
+gnv
+ftW
+gly
+uwf
+eDb
+nms
+btv
+keW
+aTa
+rRw
+rRw
+rRw
+aVY
+ooY
+ooY
+ooY
+ooY
+ooY
+aVY
+lTW
+lTW
+fcv
+pBW
+qGU
+nJN
+tlr
+nJx
+wqV
+sKL
+idF
+sKL
+idF
+tgZ
+hJd
+tgZ
+tgZ
+tgZ
+hJd
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+sUA
+nhU
+sUA
+mco
+mco
+mco
+mco
+mco
+hJd
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+hJd
+mco
+ldk
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(123,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+irp
+hgI
+hgI
+hgI
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+jOC
+ifh
+jOC
+rRw
+uee
+uee
+eGN
+bCI
+iHb
+iHb
+rRw
+rRw
+rRw
+jOC
+chR
+dIu
+rFY
+xSR
+jOa
+cnx
+fVV
+chR
+rRw
+rRw
+oGD
+fOZ
+fOZ
+xdG
+aqE
+nki
+fOZ
+fOZ
+gnv
+aIn
+uYh
+ftW
+tKx
+kRf
+rZR
+sXF
+eWu
+byd
+ksV
+jOC
+rRw
+rRw
+aVY
+hbx
+ooY
+ooY
+ooY
+wzP
+aVY
+vDS
+vDS
+kCY
+pBW
+qWz
+nJN
+jHZ
+cnW
+gNo
+cnW
+cnW
+sKL
+idF
+idF
+hJd
+hJd
+mco
+mco
+mco
+mco
+mco
+tNk
+tNk
+tNk
+tNk
+tNk
+nhU
+nhU
+nhU
+tNk
+tNk
+tNk
+tNk
+tNk
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+lzr
+tgZ
+tgZ
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(124,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+hgI
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+ifh
+jOC
+rRw
+rRw
+rRw
+uee
+uee
+bCI
+tSn
+iHb
+iHb
+rRw
+jOC
+rRw
+chR
+dIu
+rFY
+xSR
+chR
+sda
+dIu
+chR
+rRw
+rRw
+obS
+fOZ
+fOZ
+fOZ
+njd
+mrP
+mrP
+mrP
+gnv
+fOJ
+ftW
+ftW
+qlx
+uNn
+uHG
+fJj
+cEI
+nHj
+aTa
+rRw
+rRw
+rRw
+aVY
+ooY
+ooY
+ooY
+byh
+byh
+etf
+lTW
+mWU
+ffe
+ffe
+xKr
+nJN
+bkN
+qet
+ufW
+xku
+fUS
+lLo
+idF
+idF
+idF
+hJd
+mco
+mco
+mco
+mco
+mco
+bmi
+fXk
+fXk
+fXk
+fXk
+eAp
+nhU
+dZI
+hbd
+hbd
+hbd
+hbd
+vON
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+owF
+mco
+mco
+mco
+owF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(125,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+hgI
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+jOC
+ifh
+rRw
+rRw
+jOC
+rRw
+uee
+uee
+tUk
+iHb
+iHb
+jOC
+rRw
+rRw
+chR
+sda
+rFY
+mdp
+chR
+dIu
+dIu
+chR
+rRw
+rRw
+oGD
+fOZ
+fOZ
+fOZ
+fOZ
+mrP
+kCh
+rWb
+uXt
+axR
+axR
+xrd
+tdd
+nXA
+pmf
+vdJ
+wDA
+iPl
+ksV
+jOC
+rRw
+rRw
+aVY
+ooY
+ooY
+aVY
+aVY
+aVY
+aVY
+mSj
+mSj
+nRE
+pBW
+mHC
+nJN
+jRU
+mqO
+iob
+erj
+gNo
+gNo
+idF
+idF
+idF
+hJd
+mco
+mco
+mco
+mco
+mco
+vBI
+vBI
+vBI
+vBI
+vBI
+nhU
+nhU
+nhU
+vBI
+vBI
+vBI
+vBI
+vBI
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(126,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+tgZ
+tgZ
+xIr
+tgZ
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+ifh
+ifh
+rRw
+jOC
+rRw
+rRw
+rRw
+iHb
+tSn
+iHb
+iHb
+chR
+chR
+chR
+chR
+dIu
+gIS
+dIu
+chR
+dIu
+dIu
+chR
+chR
+chR
+chR
+chR
+chR
+chR
+chR
+mrP
+fLk
+jku
+gnv
+dtv
+ftW
+ftW
+psD
+hpf
+aTa
+poU
+cUO
+poU
+aTa
+rRw
+rRw
+rRw
+aVY
+ooY
+ooY
+qJz
+ooY
+ooY
+aVY
+aVY
+aVY
+aVY
+aVY
+cut
+nJN
+mhD
+kpn
+mpr
+vBY
+fFQ
+ifh
+ifh
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nhU
+nhU
+nhU
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(127,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+hgI
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+ifh
+ifh
+rRw
+rRw
+rRw
+rRw
+jOC
+chR
+jpL
+cHj
+loP
+dNM
+qFN
+jYd
+chR
+ybH
+rFY
+dIu
+chR
+sda
+dIu
+dIu
+dIu
+dIu
+dIu
+mTj
+dIu
+dIu
+dIu
+mrP
+jAy
+cDh
+tOu
+qHi
+hcS
+ftW
+ugc
+heo
+mVf
+icU
+gXz
+kOz
+ksV
+jOC
+rRw
+rRw
+aVY
+ooY
+ooY
+cCz
+ooY
+ooY
+aVY
+jzT
+doM
+aPX
+aVY
+lMo
+nJN
+qBU
+nJN
+nJN
+tAN
+gNo
+ifh
+ifh
+ifh
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mCr
+mCr
+mCr
+mCr
+mCr
+nhU
+nhU
+nhU
+mCr
+mCr
+mCr
+mCr
+mCr
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(128,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+ddY
+nix
+nrN
+nix
+ddY
+ifh
+rRw
+rRw
+rRw
+jOC
+rRw
+chR
+kSs
+aet
+qLF
+pRc
+ejQ
+nQe
+evT
+pdh
+vWZ
+dIu
+dIu
+dIu
+dIu
+mTj
+dIu
+dIu
+dIu
+chR
+dIu
+lss
+chR
+mrP
+xiO
+psU
+gnv
+cAU
+rFx
+jPZ
+ftW
+dyA
+aTa
+lgl
+xNC
+syk
+aTa
+rRw
+rRw
+rRw
+aVY
+aVY
+aVY
+aVY
+ooY
+ooY
+aVY
+jzT
+fOg
+atU
+aFf
+egD
+cvB
+udN
+fdo
+owG
+aKf
+aVY
+rRw
+ifh
+ifh
+ifh
+idF
+idF
+mco
+mco
+mco
+mco
+tbU
+lup
+lup
+lup
+lup
+eAp
+nhU
+dZI
+hbd
+hbd
+hbd
+hbd
+vON
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(129,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+ddY
+nix
+uGu
+nix
+ddY
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+mlc
+mlc
+cDf
+mlc
+ivg
+iHb
+iHb
+iHb
+iHb
+dIu
+dIu
+chR
+chR
+rxs
+rxs
+rxs
+rxs
+rxs
+mrP
+bkk
+gRa
+gnb
+ifx
+eAg
+tNo
+gnv
+gnv
+huH
+huH
+dvj
+huH
+ksV
+aTa
+tLg
+aTa
+ksV
+jOC
+rRw
+rRw
+rRw
+rRw
+rRw
+aVY
+ooY
+ooY
+aVY
+aVY
+aVY
+aVY
+aVY
+oZT
+aVY
+aVY
+aVY
+aVY
+aVY
+qFp
+rRw
+rRw
+ifh
+ifh
+ifh
+eGM
+rtY
+aaZ
+rtY
+eGM
+vBI
+vBI
+vBI
+vBI
+vBI
+nhU
+nhU
+nhU
+vBI
+vBI
+vBI
+vBI
+vBI
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(130,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+ifh
+ddY
+yij
+trz
+yij
+ddY
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+mlc
+eTC
+cBm
+siA
+ivg
+rAa
+xQR
+dHX
+iHb
+dIu
+dIu
+fyl
+jak
+rxs
+gZa
+cTD
+mvV
+rxs
+dhV
+rfP
+dhV
+qlv
+qlv
+qlv
+qlv
+qlv
+lCh
+lCh
+rRw
+jOC
+rRw
+jOC
+ksV
+eUX
+ksV
+jOC
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+aVY
+xDU
+ooY
+kaf
+taM
+qJz
+ooY
+ooY
+qtI
+ooY
+ooY
+qJz
+ooY
+aVY
+rRw
+rRw
+rRw
+rRw
+ifh
+ifh
+eGM
+rtY
+wWM
+rtY
+eGM
+mco
+mco
+mco
+mco
+mco
+nhU
+nhU
+nhU
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(131,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+ifh
+ifh
+ddY
+nix
+rjF
+nix
+ddY
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+mlc
+gHp
+lAY
+sUo
+ivg
+vUr
+foI
+tul
+tul
+tul
+tul
+tul
+tul
+mGk
+bra
+fpA
+qsa
+rxs
+dhV
+wAJ
+dhV
+pTV
+sdH
+wTA
+aYR
+qLD
+nLr
+mKw
+rRw
+rRw
+rRw
+ksV
+aTa
+mka
+aTa
+ksV
+lkl
+gxH
+gxH
+rRw
+rRw
+rRw
+aVY
+ooY
+ooY
+ooY
+ooY
+cCz
+ooY
+ooY
+sng
+oMM
+oMM
+kJu
+ooY
+aVY
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+eGM
+nGH
+uAE
+nGH
+eGM
+mCr
+mCr
+mCr
+mCr
+mCr
+nhU
+nhU
+nhU
+mCr
+mCr
+mCr
+mCr
+mCr
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(132,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+hgI
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+ifh
+ifh
+ifh
+ddY
+wzu
+sqI
+wzu
+ddY
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+mlc
+mlc
+wlR
+ivg
+ivg
+ddV
+giB
+tul
+umY
+pRJ
+tul
+eKX
+jSM
+mGk
+ydT
+rxs
+rxs
+rxs
+nss
+qZY
+tCN
+pTV
+bbA
+ydw
+teK
+xiY
+gTY
+lCh
+jOC
+rRw
+rRw
+aTa
+vYb
+cbq
+gJy
+aTa
+iKN
+iKN
+lkl
+gxH
+rRw
+rRw
+aVY
+eTS
+bSy
+aVY
+aVY
+aVY
+aVY
+aVY
+mnr
+lQP
+lQP
+sLM
+vrG
+lQP
+lQP
+eGM
+wuW
+eGM
+wuW
+rRw
+eGM
+rtY
+mNQ
+rtY
+eGM
+tui
+fXk
+fXk
+fXk
+fXk
+eAp
+nhU
+dZI
+hbd
+hbd
+hbd
+hbd
+vON
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(133,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+tgZ
+tgZ
+nUs
+nUs
+nUs
+nUs
+nUs
+nUs
+nUs
+nUs
+nUs
+ddY
+ddY
+gDm
+ddY
+ddY
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+mrP
+uOq
+hgC
+ddV
+qOj
+fqB
+vjN
+tul
+pSO
+pRJ
+tul
+umE
+bXJ
+tul
+abb
+iUQ
+ohb
+pTQ
+dhV
+wAJ
+dhV
+qlv
+vKH
+mXu
+ktq
+pzJ
+dbg
+mKw
+gxH
+gxH
+lkl
+ksV
+vYb
+egr
+vYb
+usm
+iKN
+iKN
+iKN
+gxH
+rRw
+rRw
+aVY
+ooY
+ooY
+aVY
+aUW
+oYa
+dIa
+hoo
+sni
+lQP
+xIU
+mXl
+hvv
+msY
+wbw
+rsO
+hTd
+ybF
+eGM
+rRw
+eGM
+fQC
+joa
+fQC
+eGM
+vBI
+vBI
+vBI
+vBI
+vBI
+nhU
+nhU
+nhU
+vBI
+vBI
+vBI
+vBI
+vBI
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(134,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+uZY
+pei
+eOA
+xSG
+xKm
+qAx
+lYU
+ndh
+daS
+mFV
+ddY
+xjC
+vnZ
+wAP
+gnR
+rRw
+rRw
+cST
+rmw
+rRw
+rRw
+mrP
+gXc
+hgC
+ddV
+nrM
+wJh
+gXD
+tul
+cyJ
+jtj
+tul
+hNI
+usf
+tul
+nIS
+pfB
+kRW
+pTQ
+dhV
+lWk
+hVI
+oNM
+qbV
+qbV
+rdE
+pzJ
+kxO
+lCh
+lkl
+iKN
+iKN
+aTa
+mAX
+gmy
+nIp
+aTa
+iKN
+iKN
+iKN
+lkl
+gxH
+rRw
+aVY
+ooY
+ooY
+aVY
+ptY
+oWv
+joL
+cAT
+gDs
+lQP
+uqy
+hpO
+tKG
+cpV
+lbt
+lLu
+jaj
+csa
+wuW
+eGM
+eGM
+eGM
+jMK
+eGM
+eGM
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+nhU
+nhU
+nhU
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(135,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+cOY
+pAZ
+xgZ
+syJ
+xBb
+qbN
+sXK
+dEj
+jSW
+kOQ
+ddY
+ahL
+mve
+cbd
+gnR
+rRw
+cST
+cST
+cST
+cST
+cST
+mrP
+wLV
+mYa
+ddV
+rdG
+rYL
+oxJ
+tul
+lfG
+tul
+tul
+qwG
+tul
+tul
+uyj
+gaR
+pwt
+pTQ
+vlg
+wAJ
+tqk
+qlv
+qlv
+lJN
+wnw
+xXF
+vRA
+mKw
+iKN
+iKN
+uFG
+uFG
+uFG
+eFj
+uFG
+uFG
+uFG
+iKN
+iKN
+iKN
+gxH
+gxH
+aVY
+ooY
+ooY
+aVY
+fpl
+odA
+abn
+hYC
+nTv
+lQP
+waA
+xsw
+dyh
+dfK
+lQP
+wuW
+eMU
+nxs
+eGM
+wCb
+ddK
+uzt
+aNs
+qJf
+eGM
+mCr
+mCr
+mCr
+mCr
+mCr
+nhU
+nhU
+nhU
+mCr
+mCr
+mCr
+mCr
+mCr
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(136,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+cOY
+vVP
+utn
+syJ
+wBz
+qzq
+nUs
+nUs
+bvV
+mRM
+ddY
+fTI
+vKK
+hQS
+gnR
+cST
+ixK
+cST
+xGH
+cST
+cST
+mrP
+kJY
+qGT
+ddV
+oUQ
+gDF
+uZB
+tul
+cyJ
+pzc
+tpH
+lwQ
+vVL
+tul
+bab
+olx
+mof
+pTQ
+bjC
+dfB
+dhV
+dhV
+aGD
+qkS
+pzJ
+eIk
+qow
+rfX
+iKN
+uFG
+uFG
+puH
+sAk
+xXO
+lKZ
+grU
+uFG
+uFG
+iKN
+iKN
+iKN
+lkl
+aVY
+ooY
+ooY
+aVY
+gxz
+waf
+bFJ
+gZq
+tUs
+lQP
+xLs
+pHm
+dyh
+dfK
+lQP
+eGM
+lfO
+fPj
+gSn
+eue
+eue
+dty
+vNx
+bjI
+eGM
+tui
+fXk
+fXk
+fXk
+fXk
+eAp
+nhU
+dZI
+hbd
+hbd
+hbd
+hbd
+vON
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(137,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+hgI
+tgZ
+tgZ
+tgZ
+nUs
+nUs
+ppD
+ixJ
+syJ
+sbL
+kVi
+eHT
+roW
+vJX
+aGN
+ddY
+lBl
+jYJ
+cbd
+gnR
+xGH
+cST
+cST
+lhN
+cST
+cST
+mrP
+bqI
+tRB
+ddV
+tHR
+kPk
+glk
+tul
+duz
+fhe
+hmF
+wqX
+elo
+tul
+frw
+wwt
+fFY
+pTQ
+cbH
+wAJ
+dhV
+dhV
+aGD
+eyz
+miN
+jlP
+uWg
+rfX
+iKN
+uFG
+pOi
+eAl
+mEl
+sSJ
+urh
+dFZ
+sre
+uFG
+iKN
+iKN
+iKN
+gxH
+aVY
+ooY
+ooY
+aVY
+kOk
+djn
+cxx
+djn
+aZi
+lQP
+lQP
+lQP
+lQP
+lQP
+lQP
+wuW
+eGM
+wuW
+eGM
+hYo
+bwi
+kDF
+wel
+lhl
+eGM
+vBI
+vBI
+vBI
+vBI
+vBI
+nhU
+lKO
+nhU
+vBI
+vBI
+vBI
+vBI
+vBI
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(138,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+cOY
+eXF
+sGM
+rUN
+nyr
+xCd
+wpj
+nUs
+roW
+cyp
+iOx
+ddY
+gGj
+jYJ
+svN
+gnR
+cST
+cST
+cST
+cST
+cST
+xGH
+mrP
+dYQ
+yhl
+ddV
+abd
+hXw
+rEo
+tul
+hGG
+cce
+mlM
+eQy
+nsU
+tul
+xUn
+qjU
+vEG
+pTQ
+tVI
+wAJ
+dhV
+dhV
+naN
+qlv
+qlv
+qlv
+qlv
+qlv
+jOC
+uFG
+uTi
+hkp
+iZB
+aFa
+vNa
+seV
+xtp
+uFG
+lkl
+lkl
+lkl
+lkl
+aVY
+ooY
+ooY
+aVY
+kOk
+kOk
+rih
+kOk
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+wuW
+eGM
+wuW
+eGM
+qJP
+eGM
+eGM
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+uNj
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+huP
+huP
+huP
+huP
+huP
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(139,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+uZY
+oRa
+tcY
+qSy
+rLJ
+fXq
+cca
+nUs
+gNi
+gGD
+daV
+ufq
+gnR
+pDO
+gnR
+gnR
+mrP
+mrP
+mrP
+eGf
+mrP
+mrP
+mrP
+odM
+wvE
+gQv
+tym
+ddV
+ddV
+tul
+tul
+tul
+wFy
+tul
+tul
+tul
+tlP
+pTQ
+pTQ
+kQS
+mxE
+qhy
+dhV
+tUY
+mrP
+ozh
+ozh
+ozh
+ozh
+ozh
+jOC
+uFG
+bHF
+vmd
+xgw
+qAu
+itv
+jHs
+bHF
+uFG
+iKN
+iKN
+iKN
+gxH
+aVY
+eTS
+bSy
+aVY
+kOk
+djn
+xMY
+djn
+kOk
+djn
+kOk
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+ifh
+ifh
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+bav
+nmR
+bav
+tgZ
+tgZ
+tgZ
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+krU
+huP
+hYI
+hAX
+mJU
+huP
+krU
+krU
+krU
+krU
+krU
+krU
+krU
+tgZ
+tgZ
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(140,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+uZY
+wpG
+bDw
+jxX
+kmG
+jRE
+cGC
+nZr
+ioz
+gGD
+gAA
+hjn
+jcp
+qGp
+wNn
+bAv
+gdp
+efG
+mDs
+wNn
+jcp
+hjn
+otj
+hjn
+bfE
+qsC
+lVe
+uhS
+haS
+wNn
+hjn
+wSF
+wOi
+hjn
+uhS
+xtH
+wgq
+dhV
+vtp
+vFm
+dhV
+veq
+qZV
+dhV
+vOz
+ozh
+ozh
+ozh
+ozh
+ozh
+rRw
+uFG
+uFG
+oAK
+hjB
+xFu
+hjB
+xPI
+uFG
+uFG
+iKN
+iKN
+iKN
+etf
+aVY
+ooY
+ooY
+urO
+jiZ
+tsR
+dOs
+nLf
+mYw
+pJE
+kOk
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+ifh
+ifh
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+bav
+uHM
+bav
+tgZ
+tgZ
+tgZ
+kxY
+sqs
+sqs
+sqs
+sqs
+sqs
+cpf
+sqs
+sqs
+sqs
+pNJ
+sqs
+sqs
+sqs
+sqs
+sqs
+sqs
+krU
+uqG
+mtu
+xGM
+dEd
+vxP
+dEd
+tme
+rfz
+xGM
+mYy
+bkj
+krU
+tgZ
+tgZ
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(141,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+cOY
+hQG
+lii
+qjg
+tyn
+bTA
+vPQ
+toe
+fNf
+meP
+sOa
+nWe
+nWe
+naL
+mRP
+raP
+nqI
+jPj
+ydH
+jPj
+jPj
+jPj
+ele
+cZR
+fBi
+qdo
+oyV
+jho
+ydH
+jPj
+jPj
+kcb
+mAq
+jPj
+bRy
+srN
+wJf
+iSR
+tnC
+tBO
+wPr
+dgi
+whG
+dhV
+vOz
+ozh
+ozh
+ozh
+ozh
+ozh
+jOC
+jOC
+uFG
+uFG
+uFG
+uFG
+uFG
+uFG
+uFG
+iKN
+iKN
+lkl
+gxH
+aVY
+ooY
+ooY
+ooY
+urO
+jiZ
+tsR
+dOs
+pVi
+mYw
+pJE
+djn
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+ifh
+ifh
+kxY
+kxY
+kxY
+kxY
+kxY
+bav
+bav
+nFb
+bav
+bav
+tgZ
+tgZ
+kxY
+iba
+iba
+sqs
+iba
+iba
+cpf
+iba
+iba
+iba
+iba
+iba
+iba
+iba
+iba
+iba
+sqs
+fOj
+hAX
+qkJ
+qJo
+wHk
+vAH
+tYq
+fqE
+mtu
+oez
+lyw
+cpt
+krU
+tgZ
+tgZ
+mco
+irp
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(142,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+nUC
+kkG
+dwE
+ktx
+mVT
+rIn
+kyt
+sGF
+ioz
+vej
+kvU
+aWa
+dhV
+dhV
+mOS
+rtk
+dhV
+dhV
+nqj
+mOS
+dhV
+dhV
+pWu
+ant
+dhV
+vFm
+dhV
+thw
+bnK
+hyo
+vfk
+dhV
+dhV
+dhV
+apg
+hOU
+dhV
+bkv
+dhV
+vFm
+mMw
+dhV
+nqj
+dhV
+vOz
+ozh
+ozh
+ozh
+ozh
+ozh
+rRw
+rRw
+jOC
+gxH
+iKN
+lkl
+iKN
+iKN
+iKN
+iKN
+iKN
+gxH
+gxH
+aVY
+ooY
+ooY
+ooY
+urO
+jiZ
+mnt
+dOs
+tsR
+mYw
+pJE
+kOk
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+ifh
+ifh
+kxY
+xzh
+xzh
+xzh
+pjZ
+bav
+bAh
+rlZ
+lcg
+bav
+tgZ
+tgZ
+kxY
+sqs
+sqs
+sqs
+sqs
+vcz
+oaB
+sHv
+sHv
+sHv
+sHv
+sHv
+sHv
+sHv
+sHv
+sHv
+pII
+krU
+nAr
+iKY
+rfz
+wOa
+wlT
+uaZ
+mxo
+mmO
+oWC
+mxo
+pCR
+krU
+tgZ
+tgZ
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(143,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+nUC
+eWJ
+ecP
+rgT
+fli
+fXq
+dwj
+nUs
+jWY
+iiq
+wyF
+bhd
+bhd
+bhd
+bhd
+rhv
+bhd
+bhd
+bhd
+occ
+occ
+occ
+hRN
+occ
+kvJ
+kvJ
+kvJ
+fZv
+kvJ
+kvJ
+dhV
+kJA
+mrP
+mrP
+apg
+xsc
+xsc
+nQd
+xsc
+xsc
+tWt
+dhV
+dhV
+tUY
+lDP
+ozh
+ozh
+ozh
+ozh
+ozh
+etf
+oYg
+oYg
+oYg
+rvQ
+lkl
+rvQ
+rvQ
+rvQ
+rvQ
+rvQ
+lkl
+gxH
+aVY
+ooY
+ooY
+aVY
+aZi
+kOk
+lQu
+cNR
+djn
+kOk
+djn
+kOk
+djn
+kOk
+djn
+kOk
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+ifh
+kxY
+xzh
+bUf
+xzh
+hZF
+bav
+clt
+qic
+juT
+bav
+tgZ
+tgZ
+kxY
+kxY
+kxY
+sqs
+iba
+qUt
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+krU
+krU
+krU
+krU
+krU
+krU
+krU
+krU
+krU
+krU
+krU
+krU
+krU
+tgZ
+tgZ
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(144,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+cOY
+hOt
+pOF
+rUN
+nGd
+doN
+mnq
+nUs
+roW
+uud
+eqa
+bhd
+vDY
+yep
+oTP
+fjw
+oTP
+ftB
+bhd
+xqD
+jDE
+hHa
+mdX
+tyI
+kvJ
+dOD
+flG
+kDY
+tho
+kvJ
+oFl
+dhV
+cXI
+nrV
+apg
+xsc
+iNl
+xzG
+vRH
+xsc
+luR
+xAz
+xAz
+xAz
+xAz
+xAz
+xAz
+drC
+mtm
+etf
+oYg
+fOg
+aPX
+etf
+pBW
+rrs
+lTW
+lTW
+lTW
+lCl
+pBW
+pBW
+pBW
+aVY
+ooY
+ooY
+aVY
+vSJ
+vSJ
+ncw
+hRS
+eKS
+qKo
+vSJ
+vSJ
+rfZ
+oeu
+vSJ
+djn
+kOk
+djn
+kOk
+djn
+kOk
+djn
+kOk
+djn
+kOk
+kxY
+eUr
+rlt
+bMY
+bwC
+bav
+qAb
+wgR
+txY
+bav
+kxY
+kxY
+kxY
+bUf
+kxY
+dbT
+iba
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(145,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+hgI
+tgZ
+tgZ
+tgZ
+nUs
+nUs
+opr
+hBE
+syJ
+sbL
+ewp
+foL
+roW
+lgE
+wHF
+bhd
+rhw
+loE
+iCX
+fbe
+naC
+vLc
+bhd
+cLU
+occ
+gWe
+uNU
+jkx
+kvJ
+qKD
+ntL
+bbg
+nsK
+kvJ
+bjC
+dhV
+dhV
+qVS
+apg
+xsc
+sbo
+oBv
+rxF
+xsc
+mMw
+dqy
+ivu
+jDj
+foM
+pEY
+uTx
+htm
+drC
+oYg
+jzT
+jNW
+atU
+ttI
+oJh
+oqL
+lTW
+lTW
+feU
+oyL
+oyL
+oyL
+oyL
+uIr
+ooY
+vmZ
+xMm
+peh
+dVy
+rhI
+uVK
+uGa
+cuE
+nJI
+cuE
+xdW
+iQi
+ghI
+sBd
+tPS
+ffl
+tPS
+ien
+tPS
+tPS
+wSn
+tPS
+tPS
+cHY
+trF
+fiR
+iyF
+kiu
+bav
+bav
+hJE
+bav
+bav
+iba
+cNs
+xpd
+aiH
+kxY
+fmN
+iba
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(146,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+uZY
+uKi
+guC
+syJ
+sBl
+tnw
+nUs
+nUs
+lrX
+uRu
+bhd
+oVe
+qDr
+oTP
+nla
+rKn
+ods
+bhd
+occ
+occ
+qCC
+eyc
+kvJ
+kvJ
+mze
+kvJ
+fwV
+mgN
+kvJ
+kvJ
+mrP
+mrP
+mrP
+tkQ
+xsc
+psQ
+hzA
+sOg
+xsc
+mMw
+fzh
+dbI
+vUP
+kQp
+kQp
+vUP
+buM
+mtm
+etf
+etf
+mcw
+etf
+etf
+oYg
+heK
+lTW
+lTW
+lTW
+pKA
+vCJ
+pBW
+pBW
+vBi
+ooY
+aNH
+vBi
+vSJ
+xJN
+pJE
+xJN
+xJN
+xJN
+vSJ
+cim
+jbe
+eIU
+vSJ
+akN
+kOk
+djn
+kOk
+djn
+kOk
+djn
+kOk
+djn
+nDg
+kxY
+uAa
+bUf
+bUf
+mwF
+ulj
+bnj
+rtF
+rAY
+sqs
+iba
+cNs
+toE
+aiH
+mZo
+oVq
+gov
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(147,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+cOY
+eoS
+rOq
+syJ
+pYS
+qbN
+nsF
+mxw
+ukV
+owR
+hZy
+pfA
+sQR
+aoQ
+czh
+dAI
+rBe
+bhd
+qOg
+uuX
+tEO
+xly
+kvJ
+xau
+sdX
+kvJ
+meq
+wcN
+gsh
+kvJ
+vVD
+dhV
+mrP
+ktk
+xsc
+pcC
+qlw
+iOS
+xsc
+mMw
+fzh
+dbI
+vUP
+xTd
+aoM
+vUP
+wUu
+drC
+sQQ
+sQQ
+fOg
+jNW
+sQQ
+etf
+bqt
+iKN
+cRV
+wAY
+lkl
+gxH
+inO
+lkl
+aVY
+eTS
+nmu
+aVY
+rVY
+pJE
+pJE
+pJE
+pJE
+rVY
+mEb
+rnw
+mnc
+tsR
+uDb
+kOk
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+ifh
+kxY
+vbh
+rAY
+rAY
+rAY
+rAY
+rAY
+rAY
+rAY
+jYg
+iba
+cNs
+oVq
+aiH
+aiH
+toE
+gov
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(148,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+tgZ
+tgZ
+tgZ
+nUC
+nUC
+wGC
+kkT
+iEM
+dPO
+aam
+vQO
+qdx
+ogD
+bhd
+gIF
+oTP
+kbE
+hVE
+vFg
+aHO
+bhd
+occ
+occ
+iYL
+tre
+kvJ
+rrP
+chv
+kvJ
+yhp
+loe
+bwV
+kvJ
+nUn
+dhV
+dhV
+mVr
+xsc
+qWV
+iKj
+iVq
+xsc
+ewb
+xAz
+bcV
+cQz
+arY
+jJg
+hWy
+eyP
+mtm
+sQQ
+sQQ
+doM
+jNW
+dis
+oYg
+lkl
+iKN
+gxH
+gxH
+gxH
+inO
+inO
+gxH
+aVY
+ooY
+aNH
+aVY
+pJE
+pJE
+pJE
+pJE
+pJE
+pJE
+jiZ
+rnw
+mnc
+tsR
+mYw
+djn
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+ifh
+ifh
+kxY
+uwg
+rAY
+eJh
+vfw
+aiH
+aiH
+oqv
+rAY
+sqs
+iba
+cNs
+oVq
+aiH
+rAY
+lIQ
+iba
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(149,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+nUs
+nUs
+nUs
+nUs
+nUs
+nUs
+nUs
+nUs
+nUs
+bhd
+qJa
+oTP
+mJu
+kBo
+ogr
+utG
+bhd
+efS
+moL
+hHa
+hHa
+kvJ
+xHB
+evN
+kvJ
+qVW
+kyU
+svq
+kvJ
+bFD
+nrV
+mrP
+ktk
+xsc
+tDP
+oai
+usL
+xsc
+bWX
+noQ
+gHl
+sZR
+utY
+lCB
+nKp
+uEP
+drC
+sQQ
+atU
+suB
+jNW
+jNW
+etf
+lkl
+gxH
+gxH
+gxH
+gxH
+xfd
+gxH
+gxH
+aVY
+ooY
+aNH
+aVY
+djn
+kOk
+pJE
+pJE
+pJE
+pJE
+jiZ
+rnw
+mnc
+tsR
+mYw
+kOk
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+ifh
+ifh
+ifh
+kxY
+pCQ
+rAY
+eJh
+kny
+rpF
+gJh
+aiH
+rAY
+sqs
+sqs
+elE
+aNk
+gJh
+rAY
+sqs
+iba
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(150,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+hgI
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+ifh
+ifh
+rRw
+rRw
+bhd
+ojk
+xcw
+bhd
+bhd
+lTo
+bhd
+bhd
+jgj
+jgj
+jgj
+jgj
+jgj
+jgj
+jgj
+kvJ
+nuO
+kvJ
+kvJ
+kvJ
+dhV
+mrP
+mrP
+wnG
+xsc
+kka
+xsc
+xsc
+xsc
+cdf
+xAz
+crV
+vRC
+uLs
+uLs
+oET
+dZC
+mtm
+muU
+sQQ
+jNW
+fOg
+suB
+oYg
+etf
+rRw
+rRw
+rRw
+gxH
+gxH
+uYA
+uYA
+uYA
+ooY
+uEN
+aVY
+rRw
+kOk
+djn
+pJE
+pJE
+pJE
+jiZ
+rnw
+mnc
+tsR
+mYw
+djn
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+ifh
+ifh
+idF
+kxY
+vbh
+rAY
+rAY
+rAY
+joQ
+kny
+aiH
+rAY
+rAY
+rAY
+rAY
+rAY
+eSu
+rAY
+cpf
+cpf
+sBw
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(151,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+ifh
+ifh
+ifh
+joo
+bhd
+joo
+jgj
+jkt
+psh
+kgA
+hgb
+ver
+jgj
+njO
+dkj
+cCD
+xca
+jgj
+nhk
+tXN
+hRU
+kvJ
+nUn
+dhV
+dhV
+tOG
+oAP
+xsc
+tBD
+oec
+nbj
+xsc
+mWi
+fzh
+dbI
+vUP
+gZo
+aDY
+vUP
+wUu
+drC
+fWO
+kSy
+lSL
+kSy
+qiz
+etf
+etf
+uYA
+uYA
+uYA
+uYA
+uYA
+uYA
+iUY
+uYA
+mnn
+ooY
+aVY
+rRw
+rRw
+kOk
+kOk
+djn
+kOk
+jiZ
+jQq
+mnc
+vSJ
+djn
+kOk
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+ifh
+ifh
+idF
+kxY
+jZv
+wkN
+iba
+dgj
+joq
+gfh
+cDn
+rAY
+wkL
+aTf
+xzh
+fKl
+aiH
+rAY
+sqs
+iba
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(152,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+ifh
+ifh
+rRw
+rRw
+jOC
+gue
+xqL
+rCB
+bqb
+frs
+mcr
+jgj
+tTo
+erA
+oLN
+etQ
+jgj
+kRK
+tbt
+klS
+kvJ
+dhV
+dhV
+dhV
+apg
+dzi
+xsc
+iUw
+rZy
+gyT
+xsc
+mWi
+fzh
+dbI
+vUP
+vUP
+vUP
+vUP
+rbC
+mtm
+sQQ
+kSy
+jNW
+jNW
+jNW
+oYg
+etf
+uYA
+iRe
+iRe
+iRe
+iRe
+iRe
+mxI
+nXu
+cQi
+ooY
+aVY
+rRw
+rRw
+rRw
+rRw
+rRw
+djn
+kOk
+lQu
+kle
+djn
+kOk
+djn
+kOk
+djn
+rRw
+rRw
+rRw
+ifh
+ifh
+ifh
+idF
+kxY
+vbh
+rAY
+rAY
+rAY
+rAY
+eKi
+rAY
+rAY
+eJK
+sOC
+tUb
+xzh
+lhg
+rAY
+sqs
+iba
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(153,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+xIr
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+ifh
+ifh
+rRw
+rRw
+rRw
+jgj
+lmr
+lGe
+bpo
+kAS
+qJA
+jgj
+fMK
+jgj
+jgj
+jgj
+jgj
+kvJ
+kvJ
+kvJ
+kvJ
+mrP
+mrP
+dhV
+apg
+dzi
+xsc
+xsc
+xsc
+xsc
+xsc
+mWi
+fzh
+dbI
+vMK
+vdl
+syE
+kke
+bkg
+drC
+sQQ
+sQQ
+jNW
+cTR
+cky
+etf
+rRw
+uYA
+iRe
+lGM
+uYA
+iRe
+fFC
+sNX
+uYA
+fAz
+bSy
+tbG
+tbG
+tbG
+tbG
+tbG
+rRw
+rRw
+djn
+ePT
+hGv
+nis
+tFK
+tFK
+mdy
+pJE
+jOC
+rRw
+rRw
+ifh
+ifh
+idF
+idF
+kxY
+ebw
+xuB
+wJe
+xuB
+vvl
+fOk
+lyV
+dTO
+khz
+xuB
+xuB
+obz
+aiH
+rAY
+dbT
+iba
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(154,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+ifh
+ifh
+rRw
+rRw
+rRw
+rRw
+jgj
+gue
+vBZ
+oYi
+oYi
+rKF
+fie
+jgj
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+mrP
+dhV
+apg
+dzi
+dhV
+dhV
+iVn
+dhV
+rbj
+joW
+xAz
+lhF
+xAz
+xAz
+xAz
+xAz
+drC
+mtm
+etf
+oYg
+etf
+oYg
+etf
+oYg
+rRw
+uYA
+hiC
+uYA
+uYA
+hCr
+sNX
+uYA
+nIu
+aOy
+tGP
+nIu
+hFM
+blw
+lIY
+tbG
+rRw
+rRw
+kOk
+oqO
+nic
+djn
+kOk
+djn
+kOk
+djn
+rRw
+rRw
+rRw
+ifh
+ifh
+idF
+idF
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+iVi
+bUf
+rAY
+sqs
+iba
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(155,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+hgI
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+ifh
+ifh
+ifh
+rRw
+rRw
+rRw
+rRw
+jgj
+gOC
+nQn
+nQn
+cBK
+nUr
+jgj
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+mrP
+bqN
+roa
+gMT
+nWe
+nWe
+iDF
+nWe
+lIK
+inQ
+inQ
+kKS
+inQ
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+jOC
+rRw
+jOC
+rRw
+rRw
+rRw
+uYA
+iRe
+iRe
+sDX
+sNX
+uYA
+uYA
+nIu
+aOy
+ehF
+nIu
+ual
+blw
+tDQ
+tbG
+ujg
+ujg
+etX
+oCF
+etX
+ujg
+ujg
+ujg
+ujg
+ujg
+rRw
+rRw
+rRw
+ifh
+ifh
+idF
+idF
+idF
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+tec
+xuj
+kxY
+uwg
+gnh
+rAY
+sqs
+iba
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(156,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+ifh
+ifh
+ifh
+rRw
+rRw
+jOC
+gue
+wBl
+jar
+gpp
+neL
+sNx
+jgj
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+mrP
+pFn
+pXT
+inQ
+inQ
+inQ
+inQ
+inQ
+inQ
+inQ
+anW
+kUa
+inQ
+uYA
+uYA
+uYA
+uYA
+uYA
+uYA
+uYA
+uYA
+uYA
+uYA
+uYA
+uYA
+uYA
+iRe
+fFC
+sNX
+jeR
+jeR
+fsY
+nIu
+aOy
+ehF
+nIu
+vRr
+blw
+lIY
+tbG
+ujg
+csF
+eel
+uZw
+ykI
+sIP
+ujg
+agj
+csF
+ujg
+rRw
+rRw
+rRw
+ifh
+ifh
+idF
+idF
+idF
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+tec
+mEQ
+lAP
+vbh
+wtB
+rAY
+sqs
+iba
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(157,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+ifh
+ifh
+rRw
+rRw
+rRw
+jgj
+gue
+jgj
+gue
+jgj
+gue
+jgj
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+mrP
+xEc
+sIm
+xsL
+esR
+pMs
+xPi
+pMs
+qSK
+aBm
+kUa
+tzZ
+vTf
+puF
+glf
+xQC
+fKr
+lOQ
+ehp
+xDE
+ehp
+ehp
+ehp
+bLl
+jQm
+iRe
+bCy
+sNX
+jeR
+jeR
+gAn
+ruO
+nIu
+aOy
+ehF
+nIu
+bMV
+fDy
+oJW
+tbG
+csF
+rMS
+sxm
+dVb
+iOn
+xeu
+csF
+csF
+csF
+ujg
+rRw
+rRw
+ifh
+ifh
+ifh
+idF
+idF
+idF
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+cPk
+tec
+kxY
+uKV
+vxK
+rAY
+sqs
+iba
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(158,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+ifh
+ifh
+ifh
+rRw
+rRw
+rRw
+jOC
+rRw
+jOC
+rRw
+jOC
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+mrP
+xEc
+sIm
+xsL
+cDQ
+vhD
+eMM
+vwl
+kio
+dyO
+dyO
+dyO
+dyO
+dyO
+dyO
+wlr
+ubt
+rQR
+dWI
+nMy
+nMy
+nMy
+nMy
+cAg
+nMy
+iRe
+tpG
+uYA
+jeR
+ojB
+jnt
+jGb
+nIu
+aOy
+ehF
+nIu
+sLU
+niQ
+sLC
+tbG
+csF
+owe
+hGE
+gMp
+sxm
+csF
+agj
+csF
+ujg
+ujg
+rRw
+ifh
+ifh
+ifh
+idF
+idF
+idF
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+kxY
+kxY
+kxY
+gJw
+vEC
+rAY
+sqs
+iba
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+kGV
+kGV
+kGV
+kGV
+mco
+mco
+mco
+kGV
+kGV
+kGV
+kGV
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(159,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+idF
+ifh
+ifh
+ifh
+ifh
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+mrP
+ruN
+edH
+xsL
+miM
+jmr
+xFJ
+dLT
+thP
+dyO
+wkd
+uCH
+tEW
+rWx
+cgn
+bjN
+cgn
+cgn
+cgn
+nMy
+eeK
+fCA
+sfv
+mdl
+nMy
+cZj
+tIc
+uYA
+uza
+sQK
+fWp
+ydE
+nIu
+bRs
+iMA
+nIu
+ijb
+xua
+jBZ
+tbG
+csF
+vDH
+orF
+ksx
+hGE
+hGE
+csF
+csF
+ujg
+rRw
+rRw
+ifh
+ifh
+ifh
+idF
+idF
+idF
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+lhg
+aiH
+jhJ
+uuM
+oAv
+rAY
+sqs
+iba
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+kGV
+rtW
+xJf
+kGV
+mco
+mco
+mco
+kGV
+iwJ
+vNE
+kGV
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(160,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+xIr
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+idF
+idF
+idF
+ifh
+ifh
+ifh
+ifh
+rRw
+rRw
+rRw
+hYG
+uUB
+rPv
+uUB
+hYG
+uUB
+hYG
+uUB
+hYG
+uUB
+qih
+bWG
+gZw
+ttH
+xdm
+lrc
+qcm
+pEN
+wfA
+dyO
+wic
+pbO
+peV
+nyi
+cgn
+vMR
+igz
+igz
+qjT
+nMy
+cBI
+uGG
+uGG
+wlH
+nMy
+jbL
+tIc
+uYA
+gFt
+xYU
+nLZ
+jaY
+nIu
+xAI
+efF
+nIu
+tyU
+ocA
+jLF
+tbG
+ujg
+dng
+cJE
+fYD
+hGE
+sxm
+ujg
+ujg
+ujg
+rRw
+rRw
+ifh
+ifh
+idF
+idF
+idF
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+gJh
+aiH
+jDs
+vbh
+aiH
+rAY
+sqs
+iba
+qUt
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+kGV
+awJ
+pFh
+kGV
+kGV
+kGV
+kGV
+kGV
+uyo
+sJo
+kGV
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(161,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+irp
+hgI
+hgI
+hgI
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+idF
+idF
+idF
+ifh
+ifh
+ifh
+rRw
+rRw
+uUB
+oqs
+eNn
+qih
+iqX
+fHw
+awN
+doD
+doD
+lqg
+ozA
+kSb
+bDk
+pKU
+pKU
+pKU
+pKU
+pKU
+pKU
+dyO
+gxk
+cha
+jNe
+uuF
+cgn
+vMR
+yiY
+dNh
+qjT
+nMy
+vTC
+rIN
+ucj
+bcP
+nMy
+jbL
+tIc
+uYA
+gwQ
+cID
+myJ
+sgP
+nIu
+xHx
+ehF
+nIu
+euF
+bxM
+bxM
+bxM
+bxM
+bxM
+dXC
+bxM
+bxM
+ujg
+ujg
+rRw
+rRw
+rRw
+ifh
+ifh
+idF
+idF
+idF
+idF
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+rXb
+lhg
+dam
+sSw
+aiH
+rAY
+sqs
+iba
+qUt
+kxY
+kGV
+kGV
+kGV
+kGV
+kGV
+kGV
+kGV
+kGV
+kGV
+cur
+cur
+jQZ
+uqJ
+mZK
+tiW
+kGV
+llg
+kGV
+kGV
+kGV
+kGV
+kGV
+kGV
+tgZ
+tgZ
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(162,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+hgI
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+idF
+idF
+idF
+ifh
+ifh
+rRw
+rRw
+sFm
+gJq
+uhF
+tjI
+doD
+pRY
+jAt
+orR
+pIH
+wXe
+qih
+dhV
+sFQ
+pKU
+caK
+xPb
+lkZ
+ldX
+lKn
+dyO
+pqk
+jIu
+peV
+sMY
+cgn
+oSd
+iAI
+lAX
+lPe
+nMy
+epG
+tHr
+nMy
+cub
+nMy
+jbL
+tIc
+uYA
+tXP
+nqW
+mNo
+ydE
+nIu
+xHx
+ehF
+nIu
+euF
+bxM
+rpW
+jbm
+bBN
+uMe
+mPX
+uLH
+bxM
+rRw
+rRw
+rRw
+rRw
+rRw
+ifh
+ifh
+idF
+idF
+idF
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+mDp
+bcD
+hPx
+sSw
+aiH
+rAY
+sqs
+iba
+qUt
+kxY
+plf
+qWq
+qWq
+lVw
+qWq
+xPB
+rVV
+rVV
+wir
+cur
+cur
+cur
+cur
+cur
+cur
+qyz
+cur
+cur
+cDe
+bqf
+roD
+qZO
+kGV
+tgZ
+tgZ
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(163,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+idF
+idF
+idF
+idF
+ifh
+ifh
+rRw
+rRw
+uUB
+vkR
+qON
+qih
+eYK
+ntj
+nsq
+seU
+bXl
+jON
+uUB
+nay
+fwr
+pKU
+fPP
+fPP
+jqM
+gVc
+oJq
+dyO
+jdV
+nvY
+akq
+qeu
+cgn
+itO
+ucI
+ubM
+acw
+nMy
+ePs
+bvr
+nMy
+grY
+nMy
+jbL
+tIc
+uYA
+naM
+mSp
+iSp
+ydE
+nIu
+xHx
+ehF
+nIu
+euF
+bxM
+tMM
+trx
+tKk
+ure
+mCm
+wMR
+bxM
+rRw
+rRw
+rRw
+rRw
+ifh
+ifh
+idF
+idF
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+kxY
+kxY
+jMh
+lhg
+pQk
+sSw
+aiH
+rAY
+bmb
+iba
+qUt
+kQc
+rVV
+eZi
+bTH
+eZi
+eZi
+bTH
+rVV
+rVV
+oqh
+khh
+svv
+uCz
+dMh
+njx
+uWw
+khh
+njx
+kiD
+oqh
+rVV
+cKy
+juI
+kGV
+tgZ
+tgZ
+mco
+irp
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(164,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+nOU
+oEr
+grW
+mco
+nOU
+oEr
+grW
+mco
+nOU
+oEr
+grW
+mco
+nOU
+oEr
+ydS
+mco
+nOU
+oEr
+grW
+idF
+nOU
+oEr
+grW
+ifh
+ifh
+ifh
+rRw
+hYG
+uUB
+dNv
+uUB
+hYG
+uAg
+hYG
+ssT
+aFw
+ssT
+aFw
+ssT
+sFQ
+pKU
+rrn
+pJF
+gqS
+gjx
+aFv
+dyO
+hmD
+jIu
+mbI
+leV
+cgn
+fXr
+rXc
+bAP
+oCJ
+nMy
+ngN
+lmX
+gWc
+rwM
+nMy
+jbL
+jiP
+uYA
+ojB
+mcz
+oQw
+ydE
+nIu
+xHx
+ehF
+nIu
+euF
+bxM
+hbT
+fHB
+rDo
+hMu
+cRR
+sRO
+bxM
+rRw
+rRw
+rRw
+rRw
+ifh
+ifh
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+tpK
+lni
+vEe
+gHT
+gHT
+ocp
+mdA
+ohp
+hhN
+sHv
+pAg
+kxY
+kWH
+rVV
+roD
+rVV
+rVV
+rVV
+rVV
+rVV
+xzF
+rVV
+rVV
+rVV
+its
+rVV
+its
+rVV
+rVV
+rVV
+rVV
+rVV
+hOo
+xCp
+kGV
+tgZ
+tgZ
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(165,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+idF
+ifh
+ifh
+ifh
+ifh
+rRw
+rRw
+hYG
+hYG
+bAy
+mii
+aFw
+uLv
+nyN
+nyN
+tJZ
+fvw
+pKU
+pKU
+pKU
+pKU
+tvI
+pKU
+dyO
+dyO
+gRC
+dyO
+dyO
+cgn
+cgn
+qZz
+cgn
+cgn
+nMy
+cqj
+nMy
+nMy
+nMy
+nMy
+oeb
+iRe
+uYA
+iqF
+bPb
+fsY
+fsY
+nIu
+luy
+hse
+rZH
+rAh
+dxC
+iGI
+iGI
+iGI
+iGI
+inF
+hVG
+hVG
+ubU
+ubU
+ubU
+ubU
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+kxY
+kxY
+aiH
+aiH
+aiH
+lhg
+gJh
+kxY
+kxY
+vEC
+kxY
+kxY
+kGV
+kGV
+rkI
+rVV
+cQq
+kGV
+kGV
+kGV
+kGV
+kGV
+kGV
+kGV
+mHI
+roD
+cQq
+kGV
+kGV
+kGV
+kGV
+kGV
+kGV
+kGV
+kGV
+tgZ
+tgZ
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(166,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+idF
+idF
+idF
+ifh
+ifh
+ifh
+ifh
+cKt
+fNu
+wxz
+bKr
+ssT
+uqF
+xZK
+uAQ
+ssT
+qXv
+dNS
+lSF
+gAL
+pJW
+hIw
+wAg
+plj
+qhb
+oOE
+kLV
+plj
+xXK
+bQO
+lHg
+plj
+tBI
+lZM
+jDO
+afV
+uYH
+xsS
+pMj
+vXh
+iRe
+uYA
+ngb
+thi
+tRQ
+lTJ
+hmC
+owU
+ajb
+wBJ
+lQy
+uSh
+iAx
+iAx
+iAx
+ppN
+eIw
+ubU
+tVd
+kQz
+rmX
+rMD
+ubU
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+rAY
+rAY
+rAY
+tcc
+rAY
+kxY
+mco
+mco
+tgZ
+mco
+mco
+kGV
+kGV
+jau
+kGV
+kGV
+mco
+mco
+tgZ
+mco
+mco
+kGV
+kGV
+jau
+kGV
+kGV
+mco
+mco
+tgZ
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(167,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+irp
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+idF
+idF
+idF
+idF
+ifh
+ifh
+ifh
+cKt
+bKr
+myk
+bKr
+shD
+bwB
+uos
+rWR
+aFw
+gay
+dhV
+qYb
+tZR
+mrP
+lGM
+bGR
+ltl
+nUK
+gKY
+fUH
+mMB
+hKF
+oxF
+ciB
+rZp
+cUn
+wYv
+tFS
+uYA
+ous
+iSq
+end
+iJz
+okb
+uYA
+qht
+bWs
+bWs
+hQj
+nIu
+xHx
+gCA
+ehF
+ehF
+ehF
+ehF
+ehF
+ehF
+ehF
+eww
+kjb
+xpt
+fNm
+eOR
+oBB
+ubU
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+rAD
+rAD
+xyy
+gJh
+aAT
+kxY
+mco
+mco
+tgZ
+mco
+mco
+mco
+dEo
+lUu
+dEo
+mco
+mco
+mco
+tgZ
+mco
+mco
+mco
+dEo
+pXb
+dEo
+mco
+mco
+mco
+tgZ
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(168,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+hgI
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+nOU
+eKq
+grW
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+uUB
+fXB
+uUB
+cKt
+shD
+shD
+ssT
+aFw
+ssT
+jfB
+lSM
+dEn
+roW
+roW
+ctk
+ctk
+ctk
+ctk
+ctk
+ctk
+ctk
+ctk
+ctk
+vPS
+vpQ
+vpQ
+vpQ
+vpQ
+vpQ
+vpQ
+vpQ
+aEB
+daj
+vxT
+vxT
+wQd
+fKX
+fKX
+fKX
+nIu
+vHC
+bqw
+xct
+nIu
+nIu
+nIu
+nIu
+nIu
+ehF
+hbD
+nFo
+vha
+vha
+fYW
+xcL
+ubU
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+sVL
+uro
+aUy
+myP
+uVq
+kxY
+mco
+hRR
+tgZ
+hRR
+mco
+mco
+dEo
+tJC
+dEo
+mco
+mco
+hRR
+tgZ
+hRR
+mco
+mco
+dEo
+tJC
+dEo
+mco
+mco
+hRR
+tgZ
+hRR
+mco
+mco
+hgI
+mco
+mco
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(169,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+hgI
+mco
+mco
+mKH
+mco
+mco
+mco
+mKH
+mco
+mco
+mco
+mKH
+mco
+mco
+mco
+mKH
+mco
+mco
+mco
+mKH
+mco
+mco
+mco
+mKH
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+ifh
+lSM
+lSM
+lSM
+lSM
+diS
+mEU
+lvY
+lSM
+rRw
+ctk
+xAy
+osu
+riX
+gdK
+eAP
+kjC
+iOq
+vOo
+mbM
+kyi
+nqD
+kMi
+vpQ
+ojD
+ktv
+lWy
+rSB
+uJs
+paF
+qaZ
+krC
+wQd
+kGG
+asB
+kGG
+nIu
+xHx
+gCA
+ndt
+iil
+mIW
+hIo
+vSm
+nIu
+dQc
+dun
+ubU
+eOl
+dXJ
+yin
+tuu
+ubU
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+uag
+mMf
+rAD
+myP
+cLX
+kxY
+hgI
+hRR
+iGO
+hRR
+hgI
+hgI
+dEo
+dEo
+dEo
+hgI
+hgI
+hgI
+iGO
+hgI
+hgI
+hgI
+dEo
+dEo
+dEo
+hgI
+hgI
+hRR
+iGO
+hRR
+hgI
+irp
+irp
+irp
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(170,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+irp
+hgI
+hgI
+hSJ
+muH
+muH
+rNw
+muH
+muH
+muH
+rNw
+muH
+muH
+muH
+rNw
+muH
+muH
+muH
+rNw
+muH
+muH
+muH
+rNw
+muH
+muH
+muH
+rNw
+muH
+muH
+muH
+muH
+muH
+muH
+muH
+muH
+muH
+muH
+muH
+eJA
+muH
+lyK
+iEh
+trK
+otm
+aJV
+aWy
+dEn
+rRw
+ctk
+jrs
+geU
+ggV
+bQG
+sSc
+rTI
+uBf
+kBO
+rVN
+nUP
+nqD
+kMi
+vpQ
+xni
+xjf
+lAH
+eHq
+vxT
+vxT
+sel
+vxT
+wQd
+kGG
+lBk
+qLl
+khX
+bEz
+nTe
+jew
+wNZ
+rCH
+hIo
+vSm
+nIu
+jYo
+vcq
+ubU
+tBq
+czW
+eHM
+rzJ
+pdq
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+fha
+uOI
+rAD
+myP
+rcu
+kxY
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hgI
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(171,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+hgI
+mco
+mco
+mKH
+mco
+mco
+mco
+mKH
+mco
+mco
+mco
+mKH
+mco
+mco
+mco
+mKH
+mco
+mco
+mco
+mKH
+mco
+mco
+mco
+mKH
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+idF
+idF
+idF
+idF
+ifh
+lSM
+lSM
+lSM
+aEU
+lOx
+gxB
+lSM
+rRw
+vHX
+vHX
+qaV
+enV
+lQL
+vHX
+ctk
+ctk
+ctk
+ctk
+hPq
+gSY
+vee
+nyv
+gMm
+fGp
+ieD
+vpQ
+vpQ
+npy
+vaF
+kbA
+wQd
+wQd
+wCr
+wMC
+irF
+ato
+lRg
+jew
+fGi
+hIo
+onX
+pyk
+nIu
+wAu
+ybY
+ubU
+ubU
+ubU
+ubU
+pdq
+pdq
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+mFZ
+wYy
+fUx
+myP
+bZy
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(172,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+hgI
+mco
+nOU
+kxX
+grW
+mco
+nOU
+kxX
+grW
+mco
+nOU
+xkS
+grW
+mco
+nOU
+kxX
+grW
+mco
+nOU
+kxX
+grW
+mco
+nOU
+kxX
+grW
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+hgI
+mco
+idF
+idF
+ifh
+ifh
+rRw
+lSM
+lSM
+lSM
+lSM
+dEn
+rRw
+vHX
+moS
+gki
+fsA
+sTu
+vHX
+bRe
+bRe
+bRe
+vpQ
+ppf
+nqD
+arG
+apJ
+eMZ
+rLI
+iOT
+vpQ
+hya
+otY
+vaF
+cZX
+sEA
+wQd
+hAe
+hAe
+vHs
+rmY
+rrW
+mgX
+hxF
+ejA
+wql
+oFq
+eTD
+yfd
+uIz
+nIu
+rRw
+ifh
+ifh
+idF
+idF
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+sTe
+wYy
+fUx
+mtj
+bZy
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(173,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+irp
+mco
+nOU
+kxX
+grW
+mco
+nOU
+kxX
+grW
+mco
+nOU
+xkS
+grW
+mco
+nOU
+kxX
+grW
+mco
+nOU
+kxX
+grW
+mco
+nOU
+kxX
+grW
+mco
+mco
+mco
+mco
+hgI
+hgI
+mco
+hgI
+mco
+mco
+idF
+idF
+ifh
+ifh
+rRw
+vHX
+vHX
+vHX
+vHX
+vHX
+vHX
+pUv
+xqU
+ufV
+wCn
+vHX
+bRe
+lnK
+bRe
+vpQ
+wgA
+nqD
+arG
+umy
+atT
+mxW
+vxT
+vxT
+cQk
+otY
+vaF
+cZX
+huR
+vxT
+vxT
+fKX
+nIu
+xHx
+gCA
+hkQ
+geY
+hIo
+lTd
+aol
+gqb
+uxq
+dcB
+nIu
+rRw
+ifh
+ifh
+ifh
+idF
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+fUx
+gZm
+sVL
+myP
+bZy
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(174,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+nOU
+kxX
+grW
+mco
+nOU
+kxX
+grW
+mco
+nOU
+xkS
+grW
+mco
+nOU
+kxX
+grW
+mco
+nOU
+kxX
+grW
+mco
+nOU
+kxX
+grW
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+irp
+irp
+mco
+mco
+idF
+idF
+ifh
+ifh
+vHX
+iDM
+aKJ
+oBH
+otl
+jWH
+lvg
+rjy
+ufV
+fCW
+vHX
+bRe
+fJg
+bRe
+vpQ
+qkm
+nqD
+bmQ
+eKm
+tgz
+mCq
+vxT
+evS
+gOv
+otY
+vaF
+cZX
+kCL
+evS
+vxT
+rRw
+nIu
+xHx
+gCA
+hkQ
+bXA
+hIo
+jEa
+tOW
+nIu
+lqB
+vRX
+nIu
+rRw
+ifh
+ifh
+idF
+idF
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+pzk
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+kxY
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(175,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+nOU
+kxX
+grW
+mco
+nOU
+kxX
+grW
+mco
+nOU
+xkS
+grW
+mco
+nOU
+kxX
+grW
+mco
+nOU
+kxX
+grW
+mco
+nOU
+kxX
+grW
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+idF
+idF
+idF
+ifh
+vHX
+fcC
+fcV
+fcV
+fcV
+vDr
+oZb
+jqd
+voj
+nnX
+vHX
+bRe
+uoI
+bRe
+vpQ
+quq
+eCR
+ebu
+hMq
+iao
+aUd
+vxT
+vxT
+kJj
+otY
+vaF
+cZX
+huR
+vxT
+vxT
+rRw
+nIu
+xHx
+gCA
+eNe
+hfC
+hIo
+ayw
+gjo
+nIu
+vdI
+lLl
+nIu
+rRw
+ifh
+ifh
+idF
+idF
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(176,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+nOU
+jmv
+grW
+mco
+nOU
+jmv
+grW
+mco
+nOU
+jmv
+grW
+mco
+nOU
+jmv
+grW
+mco
+nOU
+jmv
+grW
+mco
+nOU
+jmv
+grW
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+idF
+idF
+idF
+ifh
+vHX
+aCT
+tRp
+lhY
+fMd
+wDL
+vHA
+fDa
+xQZ
+jSG
+jSG
+bRe
+aKM
+bRe
+jSG
+jSG
+jvV
+xIT
+atT
+dwc
+vDm
+nkg
+vpQ
+moD
+otY
+vaF
+cZX
+nJG
+vxT
+rRw
+rRw
+nIu
+vHC
+bqw
+nIu
+nIu
+nIu
+nIu
+nIu
+nIu
+sDo
+dgX
+nIu
+ifh
+ifh
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+wZf
+neC
+ygJ
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(177,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+mco
+idF
+idF
+idF
+ifh
+vHX
+fcV
+fcV
+fcV
+fcV
+aKR
+gPS
+vDi
+fYS
+jSG
+vfy
+wtj
+aHg
+jKe
+qgw
+jSG
+vpQ
+ugw
+vpQ
+vpQ
+vpQ
+vxT
+vxT
+lrs
+otY
+vaF
+cZX
+huR
+vxT
+vxT
+rRw
+nIu
+xHx
+gCA
+hLx
+ehF
+ehF
+ehF
+lGa
+ehF
+sDo
+kTk
+nIu
+ifh
+ifh
+idF
+idF
+idF
+mzx
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+wZf
+dqq
+uId
+hRR
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(178,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+hgI
+idF
+idF
+idF
+ifh
+vHX
+lLe
+knU
+ecF
+xlo
+ltS
+coB
+lJo
+qoD
+jSG
+wyY
+xnX
+xRD
+yhG
+wyY
+jSG
+qju
+gfA
+jTy
+vVB
+bOU
+vxT
+evS
+gOv
+otY
+vaF
+cZX
+kCL
+evS
+vxT
+rRw
+nIu
+xHx
+gCA
+ehF
+ehF
+tqp
+xGB
+sjq
+qXs
+qXs
+jOq
+nIu
+wZf
+wZf
+wZf
+wZf
+uId
+par
+uId
+wZf
+wZf
+wZf
+wZf
+wZf
+wZf
+wZf
+wZf
+ceQ
+uId
+wZf
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(179,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+irp
+irp
+hgI
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+hgI
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+ifh
+vHX
+fcV
+fcV
+fcV
+ePY
+cUQ
+uzX
+jSG
+jSG
+jSG
+hAw
+atV
+aoa
+atV
+iyY
+jSG
+jSG
+jSG
+jSG
+mRH
+cjK
+vxT
+vxT
+cQk
+lZz
+vaF
+jwp
+huR
+vxT
+vxT
+rRw
+nIu
+xHx
+chc
+abt
+mGA
+gid
+bfL
+gid
+cAJ
+ehF
+hVN
+sZJ
+hWp
+akz
+wNg
+xLt
+wNg
+vUj
+cMf
+tdv
+vQC
+vQC
+vQC
+vQC
+vQC
+tdv
+ewd
+gbf
+fCc
+wZf
+wZf
+wZf
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(180,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+ifh
+vHX
+tTa
+dfv
+iLj
+cYp
+kJT
+jSG
+jSG
+hAw
+idQ
+atV
+iHT
+atV
+iHT
+atV
+idQ
+auu
+jSG
+jSG
+mdC
+wdN
+pIe
+fKg
+ivj
+vkq
+chf
+jhr
+iPK
+vxT
+rRw
+rRw
+nIu
+xHx
+gCA
+uQR
+vSo
+kIl
+qev
+gFE
+nIu
+nIG
+nIG
+vVe
+kYo
+pLH
+flV
+sjm
+vCR
+dTi
+uzq
+eAY
+lOC
+jEX
+jEX
+jEX
+jEX
+vWn
+iAL
+mlR
+liF
+wIR
+gRM
+dHF
+mco
+eWA
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(181,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+hgI
+idF
+idF
+idF
+idF
+ifh
+vHX
+vHX
+vHX
+vHX
+jSG
+oqe
+jSG
+hAw
+atV
+iHT
+asC
+mhT
+sEF
+ihE
+cRt
+iHT
+atV
+auu
+jSG
+qgB
+ePL
+nVO
+fKg
+vxT
+mce
+qqj
+pRZ
+hYW
+vxT
+rRw
+rRw
+nIu
+mBR
+dbw
+uQR
+lAG
+dMj
+vzT
+oqn
+nIu
+nIu
+nIu
+nIu
+wZf
+wZf
+wZf
+wZf
+uId
+uId
+uId
+wZf
+wZf
+wZf
+wZf
+wZf
+wZf
+wZf
+wZf
+nTn
+uId
+wZf
+wZf
+eju
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(182,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+idF
+idF
+idF
+ifh
+ifh
+rRw
+rRw
+jSG
+jSG
+jSG
+arj
+jSG
+sBK
+wNl
+qaG
+kkC
+fSU
+gTb
+qAS
+tkY
+dmG
+sBK
+wNl
+jSG
+jSG
+jSG
+jSG
+nYV
+lgS
+lgS
+diR
+lgS
+lgS
+lgS
+rRw
+rRw
+nIu
+bPo
+bnO
+gid
+iSM
+oqn
+fqM
+oqn
+oqn
+xIO
+vjW
+xGr
+idF
+idF
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+hRR
+wZf
+raF
+uId
+hRR
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(183,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+irp
+mco
+mco
+mco
+idF
+idF
+idF
+rRw
+jSG
+jSG
+jSG
+jSG
+jSG
+cmH
+udd
+hAw
+atV
+asC
+uXQ
+xRD
+bRe
+ryg
+bRe
+xRD
+amE
+cRt
+atV
+auu
+pMS
+woP
+jSG
+jSG
+lgS
+kJO
+nBs
+vgM
+lgS
+lgS
+rRw
+nIu
+nIu
+sBr
+bnO
+gid
+yed
+eOE
+lsQ
+fcU
+oqn
+amt
+vjW
+xGr
+idF
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+hRR
+wZf
+epC
+ygJ
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(184,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+irp
+hgI
+hgI
+idF
+idF
+idF
+idF
+vhn
+ilW
+xuM
+jSG
+flE
+ujR
+jFa
+evr
+iHT
+asC
+akV
+imH
+bRe
+bRe
+oCX
+bRe
+bRe
+qlb
+swZ
+sBK
+atV
+afh
+nBU
+sOV
+jSG
+cDB
+vYT
+nFN
+rqn
+pUl
+lgS
+nIu
+nIu
+ehF
+rEZ
+mXB
+oQa
+oqn
+oqn
+fqM
+oqn
+oqn
+xIO
+vjW
+xGr
+idF
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(185,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+aLO
+sYT
+hwv
+pox
+mBr
+qLf
+lho
+mEq
+riw
+mEq
+hsn
+kbl
+wOH
+bRe
+oHa
+wwk
+bRe
+iOy
+jZu
+sBK
+vgl
+xRD
+jlk
+pLC
+fzL
+mtT
+nXh
+onn
+sQj
+aPE
+oMC
+sSf
+vnN
+nLW
+kPV
+ckr
+uQR
+oqn
+nJC
+pXu
+jNs
+uWa
+xIO
+hPv
+xGr
+idF
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hma
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(186,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+nZF
+jSG
+cCc
+jSG
+rNH
+aXV
+dbP
+sze
+idQ
+iyY
+ydG
+eTc
+bRe
+bRe
+kIp
+bRe
+bRe
+giL
+csV
+sBK
+atV
+tfh
+uxy
+itJ
+jSG
+kvi
+vYT
+nFN
+nIi
+oEQ
+pdN
+qap
+sDo
+sDo
+ovY
+cPE
+uQR
+mxj
+rXL
+qev
+jFn
+eov
+xIO
+nzr
+xGr
+idF
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(187,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+ifh
+jSG
+jSG
+jSG
+jSG
+jSG
+oba
+fux
+cRt
+atV
+auu
+eSK
+xRD
+bRe
+wCz
+bRe
+xRD
+qHv
+hAw
+atV
+elq
+pMS
+rVT
+jSG
+jSG
+lgS
+uve
+kjN
+hTP
+lgS
+wFl
+ngw
+ngw
+ngw
+ngw
+qxu
+uQR
+oBd
+gFs
+kds
+xIO
+xIO
+xIO
+nzr
+xGr
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(188,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+ifh
+ifh
+ifh
+ifh
+ifh
+rRw
+jSG
+jSG
+jSG
+jSG
+jSG
+sBK
+wNl
+gwD
+bOi
+mBi
+dma
+ybn
+goF
+xHJ
+sBK
+wNl
+jSG
+jSG
+jSG
+jSG
+nYV
+lgS
+lgS
+oqG
+lgS
+lgS
+wFl
+kCi
+jYK
+rsk
+ngw
+pSk
+uQR
+rUw
+wil
+eYF
+lWo
+xIO
+asG
+eKC
+xGr
+idF
+idF
+idF
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(189,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+idF
+idF
+idF
+idF
+idF
+ifh
+ifh
+ifh
+ifh
+ifh
+rRw
+rRw
+rRw
+jOC
+rRw
+jSG
+cRt
+atV
+idQ
+wWR
+knB
+jtM
+ebq
+hAw
+idQ
+atV
+elq
+jSG
+rRw
+jOC
+rRw
+evc
+evc
+fuO
+eHm
+xwN
+pWZ
+wFl
+cRb
+lKp
+kxA
+ngw
+pSk
+uQR
+bTK
+ybW
+byN
+wPT
+xIO
+nzr
+nzr
+xGr
+idF
+idF
+idF
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(190,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+ifh
+ifh
+ifh
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+jOC
+jSG
+jSG
+cRt
+iHT
+atV
+idQ
+atV
+idQ
+atV
+iHT
+elq
+jSG
+jSG
+jOC
+rRw
+rRw
+evc
+hHF
+tpF
+jSB
+gyF
+cBr
+wFl
+cTN
+kOI
+mSx
+ngw
+pSk
+uQR
+qbI
+dQL
+bxl
+pBN
+xIO
+nYp
+nzr
+xGr
+idF
+idF
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(191,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+ifh
+ifh
+ifh
+ifh
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+jSG
+jSG
+jSG
+jSG
+cRt
+atV
+hcM
+atV
+elq
+jSG
+jSG
+jSG
+jSG
+rRw
+rRw
+rRw
+evc
+evc
+vpk
+wfn
+kCo
+iTw
+wFl
+cRb
+iLg
+gFI
+ngw
+qxu
+hxq
+bKe
+iFf
+qji
+bkB
+xIO
+nzr
+nzr
+xGr
+idF
+idF
+hgI
+hgI
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(192,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+hgI
+idF
+idF
+idF
+idF
+idF
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+jOC
+rRw
+jSG
+wyY
+rQW
+xRD
+eyA
+wyY
+jSG
+rRw
+jOC
+rRw
+rRw
+rRw
+rRw
+evc
+tie
+eoq
+eoq
+dTP
+mfa
+wFl
+oNx
+vCn
+hcu
+ngw
+pSk
+uQR
+uQR
+kPo
+pAL
+uQR
+xIO
+vjW
+dwS
+xGr
+idF
+idF
+mco
+mco
+irp
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(193,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+jOC
+jSG
+iww
+ucF
+jPl
+xBJ
+iVL
+jSG
+jOC
+rRw
+rRw
+rRw
+rRw
+rRw
+evc
+evc
+icT
+whC
+eoq
+vcX
+wFl
+cRb
+bJn
+gWY
+ngw
+pSk
+nIu
+fjU
+fNF
+pWb
+xIO
+nzr
+nzr
+nzr
+xGr
+idF
+idF
+hgI
+hgI
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(194,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+irp
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+ifh
+jSG
+jSG
+bRe
+aKM
+bRe
+jSG
+jSG
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+evc
+mXz
+evc
+evc
+evc
+wFl
+cRb
+hqy
+crM
+ngw
+pSk
+nIu
+xIO
+xsr
+fNF
+nBq
+nzr
+nzr
+nzr
+xGr
+idF
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(195,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+idF
+idF
+idF
+idF
+xwI
+xwI
+xwI
+xwI
+idF
+xwI
+xwI
+xwI
+xwI
+idF
+xwI
+xwI
+xwI
+xwI
+idF
+idF
+ifh
+jSG
+bRe
+dah
+bRe
+jSG
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+ngw
+cRb
+kEy
+bkn
+ngw
+qxu
+nIu
+cfU
+xGU
+xAR
+nzr
+kBI
+nzr
+nzr
+xGr
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(196,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+idF
+idF
+idF
+idF
+xwI
+hWK
+jYX
+xwI
+idF
+xwI
+kCr
+fwv
+xwI
+idF
+xwI
+xfo
+mKb
+xwI
+idF
+idF
+ifh
+jSG
+bRe
+iGZ
+bRe
+jSG
+rRw
+rRw
+bOu
+bOu
+bOu
+bOu
+bOu
+bOu
+bOu
+nIu
+nIu
+nIu
+nIu
+ngw
+ngw
+ftC
+ngw
+ngw
+wqw
+nIu
+nIu
+cfU
+nzr
+eKC
+nzr
+nzr
+nzr
+xGr
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(197,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+idF
+idF
+idF
+idF
+idF
+xwI
+oyc
+pWN
+xwI
+idF
+xwI
+gzc
+gzc
+xwI
+idF
+xwI
+sHd
+sHd
+xwI
+idF
+idF
+idF
+jSG
+bRe
+fjz
+bRe
+jSG
+rRw
+bOu
+bOu
+mKD
+mKD
+kwS
+amR
+mKD
+mKD
+bxy
+oBe
+ehF
+iCI
+lMM
+oIp
+nsh
+hNj
+mzY
+hxV
+ehF
+nIu
+cfU
+sat
+vwS
+nzr
+nzr
+vwS
+xGr
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(198,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+xwI
+vMi
+bLS
+xwI
+idF
+xwI
+vWz
+rDJ
+xwI
+idF
+xwI
+aee
+pqT
+xwI
+idF
+idF
+idF
+jSG
+bRe
+bRe
+bRe
+jSG
+rRw
+bOu
+mKD
+bOJ
+vri
+lHd
+vri
+vri
+vri
+rzO
+cqv
+rzO
+rzO
+tnT
+aBC
+eHB
+cOh
+wxT
+pYk
+ehF
+nIu
+jsD
+jsD
+jsD
+jsD
+nzr
+nzr
+xGr
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(199,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+hgI
+hgI
+hgI
+idF
+idF
+idF
+idF
+idF
+xwI
+eog
+uJf
+xwI
+idF
+xwI
+eog
+uJf
+xwI
+idF
+xwI
+eog
+uJf
+xwI
+idF
+idF
+kAH
+jSG
+jSG
+jSG
+jSG
+jSG
+rRw
+bOu
+mKD
+skJ
+bOu
+bOu
+bOu
+eOK
+kJK
+nIu
+nIu
+nIu
+nIu
+ogN
+nIu
+vmv
+aeu
+cQJ
+iWN
+vmv
+vmv
+yis
+xPG
+xPG
+jsD
+nzr
+nzr
+xGr
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(200,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+mco
+idF
+idF
+idF
+bAQ
+oSA
+oSA
+oSA
+jGu
+grE
+oSA
+oSA
+oSA
+jGu
+grE
+oSA
+oSA
+jvB
+fPn
+oxB
+bAQ
+oSA
+oSA
+oSA
+oSA
+oSA
+jvB
+tyP
+bOu
+bOu
+bOu
+wyL
+skJ
+bOu
+qBw
+bOu
+bOu
+bOu
+jVJ
+siR
+bIf
+erd
+hSt
+jVJ
+yil
+mdJ
+bgs
+doo
+lyh
+vmv
+aNF
+oYQ
+hLN
+jsD
+nYp
+eKC
+xGr
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(201,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+oxB
+xwI
+xwI
+xwI
+xOp
+fHp
+xwI
+xwI
+xwI
+xOp
+fHp
+xwI
+xwI
+nvM
+xOp
+fHp
+fHp
+xwI
+xwI
+ifh
+idF
+idF
+uPZ
+gnO
+dST
+dST
+vVx
+dST
+lzj
+bOu
+qBw
+bOu
+rHE
+rHE
+jVJ
+jVJ
+jVJ
+wOY
+tLn
+jVJ
+knI
+mdJ
+bgs
+uDv
+dzR
+aao
+fWt
+cSq
+cSq
+jsD
+kIN
+nzr
+xGr
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(202,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+oxB
+xwI
+jol
+wCv
+lQF
+uUR
+tim
+cUt
+dGq
+npH
+oLL
+hzE
+mAY
+bXU
+ari
+mJq
+ueB
+cvm
+xwI
+ifh
+ifh
+aoq
+aoq
+wSi
+kCb
+kCb
+kCb
+vcg
+mKD
+bOu
+qBw
+bOu
+rHE
+rHE
+jVJ
+keN
+oye
+fiP
+mdF
+jVJ
+kfC
+mdJ
+lnW
+aqC
+lea
+vmv
+iUv
+aOR
+saN
+jsD
+vjW
+dwS
+xGr
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(203,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+idF
+xwI
+xwI
+xwI
+xwI
+xwI
+oxB
+xwI
+jol
+vNT
+tim
+wVU
+wOI
+yjs
+yjs
+whW
+wVU
+yjs
+nVD
+xEe
+uQV
+wVU
+rmt
+qxk
+vco
+jSq
+jSq
+jSq
+wSi
+uDn
+kgs
+bOu
+bOu
+unC
+uKp
+bOu
+bOu
+bOu
+ibI
+ijB
+jVJ
+jVJ
+jVJ
+jVJ
+dpJ
+jVJ
+ceq
+mdJ
+bgs
+fpH
+mJQ
+vmv
+aBV
+jAR
+jHG
+jsD
+vjW
+vjW
+xGr
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(204,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+idF
+idF
+xwI
+eJJ
+paT
+rwB
+dEc
+fxQ
+lFL
+gLm
+uep
+pOh
+rmt
+dCq
+sDF
+bBr
+btL
+rmt
+yjs
+rmt
+nVD
+fBA
+adQ
+xEe
+oKn
+vco
+mUM
+xuF
+jSq
+bXm
+kum
+bOu
+bOu
+tFc
+nMr
+dHc
+hyY
+hqq
+hwy
+pVn
+pVn
+vEQ
+jVJ
+jVJ
+mWY
+stp
+jVJ
+nVP
+paD
+pKn
+ieY
+nLo
+vmv
+sdy
+fTc
+jOS
+jsD
+hvS
+vjW
+xGr
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(205,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+idF
+idF
+idF
+xwI
+dTR
+paT
+mbw
+dzF
+dZU
+pWp
+mXG
+gop
+ipk
+lfi
+jYM
+xlj
+vUt
+jYM
+qDj
+ipk
+uFE
+uFE
+ipk
+rYn
+yjs
+gSj
+vco
+hty
+qzO
+emw
+ara
+bOu
+vGU
+eHk
+sIJ
+sbU
+sbU
+jSP
+sbU
+iKg
+sbU
+sbU
+lgF
+soK
+jVJ
+jVJ
+jVJ
+jVJ
+vmv
+hOD
+uhA
+vmv
+gxW
+gxW
+jHc
+jsD
+jsD
+jsD
+vjW
+bPf
+xGr
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(206,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+mco
+idF
+idF
+idF
+xwI
+xwI
+xwI
+xwI
+xwI
+oxB
+xwI
+pyX
+jkg
+cBV
+plh
+bph
+dsT
+bGx
+igO
+yjs
+yjs
+gcT
+adQ
+ipk
+uzk
+ehL
+rVR
+vco
+sOE
+fBR
+jSq
+eWp
+bOu
+uZT
+wVQ
+sbU
+bGf
+bjM
+bjM
+adx
+bjM
+bjM
+fQk
+sbU
+lgF
+dpX
+nau
+lvp
+xhK
+pxo
+qxa
+aYQ
+aUx
+gxW
+irA
+tcI
+noh
+vjW
+hPv
+bPf
+vjW
+xGr
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(207,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+irp
+hgI
+hgI
+hgI
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+oxB
+xwI
+cnA
+yjs
+eLl
+khc
+eLl
+yjs
+ciM
+yjs
+yjs
+hcE
+yjs
+rmt
+yjs
+lyx
+yjs
+oSI
+okA
+sNa
+rdX
+rdX
+yem
+rdX
+sUj
+bWd
+sUj
+sUj
+srB
+rHE
+xHb
+rHE
+rHE
+rHE
+fQk
+sbU
+vQL
+gFP
+qCn
+vnX
+vWY
+qCn
+aiC
+hFh
+dFF
+wqO
+eQB
+gxW
+qIi
+vjW
+hPv
+vjW
+xGr
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(208,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+idF
+idF
+idF
+idF
+xwI
+xwI
+xwI
+xwI
+xwI
+oxB
+xwI
+iZP
+yjs
+eLl
+rmt
+eLl
+oyj
+uqP
+yjs
+yjs
+yjs
+yjs
+rmt
+nVD
+xEe
+ygP
+vQW
+okA
+kOl
+kSi
+itV
+lDR
+ayb
+eQb
+tss
+sft
+sUj
+srB
+rHE
+xHb
+rHE
+rHE
+rHE
+kHx
+sbU
+hiN
+iWN
+dpl
+ugK
+cWE
+aCw
+nue
+jVZ
+gxW
+iLt
+qMK
+gxW
+gxW
+gxW
+gxW
+wBc
+xGr
+xGr
+xGr
+xGr
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(209,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+idF
+idF
+idF
+idF
+xwI
+sVH
+wHO
+rof
+dEc
+fxQ
+lFL
+hkL
+yjs
+eLl
+rmt
+eLl
+vwN
+mYd
+yjs
+ygP
+ccl
+ccl
+vLO
+psT
+fDu
+iPv
+vQW
+okA
+kOl
+wju
+kTf
+qsS
+vJh
+wKN
+tMa
+hfH
+sUj
+srB
+xHb
+xHb
+xHb
+rHE
+rHE
+kHx
+sbU
+pRn
+vGU
+vGU
+vGU
+gxW
+gxW
+gxW
+gxW
+gxW
+kkb
+dfw
+gxW
+eDV
+riL
+vjW
+omO
+vjW
+vjW
+nZb
+xGr
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(210,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+idF
+idF
+idF
+idF
+xwI
+vvy
+wHO
+gcP
+dzF
+dZU
+pWp
+hzT
+gop
+jYM
+pCx
+eLl
+vwN
+oOm
+yjs
+som
+ehL
+dQy
+rCT
+upv
+csD
+dQy
+odi
+okA
+bdx
+wju
+kTf
+qsS
+gMr
+iqP
+dif
+jJv
+sUj
+xky
+xHb
+gBq
+xHb
+xHb
+xHb
+vMz
+sbU
+uPv
+vGU
+fSn
+giG
+gxW
+xAR
+rlW
+gxW
+kBG
+mXL
+duc
+gxW
+gCF
+llZ
+kYY
+vjW
+nZb
+vjW
+paS
+xGr
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(211,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+idF
+idF
+idF
+idF
+xwI
+xwI
+xwI
+xwI
+xwI
+oxB
+xwI
+hjM
+eOe
+sjj
+xMe
+fOf
+yjs
+ciM
+yjs
+xmx
+yjs
+rmt
+rmt
+yjs
+yjs
+gcT
+vQW
+okA
+wGk
+wju
+kTf
+qsS
+kzd
+gSg
+gOJ
+rzx
+sUj
+srB
+xHb
+xHb
+xHb
+rHE
+rHE
+kHx
+sbU
+nFu
+rDe
+wrV
+tyk
+gxW
+jxa
+vjW
+wBc
+loZ
+vjW
+vjW
+gxW
+nDK
+dDs
+kYY
+omO
+paS
+omO
+paS
+xGr
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(212,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+oxB
+xwI
+pJD
+tpU
+xpJ
+rmt
+eLl
+ary
+qry
+pmr
+eqr
+pmr
+vbb
+rmt
+yjs
+yjs
+yjs
+jfb
+okA
+lqX
+jhv
+srl
+ehR
+pbj
+oiM
+tss
+sft
+sUj
+srB
+rHE
+xHb
+rHE
+rHE
+rHE
+kHx
+sbU
+bKh
+dHc
+dvQ
+fjr
+gxW
+vOD
+fuX
+gxW
+idD
+hPv
+bPf
+gxW
+nDK
+jqb
+omO
+vjW
+nZb
+omO
+qTQ
+xGr
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(213,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+idF
+idF
+idF
+idF
+xwI
+xwI
+xwI
+xwI
+xwI
+oxB
+xwI
+gOj
+eDJ
+nxc
+pxs
+eLl
+sDF
+bfe
+vQW
+pEZ
+hcE
+rmt
+rmt
+rhX
+xwI
+xwI
+xwI
+okA
+fAf
+rdX
+rdX
+red
+rdX
+lyB
+bWd
+sUj
+sUj
+srB
+rHE
+xHb
+rHE
+rHE
+rHE
+vCw
+rfd
+dKo
+upS
+xog
+lwW
+gxW
+xAR
+aNT
+gxW
+igm
+gxW
+gxW
+gxW
+gxW
+gxW
+xGr
+xGr
+xGr
+xGr
+xGr
+xGr
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(214,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+hgI
+hgI
+idF
+idF
+ifh
+idF
+xwI
+fnv
+tJJ
+xbK
+nTs
+dSg
+dGd
+fof
+qbk
+qhg
+rmt
+eLl
+yjs
+kVV
+ehL
+eqr
+ehL
+dAQ
+eqz
+fKu
+xwI
+ogA
+ogA
+rsw
+gHj
+gfD
+rsw
+uJC
+rYi
+wdI
+wJn
+pWn
+tLR
+mGl
+mGl
+oTi
+mGl
+mGl
+vCw
+rfd
+sZX
+xPV
+vGU
+tEl
+xoO
+gxW
+gxW
+gxW
+gxW
+xHV
+srX
+srX
+hPv
+bPf
+jDl
+qug
+nFB
+pPr
+uzH
+mco
+mco
+hgI
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(215,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+idF
+ifh
+ifh
+idF
+xwI
+sAo
+tJJ
+ftb
+nTs
+dSg
+dGd
+rRp
+yjs
+aOU
+eug
+fOf
+yjs
+ciM
+yjs
+eCn
+nVD
+upv
+aUn
+hKa
+xwI
+nOP
+nOP
+rsw
+bRW
+goj
+bAi
+hTO
+bOu
+bOu
+oMe
+lAU
+sbU
+sbU
+uwS
+sbU
+kSe
+sbU
+bKh
+bkS
+aEE
+vGU
+paQ
+paQ
+paQ
+paQ
+dhA
+fLL
+elf
+fHX
+eAa
+fqW
+utJ
+uaz
+pKN
+eaM
+nmW
+mKu
+fsr
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(216,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+idF
+ifh
+ifh
+idF
+xwI
+xwI
+xwI
+xwI
+xwI
+oxB
+xwI
+ngR
+cKr
+jDe
+hXO
+evu
+mAe
+aja
+jER
+dnA
+fXW
+mgE
+nfz
+caT
+xrH
+leS
+xld
+rsw
+gXE
+thM
+rsw
+kVa
+kTS
+bOu
+bOu
+sak
+dHc
+lOg
+wxN
+dHc
+gxV
+lOg
+sbx
+guR
+vGU
+vGU
+smm
+bmd
+gVf
+dDQ
+rsJ
+gxW
+gxW
+gBV
+gxW
+nLn
+nLn
+iSY
+nLn
+nLn
+xGr
+xGr
+vwb
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(217,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+idF
+ifh
+ifh
+idF
+idF
+idF
+idF
+idF
+idF
+oxB
+xwI
+cnA
+nVD
+qJy
+dBm
+pzT
+dQy
+pKj
+ipk
+uwM
+dOI
+xwI
+xwI
+xwI
+xwI
+ibi
+lBZ
+rsw
+rsw
+rsw
+rsw
+wJk
+snu
+lpo
+cNE
+vhv
+rZz
+cAj
+jHU
+jHU
+jHU
+cAj
+oZJ
+obV
+paQ
+lyJ
+sUV
+eBR
+wjB
+paQ
+sDZ
+gxW
+vjW
+gDE
+bPf
+nLn
+ebr
+oIN
+tzv
+nLn
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(218,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+idF
+ifh
+ifh
+idF
+xwI
+xwI
+xwI
+xwI
+xwI
+rbn
+pWp
+dwW
+xEe
+cXm
+wnF
+tMb
+rmt
+ciM
+uoE
+otf
+hwz
+xwI
+bAr
+duI
+cNE
+cNE
+tjV
+bMO
+bet
+plv
+bMO
+bMO
+pFb
+mLA
+cNE
+mCD
+rZz
+rHE
+rHE
+rHE
+rHE
+rHE
+oZJ
+qWP
+vZd
+ojq
+kTi
+lFo
+sXA
+paQ
+rsJ
+kgO
+ryC
+rsJ
+hFo
+nLn
+xyG
+aEt
+qmU
+nLn
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(219,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+idF
+ifh
+idF
+idF
+xwI
+qOw
+wdm
+qCg
+dEc
+pyl
+lFL
+eua
+ufI
+iHa
+dCw
+pOh
+rmt
+ciM
+xUO
+hgp
+wBF
+xwI
+ufO
+sWG
+cNE
+iPo
+lBZ
+bMO
+mVp
+bvH
+jMU
+bMO
+hMa
+qSu
+cNE
+qtb
+rZz
+rHE
+rHE
+rHE
+rHE
+rHE
+oZJ
+jNE
+dQb
+paQ
+paQ
+iIM
+paQ
+paQ
+bPf
+gxW
+xyb
+vjW
+duc
+nLn
+uSB
+lnd
+ycS
+nLn
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(220,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+idF
+idF
+idF
+idF
+xwI
+sgw
+wdm
+ptJ
+mOa
+hzK
+rzC
+iKP
+lOR
+cTI
+dCg
+ccl
+psT
+wdU
+bUh
+ciq
+iGW
+xwI
+sWG
+wxY
+cNE
+lux
+lBZ
+bMO
+qTF
+kYm
+eCY
+hgh
+pxn
+qMZ
+caU
+yeV
+rZz
+rHE
+rHE
+rHE
+rHE
+rHE
+oZJ
+vnv
+xDi
+oZJ
+tJE
+aXh
+tJE
+oZJ
+xGr
+xGr
+xGr
+siO
+xGr
+nLn
+nLn
+wgk
+nLn
+nLn
+tgZ
+tgZ
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(221,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+irp
+hgI
+hgI
+hgI
+idF
+idF
+idF
+xwI
+xwI
+xwI
+xwI
+xwI
+oxB
+kFa
+cIs
+fDR
+qoM
+pSg
+yjs
+rLa
+lNQ
+skq
+kSR
+kSR
+xwI
+sWG
+wxY
+cNE
+hDu
+lBZ
+bMO
+rjr
+ybC
+akS
+bMO
+eFI
+ouj
+cNE
+dkV
+rZz
+rHE
+rHE
+rHE
+rHE
+rHE
+rZz
+oTG
+cNE
+rZz
+wSy
+bfO
+wSy
+oZJ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+nLn
+qMp
+nLn
+tgZ
+tgZ
+tgZ
+hgI
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(222,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+mco
+hhf
+cFS
+cFS
+cFS
+cFS
+cFS
+cFS
+cFS
+aJJ
+xwI
+gZi
+nVD
+ipk
+tvJ
+esG
+swJ
+duP
+skq
+lgJ
+lgJ
+xwI
+wxY
+wxY
+cNE
+tol
+lBZ
+bMO
+teE
+wAN
+bMO
+bMO
+bOu
+bOu
+cNE
+aOw
+rZz
+rHE
+rHE
+rHE
+rHE
+rHE
+rZz
+rUb
+hcj
+rZz
+eoh
+qTD
+eoh
+oZJ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+nLn
+mjT
+nLn
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(223,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+ifh
+ifh
+ifh
+ifh
+xwI
+iEl
+mkQ
+yjs
+pSg
+eKO
+sDF
+umj
+skq
+nDU
+nDU
+xwI
+gdI
+gdI
+cNE
+cNE
+ekU
+bMO
+bMO
+bMO
+bMO
+lXn
+ucB
+pMX
+iJm
+wYT
+rZz
+rZz
+rZz
+rZz
+rZz
+rZz
+rZz
+wbJ
+nwM
+rZz
+wSy
+npC
+wSy
+oZJ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mHO
+pfg
+jBL
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(224,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ifh
+ifh
+ifh
+ifh
+ifh
+xwI
+hUV
+hUV
+cVN
+aAK
+dMT
+yjs
+jWB
+skq
+cUG
+cUG
+xwI
+duI
+jWw
+miq
+rSO
+eUt
+uCg
+xQp
+huY
+wuF
+wuF
+wuF
+wRB
+tRA
+mZJ
+fHU
+rDh
+rjd
+gpw
+fXN
+tLq
+jwB
+lPt
+biY
+eIh
+wSy
+wOw
+wSy
+oZJ
+tgZ
+qoG
+qoG
+qoG
+qoG
+qoG
+mco
+jVb
+mco
+qoG
+qoG
+qoG
+qoG
+qoG
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(225,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+ifh
+ifh
+xwI
+xwI
+xwI
+gpY
+wUN
+lMR
+pSg
+xfk
+yjs
+jWB
+skq
+eAy
+eAy
+xwI
+cNE
+hWb
+cNE
+cNE
+cNE
+cNE
+sfW
+syd
+fga
+cOa
+cOa
+aFE
+hZi
+aFe
+cOa
+nOq
+xPg
+odX
+gGH
+cOa
+cOa
+daM
+eIh
+eIh
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+jte
+qTa
+qTa
+qTa
+qTa
+nPz
+wza
+nPz
+lUI
+lUI
+lUI
+lUI
+wWA
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+gAK
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(226,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+idF
+ifh
+ifh
+xwI
+sta
+qdi
+eoP
+cCe
+xwI
+klz
+jbX
+vOP
+lIa
+skq
+pQB
+pQB
+xwI
+eVD
+uXK
+oSM
+gtn
+gtn
+cNE
+rZz
+kNn
+rZz
+lcH
+bzu
+kTR
+bzu
+bzu
+rZz
+rZz
+rZz
+rZz
+rZz
+rZz
+rZz
+eIh
+eIh
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+aRV
+aRV
+aRV
+aRV
+aRV
+mco
+jVb
+mco
+aRV
+aRV
+aRV
+aRV
+aRV
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(227,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+hRR
+oKy
+irp
+hgI
+idF
+idF
+ifh
+xwI
+iOf
+hKd
+pPc
+fTk
+hYp
+hRu
+gsX
+ydZ
+ikT
+ikT
+ikT
+ikT
+ydZ
+lRl
+oSM
+oSM
+dbm
+dbm
+cNE
+rRw
+rRw
+rRw
+bzu
+uNT
+tkE
+jfN
+bzu
+idF
+idF
+idF
+idF
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+tgZ
+mco
+mco
+mco
+mco
+mco
+mco
+jVb
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(228,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+idF
+ifh
+xwI
+ePP
+dmf
+hUc
+hUc
+iUU
+rnk
+jBU
+ikT
+all
+gZO
+cKm
+vsp
+ydZ
+ydZ
+wlJ
+uMR
+mVU
+mVU
+cNE
+kNn
+kNn
+kNn
+lcH
+bVT
+iGK
+hdk
+bzu
+idF
+idF
+idF
+idF
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+qoG
+qoG
+qoG
+qoG
+qoG
+mco
+jVb
+mco
+qoG
+qoG
+qoG
+qoG
+qoG
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(229,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+idF
+idF
+xwI
+aIj
+nuZ
+nuZ
+nuZ
+gli
+kpR
+iEj
+lEn
+aJv
+mbZ
+uGp
+lhc
+eoA
+ydZ
+uMR
+uMR
+wRA
+wRA
+npo
+weQ
+kqO
+kNn
+bzu
+fvL
+kCK
+ffb
+bzu
+idF
+idF
+idF
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mzG
+qTa
+qTa
+qTa
+qTa
+nPz
+wza
+nPz
+lUI
+lUI
+lUI
+lUI
+wWA
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(230,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+hgI
+idF
+xwI
+xwI
+xwI
+xwI
+xwI
+xwI
+tqs
+lRD
+ikT
+osD
+fqD
+rPj
+wkI
+bBm
+ydZ
+tzR
+tzR
+mzH
+mzH
+cNE
+poy
+kqO
+kNn
+bzu
+bzu
+bzu
+bzu
+bzu
+idF
+mco
+hgI
+mco
+hgI
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+hgI
+mco
+aRV
+aRV
+aRV
+aRV
+aRV
+mco
+jVb
+mco
+aRV
+aRV
+aRV
+aRV
+aRV
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(231,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+irp
+mco
+idF
+idF
+ifh
+ifh
+xwI
+xwI
+lrw
+hqH
+ydZ
+ydZ
+ikT
+fIC
+ydZ
+ydZ
+ydZ
+cNE
+cNE
+cNE
+cNE
+cNE
+ofu
+kNn
+kNn
+ifh
+ifh
+ifh
+idF
+idF
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+jVb
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(232,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+idF
+ifh
+ifh
+xwI
+gRS
+nWG
+ahc
+ydZ
+gmk
+kUL
+lEK
+ydZ
+rRw
+rRw
+rRw
+rRw
+rRw
+rRw
+kNn
+ihi
+ihi
+ifh
+ifh
+ifh
+idF
+idF
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+qoG
+qoG
+qoG
+qoG
+qoG
+mco
+jVb
+mco
+qoG
+qoG
+qoG
+qoG
+qoG
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(233,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+idF
+idF
+idF
+xwI
+kbD
+jtA
+brf
+ydZ
+vNo
+glu
+eeO
+ydZ
+rRw
+rRw
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+mzG
+qTa
+qTa
+qTa
+qTa
+nPz
+wza
+nPz
+lUI
+lUI
+lUI
+lUI
+wWA
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(234,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+mco
+idF
+idF
+xwI
+xwI
+cbQ
+wCV
+ydZ
+bwz
+sgY
+aRe
+ydZ
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+ifh
+idF
+ifh
+ifh
+mco
+mco
+mco
+hRR
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+aRV
+aRV
+aRV
+aRV
+aRV
+mco
+jVb
+mco
+aRV
+aRV
+aRV
+aRV
+aRV
+mco
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(235,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+hgI
+idF
+idF
+idF
+dSU
+uek
+uek
+ydZ
+unD
+unD
+ydZ
+ydZ
+ifh
+ifh
+ifh
+idF
+idF
+idF
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+jVb
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(236,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+irp
+mco
+mco
+qoG
+qoG
+qoG
+qoG
+qoG
+mco
+jVb
+mco
+qoG
+qoG
+qoG
+qoG
+qoG
+mco
+mco
+irp
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(237,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+idF
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+sut
+kgi
+kgi
+kgi
+kgi
+nPz
+wza
+nPz
+lUI
+lUI
+lUI
+lUI
+wWA
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(238,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+aRV
+aRV
+aRV
+aRV
+aRV
+mco
+jVb
+mco
+aRV
+aRV
+aRV
+aRV
+aRV
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(239,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+jVb
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(240,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+hgI
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+irp
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+qoG
+qoG
+qoG
+qoG
+qoG
+mco
+jVb
+mco
+qoG
+qoG
+qoG
+qoG
+qoG
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(241,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+mzG
+qTa
+qTa
+qTa
+qTa
+nPz
+wza
+nPz
+lUI
+lUI
+lUI
+lUI
+wWA
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(242,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+aRV
+aRV
+aRV
+aRV
+aRV
+mco
+jVb
+mco
+aRV
+aRV
+aRV
+aRV
+aRV
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(243,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+jVb
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(244,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+qoG
+qoG
+qoG
+qoG
+qoG
+mco
+jVb
+mco
+qoG
+qoG
+qoG
+qoG
+qoG
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(245,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+hgI
+hgI
+mzG
+qTa
+qTa
+qTa
+qTa
+nPz
+wza
+nPz
+lUI
+lUI
+lUI
+lUI
+wWA
+hgI
+hgI
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(246,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+mco
+mco
+aRV
+aRV
+aRV
+aRV
+aRV
+mco
+jVb
+mco
+aRV
+aRV
+aRV
+aRV
+aRV
+mco
+mco
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(247,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+jVb
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(248,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+irp
+irp
+irp
+irp
+hgI
+hgI
+kRJ
+hgI
+hgI
+irp
+irp
+irp
+irp
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(249,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+nnv
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hgI
+mco
+mco
+hgI
+mco
+mco
+hgI
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(250,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+mco
+hgI
+mco
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(251,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+irp
+irp
+irp
+irp
+irp
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(252,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+oKy
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(253,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+hRR
+hRR
+hRR
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(254,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(255,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
+(256,1,1) = {"
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+mco
+"}
diff --git a/modular_chomp/maps/cetus/cetus-6.dmm b/modular_chomp/maps/cetus/cetus-6.dmm
new file mode 100644
index 0000000000..f3cc461005
--- /dev/null
+++ b/modular_chomp/maps/cetus/cetus-6.dmm
@@ -0,0 +1,96427 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aaa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portfuelstorage)
+"aab" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/disposals)
+"aac" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/disposals)
+"aad" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/disposals)
+"aae" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/engstorage)
+"aaf" = (
+/obj/machinery/computer/security/engineering{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/reactorcr)
+"aag" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/aicore)
+"aah" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/atmospherics)
+"aai" = (
+/turf/space,
+/area/expoutpost/reactorroom)
+"aaj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/techstorage)
+"aak" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/turf/space,
+/area/expoutpost/reactorroom)
+"aal" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/turf/space,
+/area/expoutpost/reactorroom)
+"aam" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/turf/space,
+/area/expoutpost/reactorroom)
+"aan" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/turf/space,
+/area/expoutpost/reactorroom)
+"aap" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/atmospherics)
+"aaq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/atmospherics)
+"aar" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/techstorage)
+"aas" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/techstorage)
+"aat" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/reactorroom)
+"aau" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/reactorroom)
+"aav" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/blast/radproof{
+ id = "Aeg_CoreShroud";
+ name = "Core Shroud"
+ },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/reactorroom)
+"aaw" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/blast/radproof{
+ id = "Aeg_CoreShroud";
+ name = "Core Shroud"
+ },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/reactorroom)
+"aax" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/fusion_fuel_injector/mapped{
+ dir = 4;
+ id_tag = "Aegis Fuel Injectors"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"aay" = (
+/obj/machinery/computer/card{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"aaz" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"aaA" = (
+/obj/item/modular_computer/console/preset/engineering{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"aaB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"aaC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"aaD" = (
+/obj/item/modular_computer/console/preset/medical{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"aaE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"aaF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"aaG" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"aaH" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"aaI" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/overhang/waterless/grey,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/cic)
+"aaJ" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/overhang/waterless/grey,
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/cic)
+"aaK" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/overhang/waterless/grey,
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/cic)
+"aaL" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"aaM" = (
+/obj/item/modular_computer/console/preset/command{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"aaN" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/cic)
+"aaO" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"aaP" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/cic)
+"aaQ" = (
+/obj/machinery/computer/ship/engines{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"aaR" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/structure/closet/crate/freezer/rations,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/menu9,
+/obj/item/storage/mre/menu9,
+/obj/item/storage/mre/menu10,
+/obj/item/storage/mre/menu10,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"aaS" = (
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"aaT" = (
+/obj/machinery/computer/ship/helm{
+ req_one_access = list(19,62,67)
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"aaU" = (
+/obj/machinery/computer/ship/navigation,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"aaV" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"aaW" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"aaX" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(19,62,67)
+ },
+/obj/item/stack/sandbags{
+ amount = 25
+ },
+/obj/item/gun/energy/laser{
+ pixel_x = -18
+ },
+/obj/item/gun/energy/laser{
+ pixel_x = -18
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"aaY" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"aaZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/expoutpost/cic)
+"aba" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"abb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"abc" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/closet/crate/medical,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/adv,
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/toxin,
+/obj/item/storage/firstaid/o2,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/roller,
+/obj/item/storage/pill_bottle/spaceacillin,
+/obj/item/storage/pill_bottle/dexalin_plus,
+/obj/item/reagent_containers/hypospray/autoinjector/biginjector/clotting,
+/obj/item/reagent_containers/hypospray/autoinjector/biginjector/clotting,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"abd" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/structure/closet/medical_wall{
+ pixel_y = 31
+ },
+/obj/item/storage/pill_bottle/spaceacillin,
+/obj/item/storage/pill_bottle/tramadol,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/roller,
+/obj/item/storage/firstaid/adv,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"abe" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/structure/closet/radiation,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"abf" = (
+/obj/effect/shuttle_landmark/southern_cross/carrier/port_dock,
+/turf/space,
+/area/space)
+"abg" = (
+/obj/effect/shuttle_landmark/southern_cross/carrier/starboard_dock,
+/turf/space,
+/area/space)
+"abh" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/reactorroom)
+"abn" = (
+/obj/machinery/atmospherics/binary/pump/high_power{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"acl" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full,
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starfuelstorage)
+"acB" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"acD" = (
+/obj/machinery/seed_extractor,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/expoutpost/botany)
+"acH" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"acV" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"adT" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangartwo)
+"aei" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window/westright{
+ name = "Research and Development";
+ req_one_access = list(47)
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"aeJ" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"aeX" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"afh" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1381;
+ id_tag = "needle_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "needle";
+ pixel_y = 26;
+ tag_airpump = "needle_pump";
+ tag_chamber_sensor = "needle_sensor";
+ tag_exterior_door = "needle_outer";
+ tag_interior_door = "needle_inner"
+ },
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/effect/shuttle_landmark/southern_cross/carrier/needle_dock,
+/turf/simulated/floor,
+/area/shuttle/needle)
+"afR" = (
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"afV" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"ahy" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"ahC" = (
+/obj/structure/lattice,
+/obj/machinery/shield_diffuser,
+/turf/space,
+/area/space)
+"ahD" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -25;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"ahX" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light,
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"aiL" = (
+/obj/structure/railing/overhang/waterless/grey,
+/obj/structure/railing/grey,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"aiN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Hangar - Ursula"
+ },
+/turf/simulated/floor,
+/area/expoutpost/hangarthree)
+"ajq" = (
+/obj/random/soap,
+/obj/structure/table/marble,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"ajs" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/obj/item/geiger/wall/south,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"ajK" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/eva)
+"ajM" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"ajQ" = (
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"ajU" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/hopdouble,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"akr" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"akv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/janitorial)
+"akE" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"akX" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner,
+/area/shuttle/shuttle3/start)
+"ale" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Port Stern Outer Airlock"
+ },
+/obj/machinery/access_button{
+ dir = 4;
+ pixel_x = -7;
+ pixel_y = -27
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portsternairlock)
+"ank" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"anr" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"anJ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/portqpadjunction)
+"aoL" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"aoV" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starlowermaint)
+"aoY" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"api" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"apk" = (
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/thull,
+/area/shuttle/ursula)
+"apr" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"apA" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"aqD" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/telecomms)
+"aqW" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/floodlight,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"arw" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secureaccess)
+"arK" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"arV" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"asy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"asI" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"atz" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"atK" = (
+/turf/simulated/shuttle/wall/voidcraft/blue,
+/area/shuttle/shuttle3/start)
+"atZ" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/disposals)
+"auD" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/fusion_fuel_injector/mapped{
+ dir = 4;
+ id_tag = "Aegis Fuel Injectors"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"ave" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"avU" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"awk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/portqpadjunction)
+"awP" = (
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"axh" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"axl" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"aym" = (
+/obj/effect/mist,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/water/pool,
+/area/expoutpost/washroom)
+"ayz" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/red,
+/obj/item/pen/blue,
+/obj/item/pen,
+/turf/simulated/floor/carpet,
+/area/expoutpost/breakroom)
+"ayE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"azg" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"aAt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"aAP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"aAV" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/machinery/door/window/southright,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/commanderroom)
+"aAX" = (
+/obj/machinery/mineral/processing_unit,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/miningfoyer)
+"aBZ" = (
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"aCC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/slingcarrierdock)
+"aCX" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"aDh" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"aDE" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"aDR" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"aEx" = (
+/obj/machinery/door/airlock/glass_centcom{
+ req_one_access = list(67)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"aEz" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Q-Pad Junction"
+ },
+/turf/simulated/floor,
+/area/expoutpost/portqpadjunction)
+"aFp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/bed/chair/office/light,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm1)
+"aFw" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"aFA" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"aFH" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"aGt" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/plasticflaps/mining,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/disposals)
+"aGB" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/expoutpost/slingcarrierdock)
+"aGE" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"aGJ" = (
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Mining Foyer";
+ req_one_access = list(48)
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"aHb" = (
+/obj/structure/table/standard,
+/obj/structure/sink{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite1)
+"aHf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi,
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"aHq" = (
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/rshull,
+/area/shuttle/echidna)
+"aHw" = (
+/obj/machinery/power/smes/buildable/max_input{
+ RCon_tag = "Reactor Secondary - Aegis";
+ name = "Reactor SMES - Secondary"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/engine_setup/smes,
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"aHM" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"aHR" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"aIg" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"aIx" = (
+/obj/structure/loot_pile/maint/boxfort,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"aKk" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"aKP" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 9
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"aKW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Port Bow Outer Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portbowairlock)
+"aKX" = (
+/turf/simulated/floor/tiled/steel_dirty,
+/area/expoutpost/botany)
+"aKZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"aLh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ dir = 8;
+ id = "aeg_explo_armory"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/exploarmory)
+"aLn" = (
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"aLB" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"aLV" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 1
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"aMe" = (
+/obj/structure/closet/secure_closet/guncabinet/phase{
+ req_one_access = null
+ },
+/obj/item/clothing/accessory/permit/gun/planetside,
+/obj/item/clothing/accessory/permit/gun/planetside,
+/obj/item/gun/energy/locked/phasegun,
+/obj/item/gun/energy/locked/phasegun,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/obj/item/gun/energy/locked/phasegun/rifle,
+/obj/item/gun/energy/locked/phasegun/rifle,
+/turf/simulated/floor/tiled/red,
+/area/shuttle/stargazer)
+"aMn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"aNw" = (
+/obj/structure/bed/chair/sofa/brown{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/bar)
+"aOv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"aOL" = (
+/obj/effect/floor_decal/stairs{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/staginghangar)
+"aPh" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/atmospherics)
+"aPJ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/starbowhallway)
+"aQj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"aQm" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"aQp" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/blue{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"aQF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/closet/walllocker{
+ dir = 4;
+ pixel_x = 32
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm2)
+"aRl" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/pathfinderroom)
+"aRw" = (
+/obj/structure/table/rack,
+/obj/item/clothing/glasses/meson,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"aRG" = (
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"aRH" = (
+/obj/machinery/beehive,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"aRI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"aRW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1;
+ opacity = 1
+ },
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"aSF" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"aTL" = (
+/obj/structure/table/rack/shelf,
+/obj/fiftyspawner/plastic,
+/obj/fiftyspawner/plastic,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"aVF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/glass{
+ name = "Bow Airlock"
+ },
+/turf/simulated/floor,
+/area/expoutpost/civaccesshallway)
+"aVI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/engineering{
+ name = "Telecomms"
+ },
+/turf/simulated/floor,
+/area/expoutpost/telecomms)
+"aWi" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/blast/regular{
+ dir = 8;
+ id = "aeg_explo_armory"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/exploarmory)
+"aWj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/midsternhallway)
+"aWv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"aXg" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"aXH" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/stationqpad)
+"aXP" = (
+/obj/machinery/atmospherics/unary/engine/biggest{
+ dir = 1
+ },
+/turf/space,
+/area/expoutpost/reactorroom)
+"aYq" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"aYM" = (
+/obj/structure/table/darkglass,
+/obj/item/gps,
+/obj/item/gps{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"aZm" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"aZH" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -35
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"aZU" = (
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_medbay_padout";
+ map_pad_link_id = "aeg_medbay_padin";
+ name = "Medbay Q-Pad"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/medbaylobby)
+"baU" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"baZ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"bbp" = (
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/bed/chair/bay/shuttle,
+/obj/structure/sign/poster/nanotrasen{
+ dir = 8
+ },
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_x = -32;
+ pixel_y = -4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"bbO" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"bcv" = (
+/obj/machinery/vending/coffee,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"bcD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"bed" = (
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4;
+ name = "Fuel Into Main"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portfuelstorage)
+"bep" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/security{
+ name = "Aegis Security Office"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/secoffice)
+"beQ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"bfc" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"bfx" = (
+/obj/machinery/computer/general_air_control/supermatter_core{
+ dir = 1;
+ input_tag = "aegrust_cooling_in";
+ name = "Aegis Core Cooling Control";
+ output_tag = "aegrust_cooling_out";
+ sensors = list("aegrustengine_sensor"="Aegis Engine Temperature")
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/reactorcr)
+"bfK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/eva)
+"bfM" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/machinery/light,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"bgb" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/brown/bordercorner,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"bgV" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"bhb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"bhh" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"bhm" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"bhq" = (
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"bie" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/secoffice)
+"biJ" = (
+/obj/structure/table/rack/shelf,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"bjP" = (
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/rplastihull,
+/area/shuttle/needle)
+"bjT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"bjU" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"bkv" = (
+/obj/machinery/suit_cycler/mining,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"bkz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"bkH" = (
+/obj/structure/closet,
+/obj/item/clothing/under/bathrobe,
+/obj/item/towel/random,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/commanderroom)
+"bkS" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4;
+ name = "Refuelling Port"
+ },
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"blv" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"blD" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/stargazer)
+"blO" = (
+/obj/structure/ore_box,
+/obj/effect/floor_decal/industrial/outline/grey,
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/echidna)
+"bmu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/structure/railing/grey,
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"bmV" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"bne" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/pathfinderroom)
+"bnp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/terminal,
+/turf/simulated/floor/tiled/red,
+/area/shuttle/needle)
+"bnN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"boc" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 1
+ },
+/obj/machinery/gateway{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/gateway)
+"bos" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"bpR" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"bpY" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"bpZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/portsternairlock)
+"bqc" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"bri" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/loot_pile/maint/technical,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"bsc" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/rnd)
+"bsK" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"bsM" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/secureaccess)
+"btA" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starqpadjunction)
+"btC" = (
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_eva_padout";
+ map_pad_link_id = "aeg_eva_padin";
+ name = "EVA Q-Pad"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/eva)
+"btY" = (
+/obj/machinery/power/fusion_core/mapped{
+ id_tag = "Aegis Fusion Core"
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/expoutpost/reactorroom)
+"buh" = (
+/obj/structure/window/basic{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/pathfinderroom)
+"bui" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"buE" = (
+/obj/structure/closet/crate{
+ name = "SMES coil crate"
+ },
+/obj/item/circuitboard/smes,
+/obj/item/circuitboard/smes,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil/super_capacity,
+/obj/item/smes_coil/super_capacity,
+/obj/item/smes_coil/super_io,
+/obj/item/smes_coil/super_io,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"buZ" = (
+/obj/machinery/mineral/processing_unit_console,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/miningfoyer)
+"bvO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ id = "aeg_securestorage_blastdoor"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/secureaccess)
+"bwc" = (
+/turf/simulated/shuttle/wall/voidcraft/no_join,
+/area/shuttle/shuttle3/start)
+"bwn" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,
+/turf/simulated/wall/rshull,
+/area/shuttle/echidna)
+"bwJ" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/obj/item/geiger/wall/south,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"bwS" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"bxK" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"bxL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"bAe" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8;
+ name = "Refuelling Port"
+ },
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"bAg" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"bAD" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"bAO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portfuelstorage)
+"bAW" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"bBK" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"bBM" = (
+/obj/structure/railing/overhang/waterless/grey,
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"bDk" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"bDn" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"bDJ" = (
+/obj/machinery/door/airlock{
+ name = "Unit 3 Recharger"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"bDO" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"bFX" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"bGo" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"bGO" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"bHp" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"bIj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"bIu" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"bJy" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"bJH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"bKr" = (
+/obj/structure/fuel_port{
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/baby_mammoth)
+"bKJ" = (
+/obj/machinery/power/smes/buildable/max_charge_max_input{
+ RCon_tag = "Reactor Input - Aegis";
+ name = "Reactor SMES - Input"
+ },
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/structure/cable/cyan{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"bLb" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"bLf" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"bLH" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/item/modular_computer/console/preset/security{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/secoffice)
+"bLV" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/photocopier/faxmachine,
+/turf/simulated/floor/carpet,
+/area/expoutpost/breakroom)
+"bMi" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"bMo" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/secureaccess)
+"bMy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/echidna)
+"bOb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portsternairlock)
+"bOc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/uppersternhallway)
+"bOn" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/expoutpost/uppersternhallway)
+"bOy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm1)
+"bOz" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/vehicle/train/rover/engine{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"bPp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Rear Engineering Airlock"
+ },
+/turf/simulated/floor,
+/area/expoutpost/portsternairlock)
+"bQb" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"bQe" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"bQm" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"bQq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"bQR" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"bQT" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/restrooms)
+"bSp" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"bTb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"bTd" = (
+/obj/machinery/door/airlock/glass_centcom{
+ req_one_access = list(67)
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"bTg" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starfuelstorage)
+"bUm" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"bUY" = (
+/obj/structure/window/reinforced/survival_pod{
+ opacity = 1
+ },
+/obj/machinery/computer/shuttle_control/explore/ursula{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"bVv" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"bVU" = (
+/obj/effect/floor_decal/spline/fancy/wood/cee{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "aeg_bar_blastdoor";
+ name = "Bar Blast Doors";
+ pixel_y = -28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"bVY" = (
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_mining_padin";
+ map_pad_link_id = "aeg_mining_padout";
+ name = "TO - MINING"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/portqpadjunction)
+"bVZ" = (
+/obj/machinery/floodlight,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"bWJ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"bXD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1;
+ opacity = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"bYa" = (
+/turf/simulated/floor/reinforced,
+/area/expoutpost/hangarthree)
+"bZy" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"cay" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"caA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"cbp" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"cbv" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/autolathe,
+/turf/simulated/floor/tiled,
+/area/expoutpost/staginghangar)
+"cbA" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/atmospherics/portables_connector,
+/obj/structure/sign/poster/nanotrasen{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"cbF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Bow Airlock"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/portbowhallway)
+"cbK" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"ccq" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ icon_state = "door_locked";
+ id_tag = "expshuttle4_door_L";
+ locked = 1;
+ name = "shuttle side hatch"
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/button/remote/airlock{
+ id = "expshuttle4_door_L";
+ name = "Side Hatch Control";
+ pixel_y = -26;
+ specialfunctions = 4
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "stargazer_blast";
+ layer = 2.5;
+ name = "window blast shield"
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"ccE" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -25;
+ pixel_y = 32
+ },
+/obj/structure/closet/walllocker_double/hydrant/north,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/shuttle/needle)
+"ccN" = (
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/commanderroom)
+"cdy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"cdT" = (
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"cem" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"cer" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsternairlock)
+"ces" = (
+/obj/structure/bed/chair/bay/comfy/captain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"cev" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -27;
+ pixel_y = -4
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/stargazer)
+"ceN" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"ceR" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"cfm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"cfT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Exploration Ready Room";
+ req_one_access = list(43,67)
+ },
+/turf/simulated/floor,
+/area/expoutpost/explobriefroom)
+"cgb" = (
+/obj/machinery/computer/power_monitor{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"cgv" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"cgS" = (
+/obj/machinery/optable{
+ name = "Robotics Operating Table"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"chH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"cik" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 6
+ },
+/obj/machinery/gateway{
+ density = 0;
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/gateway)
+"ciq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"ciy" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"cjb" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"cjD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"cjN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"ckj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"ckB" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"ckM" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"clR" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portbowhallway)
+"clX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"cml" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/portqpadjunction)
+"cmI" = (
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starfuelstorage)
+"cnH" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"coa" = (
+/obj/machinery/floodlight,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"cof" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/slingcarrierdock)
+"coz" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -35
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/janitorial)
+"coY" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 24;
+ pixel_y = 32
+ },
+/obj/structure/bed/chair/bay/comfy/purple{
+ dir = 1
+ },
+/obj/effect/overmap/visitable/ship/landable/ursula,
+/obj/structure/panic_button{
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"cpa" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/structure/fireaxecabinet{
+ pixel_y = 32
+ },
+/obj/item/multitool,
+/obj/item/book/manual/rust_engine,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/reactorcr)
+"cpA" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 8;
+ name = "Air to Distro"
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"cqB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/shuttle/engine/heater,
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"cqN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"crf" = (
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"crG" = (
+/obj/machinery/chemical_dispenser/bar_alc/full{
+ pixel_y = 24
+ },
+/obj/structure/sink/countertop{
+ dir = 4;
+ pixel_x = -18;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/bar)
+"csU" = (
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"cte" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/silver{
+ id_tag = "aeg_suiteone_bolt";
+ name = "Suite One"
+ },
+/turf/simulated/floor,
+/area/expoutpost/suite1)
+"ctk" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"cts" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1381;
+ master_tag = "ursula";
+ name = "exterior access button";
+ pixel_y = 26
+ },
+/obj/machinery/door/airlock/voidcraft/vertical{
+ frequency = 1381;
+ id_tag = "ursula_outer";
+ locked = 1;
+ name = "External Access"
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"ctL" = (
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"ctO" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/clothing/suit/space/void/pilot,
+/obj/item/clothing/head/helmet/space/void/pilot,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/clothing/suit/space/void/pilot,
+/obj/item/clothing/head/helmet/space/void/pilot,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"cuv" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"cuB" = (
+/obj/machinery/door/window/survival_pod{
+ dir = 2;
+ req_one_access = list(67)
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"cuH" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"cvm" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"cvJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/uppersternhallway)
+"cwu" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"cwA" = (
+/turf/space,
+/area/space)
+"cxh" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "aeg_mining_storage";
+ name = "Mining Storage";
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"cxz" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secureaccess)
+"cxG" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"cyf" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"cyD" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"czE" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"czV" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"czY" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"cAr" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/expoutpost/hangarfive)
+"cAW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"cBO" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/greendouble,
+/obj/effect/landmark/start/pf,
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"cCr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"cCs" = (
+/obj/structure/railing/grey,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portbowhallway)
+"cCE" = (
+/obj/structure/bed/double/padded,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/item/bedsheet/rddouble,
+/obj/structure/curtain/open/bed,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm1)
+"cDc" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"cDl" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"cDX" = (
+/obj/machinery/computer/ship/engines,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"cEh" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/starbowhallway)
+"cFG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"cGr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"cGw" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"cHH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"cHK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/bed/chair/bay/comfy/black{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"cHY" = (
+/obj/structure/catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/expoutpost/engstorage)
+"cIJ" = (
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Port Bow Outer Airlock"
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starsternairlock)
+"cIM" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/stargazer)
+"cJB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/stationqpad)
+"cJN" = (
+/turf/simulated/floor/reinforced,
+/area/expoutpost/hangarfour)
+"cLB" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/blast/radproof{
+ dir = 4;
+ id = "Aeg_EngineShroud"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/reactorcr)
+"cLY" = (
+/obj/structure/closet/crate,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"cMc" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/ursula)
+"cMj" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/eva)
+"cMu" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/starboardbowairlock)
+"cMM" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"cMP" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"cNv" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portsternairlock)
+"cNz" = (
+/obj/machinery/smartfridge/drying_rack,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/expoutpost/botany)
+"cNK" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/rndlobby)
+"cOM" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/expoutpost/portsternairlock)
+"cPd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"cPL" = (
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 9
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"cQy" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/starbowhallway)
+"cQE" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/telecomms)
+"cRL" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/starqpadjunction)
+"cSp" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/white/border,
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"cSw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Mining Office"
+ },
+/turf/simulated/floor,
+/area/expoutpost/miningfoyer)
+"cTl" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/modular_computer/laptop/preset/custom_loadout/rugged,
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"cTt" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = -12
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"cTT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "echidna_pump"
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"cTW" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"cTZ" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"cUN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsternairlock)
+"cVe" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/pathfinderroom)
+"cVY" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"cWe" = (
+/obj/structure/table/standard,
+/obj/item/storage/laundry_basket,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"cWs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"cWB" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"cWX" = (
+/obj/structure/bed/chair/office/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/reactorcr)
+"cXC" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"cXU" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/carpet,
+/area/expoutpost/breakroom)
+"cXW" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"cYy" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"cZC" = (
+/obj/structure/table/standard,
+/obj/structure/sink{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/commanderroom)
+"cZW" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"dab" = (
+/obj/machinery/autolathe/armory,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/glass,
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"dal" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"daS" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/engineering{
+ name = "R-UST Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"dbd" = (
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/secoffice)
+"dbe" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starsternairlock)
+"dcL" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"ddP" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/bed/chair/bay,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"dei" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"dey" = (
+/obj/structure/railing,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"dfj" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"dfl" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 5
+ },
+/obj/item/storage/toolbox/syndicate/powertools,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"dfH" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/yellow,
+/obj/machinery/power/port_gen/pacman/super/potato{
+ power_gen = 200000;
+ power_output = 4;
+ sheets = 50;
+ active = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/engstorage)
+"dgK" = (
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"dhb" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "stargazer_blast";
+ name = "window blast shield"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"dhO" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"djk" = (
+/obj/structure/closet/radiation,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 9
+ },
+/obj/item/geiger/wall/north,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/reactorcr)
+"dks" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/janitorial)
+"dln" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 1
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"dlJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"dmk" = (
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"dmw" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"dnj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"dnw" = (
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"dnE" = (
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"dnG" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"dpc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"dpg" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/turf/space,
+/area/space)
+"dpH" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/space)
+"dqm" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/starbowhallway)
+"dqy" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"dqW" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"dqX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm2)
+"drS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/portbowhallway)
+"dsK" = (
+/obj/structure/table/rack,
+/obj/random/flashlight,
+/obj/random/mech_toy,
+/obj/item/extinguisher,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"dsM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"dsO" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starfuelstorage)
+"dtw" = (
+/obj/random/trash,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"dtF" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/hosdouble,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"dus" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/shuttle/baby_mammoth)
+"dvg" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"dvl" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"dwh" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"dww" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 12;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"dxc" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/expoutpost/medicalbay)
+"dxN" = (
+/obj/structure/bed/chair/bay/shuttle,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -25;
+ pixel_y = 32
+ },
+/obj/structure/sign/poster/nanotrasen{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"dxV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"dya" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel,
+/area/expoutpost/hangarsix)
+"dyv" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"dyF" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/machinery/door/window{
+ dir = 8
+ },
+/obj/machinery/suit_cycler/security,
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"dyJ" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"dyS" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"dyX" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"dzc" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/vending/wallmed1{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"dzd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"dzs" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"dzS" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"dzZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"dBB" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,
+/turf/simulated/wall/rplastihull,
+/area/shuttle/needle)
+"dBU" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"dDf" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"dDr" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 1
+ },
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"dDU" = (
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"dEl" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"dEL" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/structure/closet/walllocker_double/kitchen/north,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/radio{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/radio{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1381;
+ id_tag = "echidna_pump"
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"dEY" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/orange/bordercorner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"dFq" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"dFz" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"dGj" = (
+/obj/machinery/door/window/survival_pod{
+ dir = 1;
+ req_one_access = list(67)
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"dGt" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor,
+/area/expoutpost/starsternairlock)
+"dGF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"dHg" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"dHk" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"dHx" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"dHz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ frequency = 1381;
+ id_tag = "aeg_starstern_airlock";
+ pixel_x = -28
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsternairlock)
+"dHD" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/computer/ship/engines{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"dHI" = (
+/obj/structure/table/rack/shelf,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window{
+ dir = 8
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"dIm" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/starqpadjunction)
+"dJb" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"dJj" = (
+/obj/machinery/computer/rcon{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"dJv" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/suit/space/void/expedition_medical,
+/obj/item/clothing/suit/space/void/expedition_medical,
+/obj/item/clothing/suit/space/void/pilot,
+/obj/item/clothing/head/helmet/space/void/pilot,
+/obj/item/clothing/head/helmet/space/void/expedition_medical,
+/obj/item/clothing/head/helmet/space/void/expedition_medical,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/door/window/southright,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"dJw" = (
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_science_padin";
+ map_pad_link_id = "aeg_science_padout";
+ name = "TO - SCIENCE"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/starqpadjunction)
+"dKa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "shuttle3_pump"
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"dKh" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"dKQ" = (
+/obj/structure/table/rack/shelf,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"dLo" = (
+/obj/structure/flora/pottedplant/minitree,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"dMe" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"dMm" = (
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"dMs" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/blast/radproof{
+ id = "Aeg_CoreShroud";
+ name = "Core Shroud"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/reactorroom)
+"dMG" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"dNL" = (
+/obj/structure/table/rack/shelf,
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"dOA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/window/reinforced,
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"dPK" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"dQy" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"dQz" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"dQK" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"dRX" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable/green,
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"dSt" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/random/firstaid,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"dTh" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"dTq" = (
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/mech_recharger,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"dTw" = (
+/obj/structure/closet/secure_closet/miner{
+ pixel_x = 27
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"dTM" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/item/geiger/wall/west,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"dUF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"dVi" = (
+/obj/structure/handrail{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"dVs" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/obj/structure/shuttle/engine/heater,
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"dVz" = (
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm2)
+"dVB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/engineeringatmos{
+ name = "Atmospheric System";
+ req_one_access = list(10,24)
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"dWk" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"dWr" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/telecomms)
+"dWS" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/rack/shelf,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"dXB" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"dZT" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"ead" = (
+/obj/structure/railing/grey,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/slingcarrierdock)
+"eaE" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/aicore)
+"ech" = (
+/obj/machinery/vending/hydroseeds{
+ dir = 4;
+ pixel_x = -6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/botany)
+"ect" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"ecU" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"edo" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/sign/department/miner_dock{
+ pixel_x = -32
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"edQ" = (
+/obj/machinery/iv_drip,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 10
+ },
+/obj/item/radio/intercom/department/medbay{
+ dir = 8;
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"eeZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Hangar - Echidna"
+ },
+/turf/simulated/floor,
+/area/expoutpost/hangarsix)
+"efF" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"egb" = (
+/obj/structure/table/standard,
+/obj/item/soap/deluxe,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite2)
+"egj" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/hangarfour)
+"egM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/expoutpost/slingcarrierdock)
+"ehd" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"ehn" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"eiY" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"ejb" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangarsix)
+"ejl" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"ejs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"ejG" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"ejR" = (
+/obj/structure/flora/pottedplant/shoot,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"ekf" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"elu" = (
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Triage";
+ req_one_access = list(5)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/medicalbay)
+"emn" = (
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"emt" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"emF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"emW" = (
+/obj/machinery/shipsensors,
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"enc" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/engoffice)
+"enm" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/turf/simulated/floor/carpet,
+/area/expoutpost/miningfoyer)
+"enL" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"enZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"eof" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/starbowhallway)
+"eog" = (
+/obj/effect/floor_decal/emblem/nt3,
+/turf/simulated/floor/tiled/eris/white/techfloor,
+/area/expoutpost/slingcarrierdock)
+"eoO" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/explodorm2)
+"epN" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"eqf" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/disposals)
+"eqh" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"eqj" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"eqp" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/echidna)
+"eqH" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"eqL" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/stationqpad)
+"eqN" = (
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/aicore)
+"era" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"erv" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"erS" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/window/reinforced,
+/obj/structure/railing/grey,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/disposals)
+"esf" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"esV" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portfuelstorage)
+"esW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/midsternhallway)
+"etp" = (
+/obj/machinery/computer/rdconsole_tg,
+/obj/effect/floor_decal/milspec/color/purple,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"ets" = (
+/obj/machinery/cell_charger,
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"etS" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/freezer{
+ icon_state = "freezer"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"euK" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6
+ },
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"euW" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"evn" = (
+/obj/machinery/smartfridge/drinks,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "aeg_bar_shutter";
+ name = "Bar Shutters";
+ pixel_x = 28;
+ pixel_y = 8;
+ req_access = list(25)
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/bar)
+"evv" = (
+/obj/machinery/shield_diffuser,
+/obj/machinery/pointdefense{
+ id_tag = "aeg_pd_control";
+ rotation_speed = 2.5
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"evT" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"ewZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"exf" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"eyg" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"eyj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"eyy" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"eyK" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/portsternairlock)
+"eyW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"ezs" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/handrail,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"ezt" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel,
+/area/expoutpost/hangartwo)
+"ezJ" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"eAW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"eBs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"eBy" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"eBB" = (
+/obj/structure/sign/warning/secure_area/armory,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/secarmory)
+"eBT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"eCc" = (
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"eCl" = (
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"eCw" = (
+/obj/structure/table/marble,
+/obj/item/material/knife/butch,
+/obj/item/book/manual/chef_recipes,
+/obj/item/material/kitchen/rollingpin,
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "aeg_kitchen_shutter";
+ name = "Kitchen Shutters";
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"eCD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"eCG" = (
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(1)
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"eDB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"eFo" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"eFB" = (
+/obj/effect/decal/cleanable/cobweb,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"eFG" = (
+/obj/structure/railing,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"eGv" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"eHk" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"eHK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"eHT" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/table/rack,
+/obj/random/maintenance/misc,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"eHZ" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"eIR" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portfuelstorage)
+"eJi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"eJv" = (
+/obj/effect/floor_decal/emblem/nt2,
+/turf/simulated/floor/tiled/eris/white/techfloor,
+/area/expoutpost/slingcarrierdock)
+"eJy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/landmark/start{
+ name = "Search and Rescue"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/explobriefroom)
+"eJX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"eKi" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 12;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"eKm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"eKA" = (
+/obj/machinery/door/window{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/engstorage)
+"eKH" = (
+/obj/machinery/light,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/bar)
+"eKQ" = (
+/obj/structure/closet/crate/hydroponics{
+ desc = "All you need to start your own honey farm.";
+ name = "beekeeping crate"
+ },
+/obj/item/beehive_assembly,
+/obj/item/bee_smoker,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/bee_pack,
+/obj/item/tool/crowbar,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/expoutpost/botany)
+"eKX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm1)
+"eLM" = (
+/obj/effect/catwalk_plated/dark,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"eMf" = (
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_engineering_padout";
+ map_pad_link_id = "aeg_engineering_padin";
+ name = "Engineering Q-Pad"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/lowersternhallway)
+"eMB" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"eNb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"eNI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"eOj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ icon_state = "door_locked";
+ id_tag = "aeg_reactor_bolt";
+ locked = 1;
+ name = "Core Access Hatch";
+ req_one_access = list(11)
+ },
+/obj/machinery/door/blast/radproof{
+ dir = 4;
+ id = "Aeg_CoreShroud";
+ name = "Core Shroud"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"eOp" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/aicore)
+"eOx" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/eva)
+"eOE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"ePf" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/expoutpost/hangarone)
+"ePO" = (
+/obj/machinery/shuttle_sensor{
+ id_tag = "shuttle4sens_exp_psg"
+ },
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"eQM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"eQR" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"eRh" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/techstorage)
+"eRs" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/silver{
+ id_tag = "aeg_pubshower_bolt";
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"eRE" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/aicore)
+"eRI" = (
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/expoutpost/hangarone)
+"eSq" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"eSG" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Hangar - Stargazer"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangarfour)
+"eTc" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/multitool{
+ pixel_x = 4
+ },
+/obj/item/multitool{
+ pixel_x = -5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"eTt" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/mineral/equipment_vendor{
+ dir = 8;
+ pixel_x = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"eTu" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"eTT" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/sign/department/engine{
+ pixel_y = -32
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"eUW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"eVb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"eVe" = (
+/obj/machinery/button/remote/airlock{
+ desiredstate = 1;
+ dir = 8;
+ id = "echidna_hatch";
+ name = "Rear Hatch Control";
+ pixel_x = 26;
+ req_access = list(67);
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"eVg" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"eVn" = (
+/obj/structure/table/standard,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/sleevemate,
+/obj/item/denecrotizer/medical,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"eWj" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/hangarone)
+"eWl" = (
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"eWp" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/vending/wallmed1{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"eWM" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/structure/sign/directions/medical/operating_1{
+ dir = 8;
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"eWZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/midsternhallway)
+"eXf" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/machinery/gateway{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/gateway)
+"eXr" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/dispenser/oxygen,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"eXM" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"eYq" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/stationqpad)
+"eYr" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"eYA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Hangar - Mammoth"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/hangartwo)
+"eZl" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/explobriefroom)
+"fag" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"fat" = (
+/obj/structure/catwalk,
+/obj/structure/table/steel_reinforced,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"faz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/midsternhallway)
+"fbe" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"fbZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"fcs" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"fcD" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/reactorroom)
+"fcF" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"fdt" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"fdI" = (
+/obj/structure/sign/directions/science/exploration,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portqpadjunction)
+"fdK" = (
+/obj/structure/closet,
+/obj/structure/window/basic{
+ dir = 8
+ },
+/obj/item/clothing/under/bathrobe,
+/obj/item/towel/random,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite2)
+"feH" = (
+/obj/machinery/computer/ship/engines{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"ffb" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/commanderroom)
+"fgm" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"fgx" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/hatch{
+ name = "Secondary Nuclear Reactor";
+ req_one_access = list(10)
+ },
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/expoutpost/engstorage)
+"fgV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"fhv" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"fhE" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/security,
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"fhT" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Medbay Lobby"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/medbaylobby)
+"fil" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"fiC" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/button/remote/airlock{
+ dir = 8;
+ id = "aeg_suiteone_bolt";
+ name = "Door Bolt";
+ pixel_x = 24;
+ pixel_y = 8;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"fiE" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"fiU" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"fkd" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"fkh" = (
+/obj/machinery/mineral/equipment_vendor/survey,
+/obj/effect/floor_decal/milspec/color/purple,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"fkD" = (
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"fkF" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"fkK" = (
+/obj/machinery/fusion_fuel_injector/mapped{
+ dir = 8;
+ id_tag = "Aegis Fuel Injectors"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"fkW" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/telecomms)
+"flj" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"flk" = (
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/table/darkglass,
+/obj/machinery/recharger{
+ pixel_x = 6
+ },
+/obj/machinery/recharger{
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"flu" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"fmp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"fmv" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Hangar - Mammoth"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/hangartwo)
+"fmD" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"fmM" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"fnc" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"fnZ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"fpt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"fpX" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/starqpadjunction)
+"fqm" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"frm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/expoutpost/botany)
+"frE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/catwalk_plated/white,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Triage";
+ req_one_access = list(5)
+ },
+/turf/simulated/floor,
+/area/expoutpost/medicalbay)
+"frH" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -12;
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"fse" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/miningfoyer)
+"fsL" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/hangarfive)
+"fts" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"ftz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Bow Airlock"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/starbowhallway)
+"ftL" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 25
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"fuN" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"fvj" = (
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced,
+/obj/structure/grille,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/reactorroom)
+"fvC" = (
+/obj/random/trash,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"fvL" = (
+/obj/structure/sign/directions/science,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starqpadjunction)
+"fvN" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"fvV" = (
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ id_tag = "stargazer_hatch"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"fwE" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"fwG" = (
+/obj/machinery/autolathe,
+/obj/effect/floor_decal/milspec/color/purple,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"fwT" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"fxo" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"fxW" = (
+/obj/structure/janitorialcart,
+/obj/machinery/light/small,
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/janitorial)
+"fyn" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"fyp" = (
+/obj/machinery/rnd/production/protolathe/department/science,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/expoutpost/rnd)
+"fyq" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/machinery/gateway{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/gateway)
+"fzd" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1381;
+ id_tag = "baby_mammoth_pump"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/airlock_sensor{
+ frequency = 1381;
+ id_tag = "baby_mammoth_sensor";
+ pixel_y = 28
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"fzr" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"fAq" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/machinery/access_button{
+ dir = 1;
+ name = "interior access button";
+ pixel_x = 8;
+ pixel_y = -22
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Port Bow Outer Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portbowairlock)
+"fAr" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/starboardbowairlock)
+"fBu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Bow Airlock"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/portbowhallway)
+"fBv" = (
+/turf/simulated/wall/r_lead,
+/area/expoutpost/reactoraccess)
+"fBR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"fCs" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"fCQ" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"fCT" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/obj/machinery/media/jukebox,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"fDo" = (
+/obj/structure/cable/blue{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/aicore)
+"fDS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"fDW" = (
+/obj/structure/closet/crate{
+ name = "Deuterium Storage"
+ },
+/obj/item/fuel_assembly/deuterium,
+/obj/item/fuel_assembly/deuterium,
+/obj/item/fuel_assembly/deuterium,
+/obj/item/fuel_assembly/deuterium,
+/obj/item/fuel_assembly/deuterium,
+/obj/item/fuel_assembly/deuterium,
+/obj/item/fuel_assembly/deuterium,
+/obj/item/fuel_assembly/deuterium,
+/obj/item/fuel_assembly/deuterium,
+/obj/item/fuel_assembly/deuterium,
+/obj/item/fuel_assembly/deuterium,
+/obj/item/fuel_assembly/deuterium,
+/obj/machinery/door/window,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"fEc" = (
+/obj/structure/sign/signnew/radiation,
+/turf/simulated/wall/r_lead,
+/area/expoutpost/reactoraccess)
+"fEs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"fEH" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"fEU" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"fFf" = (
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 32;
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"fGm" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"fGp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 8;
+ name = "Breakroom"
+ },
+/turf/simulated/floor,
+/area/expoutpost/breakroom)
+"fHf" = (
+/obj/item/flashlight/lamp,
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"fHy" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"fIT" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/carpet/blue,
+/area/expoutpost/medicalbay)
+"fJW" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"fKu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"fKL" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/starbowhallway)
+"fKY" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"fLd" = (
+/obj/structure/sign/directions/bridge,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portqpadjunction)
+"fLC" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"fLO" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"fMI" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Hangar - Shuttle"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/hangarone)
+"fNo" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/cic)
+"fNw" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"fNO" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/closet/secure_closet/guncabinet/phase{
+ req_one_access = list(43,67)
+ },
+/obj/item/clothing/accessory/permit/gun/planetside,
+/obj/item/clothing/accessory/permit/gun/planetside,
+/obj/item/gun/energy/locked/phasegun,
+/obj/item/gun/energy/locked/phasegun,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/shuttle3/start)
+"fNZ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/stairs,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/staginghangar)
+"fOd" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"fOo" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"fPq" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ id = "aeg_bar_blastdoor"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/bar)
+"fPK" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/portqpadjunction)
+"fQa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"fQz" = (
+/obj/structure/bed/chair/bay/comfy/purple{
+ dir = 1
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 24;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/milspec/color/purple,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"fRS" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"fSI" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "stargazer_blast";
+ name = "window blast shield"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"fSU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Stern Airlock"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/midsternhallway)
+"fVa" = (
+/turf/simulated/wall/rshull,
+/area/shuttle/stargazer)
+"fVd" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"fVj" = (
+/obj/machinery/computer/ship/engines{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ opacity = 1;
+ req_one_access = list(67)
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"fVW" = (
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"fWx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/bed/chair/office/light,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm2)
+"fXg" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"fXA" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"fXC" = (
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"fXV" = (
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"fZw" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 5
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"fZO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/turf/simulated/wall/rplastihull,
+/area/shuttle/needle)
+"gaf" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secureaccess)
+"gap" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"gaq" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/floodlight,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"gaC" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"gaV" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"gbr" = (
+/obj/structure/closet,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"gbI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Hangar - Stargazer"
+ },
+/turf/simulated/floor,
+/area/expoutpost/hangarfour)
+"gbV" = (
+/obj/machinery/shuttle_sensor{
+ dir = 5;
+ id_tag = "baby_mammoth_sensor"
+ },
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"gcz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"gdN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/access_button{
+ name = "exterior access button";
+ pixel_x = -8;
+ pixel_y = -22
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Port Bow Outer Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portbowairlock)
+"gec" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"gee" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"gei" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -12;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"geU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"geX" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/canister/empty,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"gfq" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"gfQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Hangar - Shuttle"
+ },
+/turf/simulated/floor,
+/area/expoutpost/hangarone)
+"gfY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"ggg" = (
+/obj/machinery/computer/fusion_core_control{
+ dir = 1;
+ id_tag = "Aegis Fusion Core"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/reactorcr)
+"ggi" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ id = "aeg_disposal_conveyor"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/disposals)
+"ggy" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secureaccess)
+"ggU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "baby_mammoth_pump"
+ },
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"ggX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ id = "aeg_securestorage_blastdoor"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/secureaccess)
+"ghb" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -25;
+ pixel_y = 32
+ },
+/obj/structure/bed/chair/bay/comfy/red{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"ghC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/shuttle/shuttle3/start)
+"giE" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/blast/radproof{
+ id = "Aeg_EngineShroud"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/reactorcr)
+"giI" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ frequency = 1381;
+ id_tag = "shuttle3_inner";
+ name = "Internal Access"
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1381;
+ master_tag = "shuttle3_shuttle";
+ name = "interior access button";
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/shuttle3/start)
+"giX" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"gjj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"gjQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/eva)
+"gki" = (
+/obj/structure/table/standard,
+/obj/item/defib_kit/loaded,
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"gkx" = (
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"gkG" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"gle" = (
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"glq" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"glI" = (
+/obj/machinery/conveyor{
+ dir = 10;
+ id = "aeg_disposal_conveyor"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/disposals)
+"glR" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/item/radio/intercom/department/medbay{
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"gnO" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"god" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"gon" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 4
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"goq" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"gou" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/item/weldingtool/hugetank,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"goB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"goD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"gqr" = (
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/echidna)
+"gqv" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/surgical1)
+"gqU" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"gsP" = (
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/telecomms)
+"gtk" = (
+/obj/machinery/computer/ship/sensors,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"gui" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"gum" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"guF" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"gvp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"gvD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/slingcarrierdock)
+"gvL" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"gxw" = (
+/obj/structure/fuel_port{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"gxB" = (
+/obj/effect/floor_decal/grass_edge/corner{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"gyf" = (
+/obj/structure/bed/chair/bay/comfy/black{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"gyq" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"gyF" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"gyI" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"gzn" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "stargazer_blast";
+ name = "window blast shield"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"gzy" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/aicore)
+"gzz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"gzN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/wall/thull,
+/area/shuttle/ursula)
+"gAd" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"gAe" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"gAi" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/stationqpad)
+"gAj" = (
+/obj/structure/catwalk,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"gAm" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"gAM" = (
+/obj/structure/filingcabinet/medical{
+ desc = "A large cabinet with hard copy medical records.";
+ name = "Medical Records"
+ },
+/turf/simulated/floor/carpet/blue,
+/area/expoutpost/medicalbay)
+"gAU" = (
+/obj/structure/bed/chair/bay/comfy/green{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"gBv" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"gBy" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red,
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"gBA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Stern Airlock"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/midsternhallway)
+"gCu" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"gCW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Stern Airlock"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"gDm" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/portqpadjunction)
+"gDK" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"gDR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/thull,
+/area/shuttle/ursula)
+"gEi" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/expoutpost/hangartwo)
+"gEB" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"gFl" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/closet/emergsuit_wall{
+ pixel_y = 31
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "aeg_bridge_saferoom";
+ name = "Bridge Saferoom";
+ pixel_x = -25;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"gGb" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm2)
+"gHs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/uppersternhallway)
+"gJx" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"gKs" = (
+/obj/structure/sign/mining,
+/turf/simulated/wall/rshull,
+/area/shuttle/echidna)
+"gKu" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"gKD" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"gKJ" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/engineering{
+ name = "Auxiliary AI Core"
+ },
+/turf/simulated/floor,
+/area/expoutpost/aicore)
+"gKW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/eva)
+"gLh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"gLm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"gLE" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"gLU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"gMs" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"gMK" = (
+/obj/structure/table/rack/shelf,
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"gMY" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/papershredder,
+/obj/machinery/button/remote/airlock{
+ dir = 4;
+ id = "aeg_seccomm_bolt";
+ name = "Door Bolt";
+ pixel_x = -24;
+ pixel_y = -8;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"gNn" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"gNy" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"gNG" = (
+/obj/structure/bed/chair/bay/shuttle,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"gNV" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"gOD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"gPg" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ frequency = 1381;
+ id_tag = "stargazer_outer";
+ name = "External Access"
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1381;
+ master_tag = "stargazer";
+ name = "exterior access button";
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"gPH" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portfuelstorage)
+"gQk" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"gQK" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"gRt" = (
+/obj/structure/closet/secure_closet/freezer/meat{
+ pixel_x = 5
+ },
+/obj/item/reagent_containers/food/drinks/milk,
+/obj/item/reagent_containers/food/drinks/milk,
+/obj/item/reagent_containers/food/drinks/milk,
+/obj/item/reagent_containers/food/drinks/soymilk,
+/obj/item/reagent_containers/food/drinks/soymilk,
+/obj/item/reagent_containers/food/drinks/soymilk,
+/obj/item/storage/fancy/egg_box,
+/obj/item/storage/fancy/egg_box,
+/obj/item/storage/fancy/egg_box,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"gSi" = (
+/obj/structure/sign/vacuum{
+ pixel_y = -32
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"gTB" = (
+/obj/machinery/recharge_station,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/exploarmory)
+"gTX" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/commanderroom)
+"gUh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"gUm" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"gVf" = (
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/machinery/appliance/cooker/oven,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"gVz" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"gWs" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"gWG" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"gWO" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"gXj" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"gXp" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"gXs" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/hangarfour)
+"gXU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/ursula)
+"gYa" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,
+/turf/space,
+/area/space)
+"gYp" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/portbowairlock)
+"gYx" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"gZh" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/obj/structure/sign/warning/radioactive{
+ pixel_y = 32
+ },
+/turf/space,
+/area/space)
+"gZw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"hae" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"haF" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"haG" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/commanderroom)
+"haM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"hbj" = (
+/obj/structure/dispenser/oxygen,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"hbt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portsternairlock)
+"hby" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"hbG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/silver{
+ name = "Suite Two Bathroom"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite2)
+"hcY" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"hem" = (
+/obj/machinery/mineral/input,
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "aegis_ore_conveyor"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/miningfoyer)
+"heD" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starfuelstorage)
+"heN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"heY" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"hfj" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ lighting = 0;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 12;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"hfm" = (
+/obj/effect/floor_decal/grass_edge,
+/obj/effect/floor_decal/grass_edge{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"hga" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"hgy" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"hgB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 9
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"hgL" = (
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/int{
+ req_one_access = list(43,67)
+ },
+/turf/simulated/floor,
+/area/expoutpost/explobriefroom)
+"hhq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"hhH" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starbowhallway)
+"hhM" = (
+/obj/structure/bookcase/manuals/medical,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"hhN" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/secureaccess)
+"hiI" = (
+/obj/item/clothing/under/bathrobe,
+/obj/structure/closet,
+/obj/item/towel/random,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/pathfinderroom)
+"hjh" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold4w/visible,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"hju" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"hjB" = (
+/turf/simulated/floor/reinforced/airless,
+/area/shuttle/expoutpost/site)
+"hjG" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"hjQ" = (
+/obj/structure/catwalk,
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/telecomms)
+"hkb" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"hkS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/airlock/silver{
+ id_tag = "aeg_dormtwo_bolt";
+ name = "Dorm Two"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/expoutpost/explodorm2)
+"hlp" = (
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"hlF" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"hlV" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"hlY" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/obj/effect/floor_decal/grass_edge{
+ dir = 8
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"hmp" = (
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1381;
+ master_tag = "echidna";
+ name = "interior access button";
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/door/airlock/voidcraft/vertical{
+ frequency = 1381;
+ id_tag = "echidna_inner";
+ name = "External Access"
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"hmz" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/telecomms)
+"hol" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"hoy" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"hoO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"hpe" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/secureaccess)
+"hpq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"hpu" = (
+/obj/structure/dispenser/oxygen,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"hpv" = (
+/obj/machinery/vending/security,
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"hpy" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"hpH" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/starqpadjunction)
+"hqT" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"hqW" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -27;
+ pixel_y = -4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"hrh" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/baby_mammoth)
+"hrn" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"hrw" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/expoutpost/midsternhallway)
+"hrX" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"hse" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"hsy" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"hsz" = (
+/obj/structure/closet/walllocker/emerglocker/south,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/smes/buildable/point_of_interest/max_input,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"hsO" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/techstorage)
+"htt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ name = "Aegis Bridge";
+ req_one_access = list(19,62,67)
+ },
+/turf/simulated/floor,
+/area/expoutpost/cic)
+"huf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"huF" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"huK" = (
+/obj/machinery/atmospherics/unary/heater/sauna{
+ dir = 8;
+ icon_state = "heater_1";
+ use_power = 1
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"hwf" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/machinery/door/window/southleft,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite1)
+"hwE" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/engoffice)
+"hwZ" = (
+/obj/machinery/rnd/production/circuit_imprinter,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/reagent_containers/glass/beaker/large,
+/turf/simulated/floor/tiled,
+/area/expoutpost/rnd)
+"hxb" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"hxk" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/engineering{
+ name = "Telecomms"
+ },
+/turf/simulated/floor,
+/area/expoutpost/telecomms)
+"hxp" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"hyc" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"hyo" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"hzM" = (
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = -12;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"hAu" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"hAx" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"hAT" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/fountain,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"hBI" = (
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"hBU" = (
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8;
+ name = "Fuel Into Main"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starfuelstorage)
+"hBV" = (
+/obj/machinery/door/window/survival_pod{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/ursula)
+"hCj" = (
+/obj/effect/overmap/visitable/ship/explo_carrier{
+ start_x = 10;
+ start_y = 10
+ },
+/obj/machinery/button/remote/blast_door{
+ pixel_x = 30;
+ pixel_y = 34;
+ name = "Emergency Armoury";
+ id = "aeg_bridge_armory";
+ req_one_access = list(19,62,67)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "aeg_bridge_saferoom";
+ name = "Bridge Saferoom";
+ pixel_x = -30;
+ pixel_y = 34;
+ req_one_access = list(19,62,67)
+ },
+/obj/structure/bed/chair/bay/comfy/blue{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"hCD" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"hCP" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"hCT" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"hDj" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"hEd" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/bluespaceradio/southerncross_prelinked,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"hEI" = (
+/obj/structure/reagent_dispensers/acid{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/rnd)
+"hEM" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/obj/item/geiger/wall/west,
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"hFP" = (
+/obj/structure/table/steel_reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"hFQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"hFR" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsternairlock)
+"hFW" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"hFX" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4;
+ name = "Refuelling Port"
+ },
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"hGa" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"hGu" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"hGz" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"hGE" = (
+/obj/structure/bed/chair/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"hGR" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/structure/flora/pottedplant/mysterious,
+/obj/machinery/light,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"hGV" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"hHm" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"hIa" = (
+/obj/machinery/vending/security,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"hIw" = (
+/obj/machinery/atmospherics/pipe/tank/nitrogen{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"hIF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"hIK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"hJg" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"hKc" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"hKt" = (
+/obj/structure/closet/walllocker_double/kitchen/east{
+ name = "Ration Cabinet"
+ },
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/radio{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/radio{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/radio{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/radio{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"hKH" = (
+/obj/machinery/computer/gyrotron_control{
+ dir = 1;
+ id_tag = "Aegis Gyrotron"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/reactorcr)
+"hLp" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"hMk" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"hMq" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/binoculars,
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"hMN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Starboard Bow Inner Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starboardbowairlock)
+"hMP" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"hOa" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/surgery,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"hOc" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing,
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"hOP" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/explobriefroom)
+"hPB" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"hPF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"hPN" = (
+/obj/machinery/door/blast/radproof{
+ dir = 4;
+ id = "Aeg_CoreShroud";
+ name = "Core Shroud"
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 4
+ },
+/obj/structure/window/phoronreinforced,
+/obj/structure/window/phoronreinforced{
+ dir = 8
+ },
+/obj/structure/window/phoronreinforced{
+ dir = 1
+ },
+/obj/structure/grille,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/reactorroom)
+"hPP" = (
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"hPX" = (
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explobriefroom)
+"hQz" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/item/radio/intercom/department/security{
+ dir = 1;
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"hRb" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"hRE" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"hRR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"hSo" = (
+/obj/structure/mopbucket,
+/obj/item/mop,
+/obj/item/reagent_containers/glass/bucket,
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/janitorial)
+"hTs" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"hTG" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/unary/outlet_injector{
+ dir = 1;
+ frequency = 1433;
+ id = "aegrust_cooling_in";
+ name = "Coolant Injector";
+ pixel_y = 1;
+ power_rating = 30000;
+ use_power = 1;
+ volume_rate = 700
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/expoutpost/reactorroom)
+"hUo" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"hVa" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/hangartwo)
+"hVf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"hVm" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"hVu" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"hXk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"hXD" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"hYl" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portsternairlock)
+"hYX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "stargazer_blast";
+ layer = 2.5;
+ name = "window blast shield"
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"hZq" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"hZv" = (
+/obj/machinery/smartfridge/sheets{
+ density = 0
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"iav" = (
+/turf/space,
+/area/expoutpost/starfuelstorage)
+"iaL" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/rndlobby)
+"ibm" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"ibx" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/sign/department/sci{
+ pixel_x = 32
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"icB" = (
+/obj/structure/bed/chair/sofa/left/brown,
+/turf/simulated/floor/carpet,
+/area/expoutpost/bar)
+"icW" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/modular_computer/console/preset/medical,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/medicalbay)
+"idc" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "aeg_botany_blastdoor";
+ name = "Botany Blast Doors";
+ pixel_x = 28
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"idy" = (
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"idW" = (
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_x = -32;
+ pixel_y = -5
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ dir = 1;
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"iel" = (
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"iem" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/midsternhallway)
+"ifz" = (
+/obj/effect/floor_decal/grass_edge,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"ifF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"ifU" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"ige" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/table/standard,
+/obj/structure/bedsheetbin,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/pathfinderroom)
+"igu" = (
+/obj/structure/table/rack/shelf,
+/obj/item/radio{
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/obj/item/radio{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/radio{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/radio{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"igW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/eva)
+"ihr" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"ihN" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/stargazer)
+"ihP" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/space)
+"iiF" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"ijz" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite2)
+"ijT" = (
+/obj/machinery/chemical_dispenser/bar_coffee/full{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/bar)
+"ijV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"ikj" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"ikn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starfuelstorage)
+"ikB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"ikH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/glass{
+ name = "Bow Airlock"
+ },
+/turf/simulated/floor,
+/area/expoutpost/eva)
+"ikP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/pathfinderroom)
+"iln" = (
+/obj/structure/table/rack,
+/obj/random/powercell,
+/obj/random/powercell,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"ilP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/expoutpost/botany)
+"imb" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/stargazer)
+"imf" = (
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/rnd,
+/turf/simulated/floor,
+/area/expoutpost/rnd)
+"imr" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"imA" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/rnd)
+"imC" = (
+/obj/machinery/door/window/survival_pod{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"imX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"inm" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/aicore)
+"inz" = (
+/obj/effect/floor_decal/industrial/loading,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/miningfoyer)
+"inK" = (
+/obj/structure/table/reinforced,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/glass,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"inU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/conveyor_switch/oneway{
+ id = "aegis_ore_conveyor";
+ name = "Ore Processing conveyor"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"inZ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"ipj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"ipz" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 24;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"ipN" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/dogbed,
+/mob/living/simple_mob/animal/sif/glitterfly{
+ desc = "A large, shiny butterfly! The explorer who caught it refused to change the name after learning it was not a moth.";
+ makes_dirt = 0;
+ name = "Lomp"
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"ipO" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"iqp" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"iqK" = (
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"iqQ" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/item/multitool,
+/obj/effect/floor_decal/grass_edge{
+ dir = 9
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"irs" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"iry" = (
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/shipsensors,
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"irI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/disposalpipe/junction{
+ dir = 2
+ },
+/turf/simulated/floor,
+/area/expoutpost/portbowhallway)
+"isf" = (
+/obj/machinery/vending/dinnerware{
+ density = 0;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"isj" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"isv" = (
+/obj/structure/table/steel_reinforced,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -27;
+ pixel_y = -4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"isx" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"isM" = (
+/obj/machinery/mineral/output,
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "aegis_ore_conveyor"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/miningfoyer)
+"isR" = (
+/obj/structure/flora/pottedplant/aquatic,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"itf" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"itM" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/slingcarrierdock)
+"iup" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/stargazer)
+"iuL" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/vending/wallmed1{
+ pixel_y = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"ivf" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/item/geiger/wall/east,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"ivr" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/orange/bordercorner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"ivA" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/storage/rollingpapers,
+/obj/item/storage/rollingpapers,
+/obj/item/storage/rollingpapers/blunt,
+/obj/item/storage/rollingpapers/blunt,
+/obj/effect/floor_decal/grass_edge{
+ dir = 6
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"ivD" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"ivN" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "echidna_dock";
+ name = "shuttle bay controller";
+ pixel_x = -29
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"ixj" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/handrail,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"ixu" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"ixG" = (
+/obj/structure/table/rack/shelf,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"ixK" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ name = "CO2 Filter";
+ tag_east = 2;
+ tag_north = null;
+ tag_south = 5;
+ tag_west = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"ixR" = (
+/obj/structure/table/rack/shelf,
+/obj/fiftyspawner/rods,
+/obj/fiftyspawner/rods,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"iBg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/civaccesshallway)
+"iBn" = (
+/obj/structure/bed/chair/bay/shuttle,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"iBp" = (
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"iCh" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/hangartwo)
+"iCF" = (
+/obj/machinery/vending/fitness,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"iCO" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/microwave,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"iCS" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"iCY" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/airless,
+/area/expoutpost/portbowairlock)
+"iDa" = (
+/obj/machinery/floodlight,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"iDc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/commanderroom)
+"iDt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/expoutpost/uppersternhallway)
+"iDN" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsternairlock)
+"iEb" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/expoutpost/slingcarrierdock)
+"iFh" = (
+/obj/machinery/mech_recharger,
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/exploarmory)
+"iFQ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"iFY" = (
+/obj/structure/shuttle/engine/router,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,
+/turf/simulated/wall/thull,
+/area/shuttle/ursula)
+"iGn" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"iHb" = (
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"iHm" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/staginghangar)
+"iHQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"iIw" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"iIB" = (
+/obj/machinery/door/blast/radproof{
+ dir = 8;
+ id = "aeg_enginevent_stagetwo";
+ name = "Emergency Blast Door"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"iJc" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/sign/department/eng{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"iJj" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"iJM" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"iKh" = (
+/obj/machinery/sleep_console,
+/turf/simulated/floor/tiled/white,
+/area/shuttle/stargazer)
+"iKm" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"iKu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -12;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"iKy" = (
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"iKE" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"iLf" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"iMD" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"iNh" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/gloves/yellow{
+ pixel_y = 5
+ },
+/obj/item/clothing/gloves/yellow,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"iNj" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/storage/briefcase/inflatable,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"iNm" = (
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"iNO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"iNT" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/medicalbay)
+"iOv" = (
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"iOy" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"iOC" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel,
+/area/expoutpost/hangarfour)
+"iOM" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/turf/space,
+/area/space)
+"iPd" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/flame/candle/candelabra/everburn{
+ pixel_x = 16;
+ pixel_y = 18
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"iPo" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"iPI" = (
+/obj/structure/table/rack,
+/obj/random/firstaid,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"iRk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/engineering{
+ name = "Fuel Storage"
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"iRM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsternairlock)
+"iRY" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"iSg" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/telecomms)
+"iSp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/uppersternhallway)
+"iSs" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"iSI" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"iTu" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"iUF" = (
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/rshull,
+/area/shuttle/stargazer)
+"iUL" = (
+/obj/structure/table/rack/shelf,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/machinery/door/window{
+ dir = 8
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"iVw" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"iVO" = (
+/obj/structure/sign/department/armory,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/exploarmory)
+"iVX" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"iVY" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ id = "aeg_gateway_access"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/gateway)
+"iWj" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"iWK" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/miningfoyer)
+"iXd" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical EVA"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"iXn" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"iYd" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"iYR" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secureaccess)
+"iZj" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portsternairlock)
+"jat" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"jaI" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"jbk" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"jbG" = (
+/obj/structure/window/basic{
+ dir = 4
+ },
+/obj/structure/closet,
+/obj/item/clothing/under/bathrobe,
+/obj/item/towel/random,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite1)
+"jbK" = (
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"jbR" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable/green,
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/telecomms)
+"jcu" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"jcy" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/turf/simulated/floor/carpet,
+/area/expoutpost/miningfoyer)
+"jcG" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"jcU" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"jdu" = (
+/obj/machinery/computer/shuttle_control/web/shuttle3{
+ my_doors = list("expshuttle3_door_L"="Port Cargo","shuttle3_outer"="Airlock Outer","shuttle3_inner"="Airlock Inner","expshuttle3_door_cargo"="Cargo Hatch");
+ my_sensors = list("shuttle3sens_exp"="Exterior Environment","shuttle3sens_exp_int"="Cargo Area","shuttle3sens_exp_psg"="Passenger Area")
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"jeH" = (
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"jfr" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"jfu" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"jfA" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"jfJ" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"jfQ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"jfX" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"jhp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"jhQ" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"jia" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/cic)
+"jib" = (
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"jic" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 8;
+ start_pressure = 4559.63
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/expoutpost/starboardbowairlock)
+"jiK" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"jja" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"jjo" = (
+/obj/machinery/door/airlock/security{
+ name = "Aegis Security Office"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secoffice)
+"jjP" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"jjT" = (
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Port Bow Outer Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portbowairlock)
+"jks" = (
+/obj/structure/catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/expoutpost/engstorage)
+"jkZ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"jlr" = (
+/obj/structure/table/woodentable,
+/obj/machinery/photocopier/faxmachine,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"jlw" = (
+/obj/random/plushielarge,
+/obj/effect/decal/cleanable/cobweb,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"jlz" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4;
+ name = "Fuel Into Main"
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor,
+/area/shuttle/shuttle3/start)
+"jlK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/stationqpad)
+"jlO" = (
+/turf/simulated/wall/rplastihull,
+/area/shuttle/needle)
+"jmh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/silver{
+ name = "Washroom"
+ },
+/turf/simulated/floor,
+/area/expoutpost/washroom)
+"jmy" = (
+/obj/machinery/power/apc/hyper{
+ coverlocked = 0;
+ locked = 0;
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"jnf" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "stargazer_blast";
+ name = "window blast shield"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"jng" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"jnl" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"jnK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/uppersternhallway)
+"jpe" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"jpm" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/expoutpost/starsternairlock)
+"jpr" = (
+/obj/machinery/light,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/engstorage)
+"jpM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Rear Engineering Airlock"
+ },
+/turf/simulated/floor,
+/area/expoutpost/starsternairlock)
+"jpQ" = (
+/obj/machinery/button/remote/airlock{
+ id = "aeg_pubshower_bolt";
+ name = "Door Bolt";
+ pixel_x = 8;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"jqf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/obj/structure/shuttle/engine/router,
+/turf/simulated/wall/rplastihull,
+/area/shuttle/needle)
+"jqu" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/structure/flora/pottedplant/unusual,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"jqy" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"jrg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"jrn" = (
+/obj/structure/loot_pile/surface/medicine_cabinet/fresh{
+ pixel_y = 25
+ },
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"jrB" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"jrL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"jsf" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"jsl" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide,
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"jsY" = (
+/obj/machinery/computer/ship/navigation,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"jtd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"jtG" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"juu" = (
+/turf/space/internal_edge/top,
+/area/expoutpost/cic)
+"juN" = (
+/obj/structure/table/standard,
+/obj/structure/bedsheetbin,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite1)
+"juR" = (
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"juS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/uppersternhallway)
+"juV" = (
+/obj/structure/sign/signnew/danger,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/gateway)
+"juW" = (
+/obj/structure/closet,
+/obj/item/storage/toolbox/syndicate,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"jvS" = (
+/obj/machinery/power/thermoregulator,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"jvX" = (
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"jwx" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"jwP" = (
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"jwU" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"jxP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"jyt" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"jyK" = (
+/obj/effect/mist,
+/turf/simulated/floor/water/pool,
+/area/expoutpost/washroom)
+"jyQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"jzB" = (
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Hangar - Shuttle"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangarone)
+"jAP" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"jAV" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"jCe" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"jCk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"jCv" = (
+/obj/structure/table/steel_reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"jCN" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/machinery/pipedispenser,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"jCS" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/bar)
+"jDj" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"jDv" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/secureaccess)
+"jDV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"jDZ" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"jEv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"jEx" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"jEM" = (
+/obj/machinery/computer/fusion_fuel_control{
+ dir = 1;
+ id_tag = "Aegis Fuel Injectors"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/reactorcr)
+"jEQ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"jFc" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"jFl" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"jFJ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"jGJ" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Pilot"
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/explobriefroom)
+"jHk" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/slingcarrierdock)
+"jHm" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = -32
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"jHs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/catwalk_plated/white,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre 1"
+ },
+/turf/simulated/floor,
+/area/expoutpost/surgical1)
+"jHO" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"jHX" = (
+/obj/machinery/button/remote/airlock{
+ desiredstate = 1;
+ dir = 8;
+ id = "stargazer_hatch";
+ name = "Rear Hatch Control";
+ pixel_x = 26;
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"jIb" = (
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_bridge_padin";
+ map_pad_link_id = "aeg_bridge_padout";
+ name = "TO - BRIDGE"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/portqpadjunction)
+"jIo" = (
+/obj/structure/catwalk,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"jIv" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"jIR" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"jJl" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"jJo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"jJO" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4;
+ name = "Fuel Into Main"
+ },
+/obj/machinery/portable_atmospherics/canister/phoron,
+/turf/simulated/floor,
+/area/shuttle/needle)
+"jKa" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/machinery/door/window/southleft,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/pathfinderroom)
+"jKi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"jKB" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"jKJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/reactorroom)
+"jLz" = (
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"jLA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"jLV" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"jMa" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/slingcarrierdock)
+"jNd" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"jNq" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 8
+ },
+/obj/effect/floor_decal/grass_edge{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"jOn" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"jOX" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/storage/belt/utility/full,
+/obj/item/storage/belt/utility/full{
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"jPZ" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"jQI" = (
+/obj/machinery/suit_cycler/security,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"jQK" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/expoutpost/botany)
+"jQX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"jSE" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/gatewayeva)
+"jSF" = (
+/obj/structure/table/steel,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"jSK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 5
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"jSQ" = (
+/obj/structure/sign/signnew/radiation,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/engstorage)
+"jTc" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"jTs" = (
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"jTQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"jUF" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangarthree)
+"jUO" = (
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -27
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsternairlock)
+"jUX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"jVs" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "aeg_sauna_tint"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/washroom)
+"jVO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/eva)
+"jWf" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/stationqpad)
+"jWh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "stargazer_pump"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"jWv" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/structure/catwalk,
+/obj/machinery/airlock_sensor{
+ pixel_y = 24
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"jWP" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/secarmory)
+"jWV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm2)
+"jXV" = (
+/obj/structure/closet/excavation,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"jYi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"jZf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"jZo" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"kaM" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"kbb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"kbc" = (
+/obj/machinery/door/window/survival_pod{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"kbl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"kbK" = (
+/obj/item/gun/energy/locked/phasegun/rifle,
+/obj/item/gun/energy/locked/phasegun/rifle,
+/obj/item/gun/energy/locked/phasegun/rifle,
+/obj/item/gun/energy/locked/phasegun/rifle,
+/obj/item/gun/energy/locked/phasegun/rifle,
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(43,67)
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"kcv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"kcZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/silver{
+ id_tag = "aeg_suitetwo_bolt";
+ name = "Suite Two"
+ },
+/turf/simulated/floor,
+/area/expoutpost/suite2)
+"kdc" = (
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 8;
+ name = "Hangar - Mammoth"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangartwo)
+"kfa" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/techstorage)
+"kfO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"kgh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"kgn" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/industrial/loading{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/miningfoyer)
+"kgx" = (
+/obj/structure/closet/secure_closet/explorer,
+/obj/item/cataloguer,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"kgI" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light,
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"kgN" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portlowermaint)
+"kic" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"kjH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"kkl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "ursula_pump"
+ },
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"kkt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"kkw" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"klw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/vault{
+ name = "Emergency Armoury";
+ req_one_access = list(19,62,67)
+ },
+/obj/machinery/door/blast/regular{
+ dir = 8;
+ id = "aeg_bridge_armory"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/cic)
+"klO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Joint Gateway Hub";
+ req_one_access = list(1,5,43,67)
+ },
+/turf/simulated/floor,
+/area/expoutpost/gatewayeva)
+"kms" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Port Bow Outer Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portbowairlock)
+"knX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/catwalk_plated/white,
+/obj/machinery/door/airlock/glass_research,
+/turf/simulated/floor,
+/area/expoutpost/rnd)
+"koU" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"kpl" = (
+/obj/machinery/optable,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/oxygen_pump/anesthetic{
+ pixel_y = 64
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"kpp" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"kpt" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"kpT" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"kqS" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"kqU" = (
+/obj/machinery/light/floortube,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"kra" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"krs" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"krN" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"ksw" = (
+/obj/structure/table/rack/shelf,
+/obj/item/storage/backpack/parachute{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/storage/backpack/parachute{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/backpack/parachute{
+ pixel_x = -6;
+ pixel_y = -6
+ },
+/obj/item/storage/backpack/parachute{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"ksy" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/atmospherics/portables_connector,
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"ktu" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starfuelstorage)
+"ktx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm2)
+"ktN" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"kuk" = (
+/obj/machinery/mineral/stacking_unit_console,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/miningfoyer)
+"kvo" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 6
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"kvy" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"kwr" = (
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/power/smes/buildable/point_of_interest/max_input,
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"kwM" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portsternairlock)
+"kwX" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"kxg" = (
+/obj/machinery/power/quantumpad,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/stationqpad)
+"kxx" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/stargazer)
+"kxZ" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/echidna)
+"kye" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"kyw" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/steel,
+/area/expoutpost/hangarthree)
+"kyy" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"kyD" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"kzZ" = (
+/obj/structure/bed/chair/wood,
+/turf/simulated/floor/carpet,
+/area/expoutpost/breakroom)
+"kAp" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/telecomms)
+"kAr" = (
+/obj/structure/railing/overhang/waterless/grey,
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"kAG" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"kBn" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/washroom)
+"kBy" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"kCt" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"kCO" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"kDy" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"kDE" = (
+/obj/structure/window/reinforced/survival_pod,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"kDU" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"kEm" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"kFc" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red,
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"kFp" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"kFq" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"kHv" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"kHY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Hangar Bay"
+ },
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"kIa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/portbowhallway)
+"kIP" = (
+/obj/structure/table/standard,
+/obj/item/soap/deluxe,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite1)
+"kJb" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portfuelstorage)
+"kJt" = (
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"kJA" = (
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"kJE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsternairlock)
+"kKd" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/hangarsix)
+"kKg" = (
+/obj/structure/closet/radiation,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 5
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/reactorcr)
+"kLn" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"kLD" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"kLE" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/fusion_fuel_injector/mapped{
+ dir = 1;
+ id_tag = "Aegis Fuel Injectors"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"kLJ" = (
+/obj/machinery/computer/guestpass{
+ pixel_y = 30
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"kMk" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/rnd)
+"kMp" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"kMR" = (
+/obj/structure/catwalk,
+/obj/structure/table/steel_reinforced,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"kNx" = (
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"kNV" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"kOi" = (
+/obj/structure/table/rack/shelf,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"kOT" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/space_heater,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"kOZ" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/table/rack/shelf,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/rods,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"kQm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/obj/machinery/power/terminal,
+/obj/structure/cable/blue{
+ icon_state = "0-8"
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -25;
+ pixel_y = 32
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/baby_mammoth)
+"kQr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portfuelstorage)
+"kQv" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/telecomms)
+"kQx" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"kQI" = (
+/obj/structure/cable/blue{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/aicore)
+"kSe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/uppersternhallway)
+"kSB" = (
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"kSF" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"kSW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/orange/bordercorner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"kTe" = (
+/obj/machinery/computer/ship/sensors{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"kTo" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"kTM" = (
+/obj/item/storage/firstaid/adv{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/o2{
+ pixel_x = 5
+ },
+/obj/item/storage/firstaid/fire{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/toxin{
+ pixel_x = -5
+ },
+/obj/structure/table/rack/shelf,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"kTN" = (
+/obj/structure/closet/crate,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"kTP" = (
+/obj/structure/bed/chair/office/light,
+/obj/effect/landmark/start{
+ name = "Explorer"
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/explobriefroom)
+"kUb" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"kUy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"kUD" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/eva)
+"kXe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"kXq" = (
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"kXt" = (
+/obj/machinery/atmospherics/binary/pump,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"kXE" = (
+/obj/machinery/appliance/cooker/fryer,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"kXV" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"kYd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"kYg" = (
+/obj/item/gun/energy/locked/phasegun,
+/obj/item/gun/energy/locked/phasegun,
+/obj/item/gun/energy/locked/phasegun,
+/obj/item/gun/energy/locked/phasegun,
+/obj/item/gun/energy/locked/phasegun,
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(43,67)
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"kYh" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"kYS" = (
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_hangar_padout";
+ map_pad_link_id = "aeg_hangar_padin";
+ name = "Hangar Q-Pad"
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"kZe" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"kZQ" = (
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/shuttle/needle)
+"lae" = (
+/obj/structure/closet/crate,
+/obj/random/junk,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"lbq" = (
+/obj/structure/table/reinforced,
+/obj/item/weldingtool/largetank,
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 5
+ },
+/obj/item/storage/toolbox/electrical,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"lbt" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"lbA" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"lcw" = (
+/obj/machinery/computer/ship/sensors,
+/obj/machinery/button/remote/airlock{
+ desiredstate = 1;
+ dir = 8;
+ id = "expshuttle4_door_cargo";
+ name = "Rear Hatch Control";
+ pixel_x = 26;
+ req_access = list(67);
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"lcN" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4;
+ name = "Fuel Into Main"
+ },
+/turf/simulated/floor,
+/area/shuttle/needle)
+"ldk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"ldB" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ dir = 1;
+ id = "aeg_toilet2_bolt";
+ name = "Door Bolt";
+ pixel_y = -24;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"leR" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"leU" = (
+/obj/machinery/door/airlock{
+ id_tag = "aeg_toilet1_bolt";
+ name = "Unit 1"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"lfA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"lfC" = (
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/structure/table/marble,
+/obj/structure/sink/countertop{
+ dir = 4;
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"lfI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"lgz" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"lgS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"lhv" = (
+/obj/machinery/biogenerator,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/botany)
+"lhB" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"lis" = (
+/obj/machinery/door/airlock/centcom{
+ req_one_access = newlist()
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/shuttle3/start)
+"liP" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"ljx" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"ljI" = (
+/turf/simulated/floor,
+/area/shuttle/needle)
+"ljK" = (
+/obj/machinery/body_scanconsole,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled,
+/area/expoutpost/medicalbay)
+"lkz" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/staginghangar)
+"llw" = (
+/obj/machinery/computer/operating{
+ name = "Robotics Operating Computer"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/rnd)
+"llX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/eva)
+"llY" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"lmx" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"lmB" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"lmH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/starbowhallway)
+"lmY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"lnk" = (
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"lnV" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"lok" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"lon" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/pink/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"lpf" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Stern Airlock"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"lpi" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "shuttle3_shuttle";
+ pixel_y = 26;
+ tag_airpump = "shuttle3_pump";
+ tag_chamber_sensor = "shuttle3_sensor";
+ tag_exterior_door = "shuttle3_outer";
+ tag_interior_door = "shuttle3_inner"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1381;
+ id_tag = "shuttle3_pump"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"lpC" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "shuttle3_pump"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"lpT" = (
+/obj/item/clothing/mask/breath,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/head/helmet/space/void/atmos,
+/obj/item/suit_cooling_unit,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window{
+ dir = 2
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/engstorage)
+"lqc" = (
+/obj/structure/railing/grey,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"lqy" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/storage/belt/utility/full,
+/obj/item/storage/belt/utility/full{
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"lqB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/silver{
+ name = "Custodial Closet";
+ req_access = list(26)
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/janitorial)
+"lrf" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"lri" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"lro" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/secureaccess)
+"lrz" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"lrO" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portqpadjunction)
+"lsn" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/reactorcr)
+"lsv" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/machinery/shield_diffuser,
+/turf/simulated/floor/airless,
+/area/expoutpost/starboardbowairlock)
+"lsT" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"ltl" = (
+/obj/machinery/vending/engivend{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"ltw" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/reactorroom)
+"ltL" = (
+/obj/effect/overmap/visitable/planet/kara,
+/turf/space,
+/area/space)
+"lvx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"lvT" = (
+/turf/simulated/floor/reinforced,
+/area/expoutpost/hangarsix)
+"lvZ" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/carpet,
+/area/expoutpost/miningfoyer)
+"lwd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"lwG" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"lwV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"lxu" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangarfour)
+"lxY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"lyU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"lzi" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"lzk" = (
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/starqpadjunction)
+"lzn" = (
+/obj/structure/sign/directions/shuttle_bay{
+ dir = 10
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starqpadjunction)
+"lzy" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"lAk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"lAT" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"lBp" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"lCN" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/ursula)
+"lDn" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/computer/shuttle_control/explore/baby_mammoth{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"lDp" = (
+/obj/random/soap,
+/obj/structure/table/marble,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"lDY" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "stargazer";
+ pixel_y = 26;
+ tag_airpump = "stargazer_pump";
+ tag_chamber_sensor = "stargazer_sensor";
+ tag_exterior_door = "stargazer_outer";
+ tag_interior_door = "stargazer_inner"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1381;
+ id_tag = "stargazer_pump"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"lEc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/effect/landmark/start{
+ name = "Search and Rescue"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/explobriefroom)
+"lEK" = (
+/obj/structure/bed/chair/comfy/blue{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"lEO" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"lFp" = (
+/obj/machinery/door/window{
+ dir = 1
+ },
+/obj/machinery/power/terminal,
+/obj/structure/cable/yellow,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/engoffice)
+"lFs" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/suite2)
+"lFv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"lFJ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"lFR" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explobriefroom)
+"lGd" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ target_pressure = 15000;
+ dir = 1;
+ name = "shuttle fuel pump"
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"lGm" = (
+/obj/machinery/computer/ship/sensors,
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "stargazer_blast";
+ name = "remote blast shielding control";
+ pixel_x = 27
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"lGu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangarthree)
+"lGy" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"lGF" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ id = "aeg_disposal_conveyor"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/disposals)
+"lGH" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"lHe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"lHx" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/portqpadjunction)
+"lId" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/photocopier/faxmachine,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"lIe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Stern Airlock"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/uppersternhallway)
+"lIy" = (
+/obj/machinery/telecomms/relay/preset/southerncross/explorer,
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/structure/window/plastitanium,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/telecomms)
+"lIR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"lJc" = (
+/obj/machinery/mineral/output,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "aegis_ore_conveyor"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/miningfoyer)
+"lKh" = (
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/rnd)
+"lKu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"lKV" = (
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_medbay_padin";
+ map_pad_link_id = "aeg_medbay_padout";
+ name = "TO - MEDBAY"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/starqpadjunction)
+"lMc" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/techstorage)
+"lMj" = (
+/obj/structure/railing/grey,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"lMk" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed{
+ pixel_y = 11
+ },
+/obj/item/lightreplacer,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"lMq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"lME" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ id = "aeg_bar_shutter";
+ name = "Bar Shutter"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/bar)
+"lMJ" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 4
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/stargazer)
+"lMZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"lNh" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/machinery/light,
+/obj/machinery/airlock_sensor{
+ frequency = 1381;
+ id_tag = "needle_sensor";
+ pixel_x = -28;
+ pixel_y = -1
+ },
+/turf/simulated/floor,
+/area/shuttle/needle)
+"lOd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/eva)
+"lOK" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4;
+ name = "Fuel Into Main"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"lOU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/silver{
+ name = "Bathroom"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/pathfinderroom)
+"lOV" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/table/rack/shelf,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/plastic,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"lPb" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"lPp" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"lPC" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"lPO" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"lRz" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1381;
+ id_tag = "baby_mammoth_pump"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "baby_mammoth";
+ pixel_y = 26;
+ tag_airpump = "baby_mammoth_pump";
+ tag_chamber_sensor = "baby_mammoth_sensor";
+ tag_exterior_door = "baby_mammoth_outer";
+ tag_interior_door = "baby_mammoth_inner"
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -25;
+ pixel_y = 32
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"lRD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/structure/shuttle/engine/router,
+/turf/simulated/wall/rplastihull,
+/area/shuttle/needle)
+"lRH" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/microwave,
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"lSo" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/catwalk,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/aicore)
+"lSp" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/suite1)
+"lSv" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/starbowhallway)
+"lSy" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"lST" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/blue{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"lTh" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"lTk" = (
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "aegis_ore_conveyor"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/miningfoyer)
+"lTw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"lTA" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/hand_labeler,
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"lUe" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 12;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"lUp" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/white/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"lUw" = (
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"lUE" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/closet/radiation,
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"lUK" = (
+/obj/machinery/vending/wallmed1{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/shuttle/baby_mammoth)
+"lVZ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/hangarthree)
+"lWf" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/secureaccess)
+"lWl" = (
+/obj/item/flashlight/lamp,
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"lWC" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/door/blast/radproof{
+ dir = 4;
+ id = "Aeg_CoreShroud";
+ name = "Core Shroud"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/reactorroom)
+"lXc" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/wall/thull,
+/area/shuttle/ursula)
+"lXD" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite1)
+"lYB" = (
+/obj/structure/table/steel_reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"lZf" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"lZt" = (
+/obj/machinery/power/smes/buildable/engine_default{
+ name = "AI Core SMES"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/aicore)
+"lZE" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "aeg_bar_shutter";
+ name = "Bar Shutter"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/bar)
+"lZG" = (
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/shipsensors,
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"lZN" = (
+/obj/structure/closet/secure_closet/guncabinet/phase{
+ req_one_access = null
+ },
+/obj/item/clothing/accessory/permit/gun/planetside,
+/obj/item/clothing/accessory/permit/gun/planetside,
+/obj/item/gun/energy/locked/phasegun,
+/obj/item/gun/energy/locked/phasegun,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/item/gun/energy/locked/phasegun/rifle,
+/obj/item/gun/energy/locked/phasegun/rifle,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/structure/panic_button{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/red,
+/area/shuttle/baby_mammoth)
+"mbg" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/turf/space,
+/area/space)
+"mbu" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/portqpadjunction)
+"mce" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"mdc" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/paper_bin,
+/obj/item/stamp/denied,
+/obj/item/stamp/hos,
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"mdE" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/westleft{
+ name = "Research and Development";
+ req_one_access = list(47)
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"mdJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/eva)
+"mdP" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/binary/circulator{
+ anchored = 1;
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"mdR" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "stargazer_blast";
+ name = "window blast shield"
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"mef" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"mfd" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"mfj" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"mfp" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"mfy" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"mfN" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"mfT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"mgs" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/yellowdouble,
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"mgE" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"mgQ" = (
+/obj/structure/cable/green,
+/obj/machinery/power/smes/buildable/power_shuttle/max_charge_max_input_base_output,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"miL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/civaccesshallway)
+"miN" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/gps,
+/obj/item/gps{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"mjq" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 8
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"mkF" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/carpet,
+/area/expoutpost/miningfoyer)
+"mkJ" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(1)
+ },
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
+/obj/item/gun/energy/laser,
+/obj/item/gun/energy/laser,
+/obj/item/gun/energy/laser,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"mkR" = (
+/obj/structure/railing/overhang/waterless/grey,
+/obj/structure/railing/grey,
+/obj/machinery/light,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"mkU" = (
+/obj/machinery/door/airlock/glass_centcom,
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"mld" = (
+/obj/machinery/vending/tool{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"mlM" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"mmi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"mmL" = (
+/obj/effect/floor_decal/milspec/color/purple,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"mmN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm1)
+"mmQ" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/sign/department/atmos{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"mnb" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/turf/space,
+/area/space)
+"mnn" = (
+/obj/machinery/computer/ship/navigation,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"mnp" = (
+/obj/machinery/atmospherics/unary/engine/biggest{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/needle)
+"mnz" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"mnK" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"mop" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"mpb" = (
+/obj/effect/floor_decal/grass_edge,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"mpi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/red{
+ dir = 9
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"mpv" = (
+/obj/random/contraband,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"mpO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/portbowhallway)
+"mqo" = (
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Port Stern Inner Airlock"
+ },
+/obj/machinery/access_button{
+ dir = 1;
+ name = "interior access button";
+ pixel_x = 27;
+ pixel_y = 7
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portsternairlock)
+"mqv" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"mqP" = (
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/machinery/door/window/southright{
+ dir = 8;
+ name = "Bar";
+ req_access = list(25)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/bar)
+"mrc" = (
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/item/geiger/wall/east,
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"mse" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"mso" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"msz" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"msO" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"mth" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"mtk" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"mto" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "exphangar_1";
+ name = "shuttle bay controller";
+ pixel_x = 24;
+ tag_door = "exphangar_1_door"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"mtG" = (
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ target_pressure = 15000;
+ name = "engine fuel pump"
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"mul" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/table/marble,
+/obj/structure/sink/countertop{
+ dir = 8;
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"mvF" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/pen/blue{
+ pixel_y = 4
+ },
+/obj/item/pen/red{
+ pixel_y = -4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"mwu" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"mxb" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/civaccesshallway)
+"mxF" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"myy" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/starqpadjunction)
+"mzc" = (
+/obj/machinery/suit_cycler/pilot,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"mzd" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"mzJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Hangar Bay"
+ },
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"mAn" = (
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Medbay Lobby"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/medbaylobby)
+"mBu" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"mBT" = (
+/obj/structure/closet,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/obj/item/clothing/suit/armor/combat,
+/obj/item/clothing/gloves/arm_guard/combat,
+/obj/item/clothing/shoes/leg_guard/combat,
+/obj/item/clothing/head/helmet/combat,
+/obj/item/clothing/under/syndicate/combat,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"mCa" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"mCg" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"mDz" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/space_heater,
+/obj/item/radio{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/radio{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/radio{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/radio{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/structure/closet/walllocker_double/hydrant/east,
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"mFX" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"mGs" = (
+/obj/structure/table/woodentable,
+/obj/item/paper_bin,
+/obj/item/pen/fountain,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"mGA" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"mGI" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"mGJ" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"mGN" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"mGP" = (
+/turf/simulated/floor/tiled/white,
+/area/shuttle/baby_mammoth)
+"mHR" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"mHS" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/access_button{
+ dir = 1;
+ name = "exterior access button";
+ pixel_x = 8;
+ pixel_y = -22
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Starboard Bow Outer Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starboardbowairlock)
+"mIm" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"mIK" = (
+/obj/machinery/door/airlock/multi_tile/metal{
+ icon_state = "door_locked";
+ id_tag = "expshuttle3_door_cargo";
+ locked = 1
+ },
+/obj/machinery/button/remote/airlock{
+ desiredstate = 1;
+ dir = 4;
+ id = "expshuttle3_door_cargo";
+ name = "Rear Hatch Control";
+ pixel_x = -26;
+ req_access = list(67);
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/shuttle3/start)
+"mJA" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/obj/machinery/shield_diffuser,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/expoutpost/portsternairlock)
+"mKj" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full,
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portfuelstorage)
+"mKl" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Starboard Stern Outer Airlock"
+ },
+/obj/machinery/access_button{
+ dir = 4;
+ pixel_x = 7;
+ pixel_y = -27
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starsternairlock)
+"mLg" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/blue{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"mLu" = (
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"mLA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"mMj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"mMt" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/purple/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/stationqpad)
+"mMF" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/red/bordercorner,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"mMZ" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"mNd" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"mNp" = (
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/expoutpost/hangartwo)
+"mOm" = (
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/portqpadjunction)
+"mOC" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/obj/machinery/door/window/southright,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite2)
+"mOK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/slingcarrierdock)
+"mPc" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ frequency = 1381;
+ id_tag = "ursula_inner";
+ locked = 1;
+ name = "Internal Access"
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1381;
+ master_tag = "ursula";
+ name = "interior access button";
+ pixel_y = 26
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"mPx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/uppersternhallway)
+"mPE" = (
+/obj/vehicle/train/trolley{
+ dir = 2
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"mQk" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"mQB" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"mRH" = (
+/obj/machinery/computer/ship/helm,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"mTc" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"mTu" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/stationqpad)
+"mTD" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"mTN" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"mTR" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"mUj" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/starqpadjunction)
+"mUI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"mVl" = (
+/obj/machinery/vending/wallmed1{
+ dir = 8
+ },
+/turf/simulated/shuttle/wall/voidcraft/blue,
+/area/shuttle/shuttle3/start)
+"mVD" = (
+/obj/machinery/iv_drip,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"mVO" = (
+/obj/machinery/light,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm2)
+"mWt" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/door/window/northright,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"mWw" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"mWz" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 9
+ },
+/obj/machinery/gateway{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/gateway)
+"mXk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"mXw" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"mYy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm2)
+"mYG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/slingcarrierdock)
+"mYK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"mZg" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"mZx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/reactorcr)
+"mZV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/wall/rplastihull,
+/area/shuttle/needle)
+"nas" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/echidna)
+"naY" = (
+/obj/structure/table/standard,
+/obj/machinery/cell_charger,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"nbQ" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/expoutpost/slingcarrierdock)
+"nce" = (
+/obj/structure/table/rack/shelf,
+/obj/item/flashlight,
+/obj/item/flashlight{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"ncr" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 5
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"ncz" = (
+/turf/simulated/wall/rshull,
+/area/shuttle/echidna)
+"ncM" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/pathfinderroom)
+"ncY" = (
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_bridge_padout";
+ map_pad_link_id = "aeg_bridge_padin";
+ name = "Bridge Q-Pad"
+ },
+/obj/structure/sign/department/bridge{
+ pixel_y = 32
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"ndC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsternairlock)
+"ndJ" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 8
+ },
+/obj/effect/floor_decal/grass_edge{
+ dir = 4
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"ndN" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"ndZ" = (
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"nee" = (
+/obj/machinery/papershredder,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/carpet/blue,
+/area/expoutpost/medicalbay)
+"nel" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/light,
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"neN" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/machinery/pipedispenser/disposal,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"neW" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"ngg" = (
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4;
+ name = "Fuel Into Main"
+ },
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor,
+/area/expoutpost/starsternairlock)
+"ngJ" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"nhn" = (
+/obj/machinery/computer/ship/helm,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"nhZ" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"nir" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite2)
+"nis" = (
+/obj/structure/window/basic{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/commanderroom)
+"niy" = (
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/carpet,
+/area/expoutpost/breakroom)
+"niI" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/civaccesshallway)
+"niM" = (
+/obj/machinery/autolathe,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"niW" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ id_tag = "needle_hatch";
+ name = "shuttle side hatch"
+ },
+/obj/machinery/button/remote/airlock{
+ id = "needle_hatch";
+ name = "Side Hatch Control";
+ pixel_y = -26;
+ specialfunctions = 4
+ },
+/turf/simulated/floor,
+/area/shuttle/needle)
+"njd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/stargazer)
+"njk" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/red{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"njl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/railing/grey,
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"njQ" = (
+/obj/structure/sign/directions/medical,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starqpadjunction)
+"njT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"nku" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangarfive)
+"nkx" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"nkL" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/shuttle_landmark/southern_cross/carrier/echidna_dock,
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"nlk" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"nlv" = (
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/smes/buildable/point_of_interest/max_input,
+/turf/simulated/floor/tiled/red,
+/area/shuttle/needle)
+"nlT" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ id_tag = "ursula_hatch";
+ name = "shuttle side hatch"
+ },
+/obj/machinery/button/remote/airlock{
+ id = "ursula_hatch";
+ name = "Side Hatch Control";
+ pixel_y = -26;
+ specialfunctions = 4
+ },
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"nmj" = (
+/obj/effect/floor_decal/techfloor,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"nmo" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"nmR" = (
+/obj/structure/window/phoronreinforced/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"nmZ" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"nni" = (
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"nnn" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"nnT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ id = "aeg_mining_storage"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/miningfoyer)
+"nog" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"nok" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"not" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"noT" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/aicore)
+"npc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"npf" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 28
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"nqC" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"nrD" = (
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/civaccesshallway)
+"nsn" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secureaccess)
+"nsu" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/machinery/computer/atmos_alert{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/engoffice)
+"nsv" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "stargazer_dock";
+ name = "shuttle bay controller";
+ pixel_x = -29
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"nsG" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/machinery/computer/rcon{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/engoffice)
+"nta" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/computer/shuttle_control/explore/echidna,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"ntb" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4;
+ name = "Phoron to Connector"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/stargazer)
+"nte" = (
+/obj/structure/table/steel_reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 24
+ },
+/obj/item/storage/box/handcuffs,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"ntM" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "aeg_security_armory";
+ name = "Security Armory";
+ pixel_y = -28;
+ req_access = list(3)
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"ntZ" = (
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/civaccesshallway)
+"nun" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"nuF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/voidcraft/vertical{
+ frequency = 1381;
+ id_tag = "echidna_inner";
+ name = "External Access"
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"nuL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/glass{
+ name = "Bow Airlock"
+ },
+/turf/simulated/floor,
+/area/expoutpost/botany)
+"nvk" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"nvl" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/miningfoyer)
+"nwH" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ frequency = 1381;
+ id_tag = "baby_mammoth_outer";
+ locked = 1;
+ name = "External Access"
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1381;
+ master_tag = "baby_mammoth";
+ name = "exterior access button";
+ pixel_y = 26
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "stargazer_blast";
+ layer = 2.5;
+ name = "window blast shield"
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"nwM" = (
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 8;
+ name = "Breakroom"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/breakroom)
+"nwW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/midsternhallway)
+"nxV" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1381;
+ master_tag = "echidna";
+ name = "exterior access button";
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/door/airlock/voidcraft/vertical{
+ frequency = 1381;
+ id_tag = "echidna_outer";
+ name = "External Access"
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"nyb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/turf/simulated/wall/r_lead,
+/area/expoutpost/reactorroom)
+"nyj" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"nyv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"nyG" = (
+/obj/machinery/vending/cigarette{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"nyK" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"nyN" = (
+/obj/machinery/mineral/stacking_machine,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/miningfoyer)
+"nzu" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/starbowhallway)
+"nzB" = (
+/obj/structure/closet/secure_closet/sar,
+/obj/item/cataloguer/compact,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"nAE" = (
+/obj/structure/bed/chair/sofa/right/brown{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/bar)
+"nAP" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"nBb" = (
+/obj/machinery/computer/ship/sensors,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"nBd" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/table/marble,
+/obj/machinery/microwave{
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"nBk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/slingcarrierdock)
+"nBm" = (
+/obj/structure/table/reinforced,
+/obj/item/defib_kit/jumper_kit/loaded,
+/obj/item/robotanalyzer,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"nBE" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"nCc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/civaccesshallway)
+"nCe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"nCG" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/obj/structure/sign/warning/secure_area{
+ pixel_x = -32
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "aeg_securestorage_blastdoor";
+ name = "Secure Storage";
+ pixel_x = -24;
+ pixel_y = 8;
+ req_one_access = list(10,30)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"nDB" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/portbowairlock)
+"nDD" = (
+/obj/machinery/suit_cycler/exploration,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"nDU" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starfuelstorage)
+"nDZ" = (
+/obj/item/clothing/mask/breath,
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/head/helmet/space/void/atmos,
+/obj/item/suit_cooling_unit,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window{
+ dir = 2
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/engstorage)
+"nEn" = (
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 10
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"nEx" = (
+/obj/machinery/door/airlock/glass_research,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"nEZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"nFb" = (
+/obj/machinery/power/smes/buildable/engine_default{
+ RCon_tag = "Reactor Primary - Aegis";
+ name = "Reactor SMES - Main"
+ },
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/structure/cable/green,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/engine_setup/smes,
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"nFl" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"nFG" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"nFW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"nGu" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"nGM" = (
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/obj/structure/AIcore/deactivated,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/aicore)
+"nGV" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"nGZ" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/closet/crate/engineering,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/glass,
+/obj/item/tank/phoron,
+/obj/item/tank/phoron,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/electrical,
+/obj/item/multitool,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/geiger,
+/obj/item/clothing/glasses/goggles,
+/obj/item/clothing/glasses/goggles,
+/obj/item/t_scanner,
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/gloves/yellow,
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"nHj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/security{
+ name = "Security Desk"
+ },
+/turf/simulated/floor,
+/area/expoutpost/secbowcheckpoint)
+"nHI" = (
+/obj/structure/table/rack/shelf,
+/obj/item/multitool{
+ pixel_x = 4
+ },
+/obj/item/multitool{
+ pixel_x = -5
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"nIf" = (
+/obj/machinery/shuttle_sensor{
+ dir = 6;
+ id_tag = "shuttle3sens_exp_int"
+ },
+/turf/simulated/shuttle/wall/voidcraft/blue,
+/area/shuttle/shuttle3/start)
+"nIp" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"nIv" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/closet/l3closet/janitor,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/janitorial)
+"nIw" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"nIx" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explobriefroom)
+"nIU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"nIV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"nJl" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"nJD" = (
+/obj/structure/closet/crate,
+/obj/item/material/knife,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"nKT" = (
+/obj/machinery/computer/ship/helm,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"nLe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"nLD" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"nLN" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "exp_sling_outpost_door";
+ locked = 1;
+ name = "Carrier Sling Access";
+ req_access = list();
+ req_one_access = list(5,43,67)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/expoutpost/slingcarrierdock)
+"nLP" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 4
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portfuelstorage)
+"nLT" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"nMs" = (
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ id_tag = "echidna_hatch";
+ name = "Rear Hatch"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"nMy" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"nNi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"nOb" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/obj/machinery/medical_kiosk,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"nOj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"nOu" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/staginghangar)
+"nQe" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"nQm" = (
+/turf/simulated/floor/reinforced/airless,
+/area/space)
+"nRS" = (
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/ursula)
+"nSe" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"nSv" = (
+/obj/structure/bed/chair/bay/comfy/blue{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"nTf" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/medbaylobby)
+"nTk" = (
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_engineering_padin";
+ map_pad_link_id = "aeg_engineering_padout";
+ name = "TO - ENGINEERING"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/starqpadjunction)
+"nUL" = (
+/obj/machinery/light,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"nVg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/wall/thull,
+/area/shuttle/ursula)
+"nVw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"nVR" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/machinery/seed_storage{
+ dir = 4;
+ pixel_x = -6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/botany)
+"nWS" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/suit/space/void/medical,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/head/helmet/space/void/medical,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/door/window/southleft,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"nWY" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/telecomms)
+"nXp" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangarfour)
+"nYm" = (
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"nYH" = (
+/obj/structure/catwalk,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"nYX" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"nYZ" = (
+/obj/structure/table/standard,
+/obj/item/soap/deluxe,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/pathfinderroom)
+"nZp" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"nZD" = (
+/obj/effect/shuttle_landmark/southern_cross/sling_outpost,
+/turf/simulated/floor/reinforced/airless,
+/area/shuttle/expoutpost/site)
+"nZY" = (
+/obj/structure/table/steel,
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed,
+/obj/item/lightreplacer,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/janitorial)
+"oac" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"oao" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = -12
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"oaA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"oba" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/effect/shuttle_landmark/southern_cross/carrier/baby_mammoth_dock,
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"obN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"obS" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "ursula_dock";
+ name = "shuttle bay controller";
+ pixel_x = 29
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"ocH" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"ocQ" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 10
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/obj/effect/decal/warning_stripes,
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "aeg_enginevent_stagetwo";
+ name = "EMERGENCY Engine Vent Stage Two";
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "aeg_enginevent_stageone";
+ name = "EMERGENCY Engine Vent Stage One";
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/reactorcr)
+"odL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm1)
+"odZ" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"oeg" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"oet" = (
+/obj/machinery/shield_gen/external,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"oeA" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"ofh" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/computer/shuttle_control/explore/stargazer{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"ofo" = (
+/obj/machinery/suit_cycler/pilot,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"ofs" = (
+/obj/structure/table/rack/shelf,
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 5
+ },
+/obj/item/storage/toolbox/electrical,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"ofu" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"ohy" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/turf/space,
+/area/space)
+"oiz" = (
+/obj/structure/bed/chair/bay/comfy/green{
+ dir = 1
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -25;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"oiA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/expoutpost/botany)
+"oiD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"oiU" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"ojc" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"ojv" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"ojA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/wall/rshull,
+/area/shuttle/stargazer)
+"ojE" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"ojI" = (
+/obj/machinery/light,
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/aicore)
+"ojK" = (
+/obj/structure/ore_box,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/miningfoyer)
+"oks" = (
+/obj/structure/flora/pottedplant/drooping,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"olq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/stargazer)
+"olw" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite2)
+"olS" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"olZ" = (
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"omy" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/computer/shuttle_control/exploration{
+ dir = 4;
+ name = "Carrier Sling Control Console"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"ont" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/turf/simulated/shuttle/wall/voidcraft/no_join,
+/area/shuttle/shuttle3/start)
+"onO" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"ooz" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/mining/brace,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"ooK" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"ooQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"ope" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"opS" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"oqq" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"orR" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"osa" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"otB" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"otU" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -35
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"oue" = (
+/obj/machinery/mineral/equipment_vendor/survey,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"ouu" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"ouB" = (
+/obj/structure/sign/vacuum,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starsternairlock)
+"ouG" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"ouM" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"ovS" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/telecomms)
+"owv" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
+ },
+/obj/effect/shuttle_landmark/southern_cross/carrier/hangar_one,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"owV" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"oxi" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/door/window/southleft,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"oyD" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangarsix)
+"oyF" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ tag_east = 2;
+ tag_north = 5;
+ tag_west = 1;
+ use_power = 0
+ },
+/obj/machinery/power/emitter/gyrotron/anchored{
+ id = "Aegis Gyrotron";
+ id_tag = "Aegis Gyrotron"
+ },
+/obj/structure/cable/cyan,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"oAG" = (
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_explo_padin";
+ map_pad_link_id = "aeg_explo_padout";
+ name = "TO - EXPLORATION"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/portqpadjunction)
+"oBI" = (
+/obj/machinery/shipsensors{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/expoutpost/starboardbowairlock)
+"oBP" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"oBQ" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"oBS" = (
+/obj/structure/closet,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/obj/item/clothing/suit/armor/combat,
+/obj/item/clothing/gloves/arm_guard/combat,
+/obj/item/clothing/shoes/leg_guard/combat,
+/obj/item/clothing/head/helmet/combat,
+/obj/item/clothing/under/syndicate/combat,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"oBU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ id = "aeg_security_armory"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/secarmory)
+"oCy" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"oCB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Stern Airlock"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/uppersternhallway)
+"oCJ" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"oDM" = (
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_hangar_padin";
+ map_pad_link_id = "aeg_hangar_padout";
+ name = "TO - HANGAR BAY"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/starqpadjunction)
+"oEm" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"oEz" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_l"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/shuttle3/start)
+"oES" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/uppersternhallway)
+"oFc" = (
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"oFj" = (
+/obj/machinery/mech_recharger,
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/power/apc/hyper{
+ coverlocked = 0;
+ environ = 1;
+ equipment = 1;
+ lighting = 1;
+ locked = 0;
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/structure/cable/green,
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"oFn" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 10
+ },
+/obj/item/paper_bin,
+/obj/item/pen/red,
+/obj/item/pen/fountain,
+/obj/item/stamp/denied,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "aeg_checkpoint_shutter";
+ name = "Security Checkpoint Shutters"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"oFq" = (
+/obj/structure/bed/chair/wood{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/breakroom)
+"oFs" = (
+/turf/simulated/floor/reinforced,
+/area/expoutpost/hangarone)
+"oFP" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"oFQ" = (
+/obj/machinery/shield_capacitor,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"oFW" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portfuelstorage)
+"oGk" = (
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/needle)
+"oGt" = (
+/obj/structure/flight_right,
+/obj/machinery/button/remote/airlock{
+ desiredstate = 1;
+ dir = 8;
+ id = "expshuttle3_door_cargo";
+ name = "Rear Hatch Control";
+ pixel_x = 26;
+ req_access = list(67);
+ specialfunctions = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"oGw" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced,
+/turf/simulated/floor/plating,
+/area/expoutpost/slingcarrierdock)
+"oHs" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/valve/digital{
+ dir = 4;
+ name = "engine heating valve"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"oHt" = (
+/obj/machinery/mineral/unloading_machine{
+ icon_state = "unloader-corner"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/miningfoyer)
+"oHI" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/grass_edge{
+ dir = 1
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"oHJ" = (
+/obj/structure/railing,
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"oHX" = (
+/obj/machinery/atmospherics/pipe/simple/visible/blue,
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"oIB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/expoutpost/uppersternhallway)
+"oIE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"oKo" = (
+/obj/machinery/computer/crew{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"oKC" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"oLo" = (
+/obj/structure/table/steel,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/reagent_containers/spray/cleaner,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/janitorial)
+"oLH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"oLM" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"oMc" = (
+/obj/machinery/mecha_part_fabricator_tg,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/expoutpost/rnd)
+"oNO" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"oOD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"oON" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"oPi" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/telecomms)
+"oPH" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/expoutpost/disposals)
+"oPK" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"oQm" = (
+/obj/machinery/suit_cycler/exploration,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"oRl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"oRY" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/plating,
+/area/expoutpost/slingcarrierdock)
+"oSr" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/white/bordercorner,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"oSO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"oTL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"oUi" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/shuttle3/start)
+"oUm" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"oUN" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/random/trash,
+/obj/structure/closet/crate,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"oVi" = (
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_x = 27
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portsternairlock)
+"oVv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"oVD" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/bed/chair/bay,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"oVI" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"oWe" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/lowersternhallway)
+"oWn" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/sign/department/medbay{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"oWr" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starboardbowairlock)
+"oWP" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"oXb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"oYp" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 8
+ },
+/obj/effect/floor_decal/grass_edge{
+ dir = 4
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"oYr" = (
+/obj/structure/table/steel_reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/window/westleft{
+ name = "Security Checkpoint";
+ req_access = list(1)
+ },
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "aeg_checkpoint_shutter";
+ name = "Security Checkpoint Shutters"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"oYI" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/modular_computer/console/preset/engineering,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/engoffice)
+"oYU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"paY" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/structure/catwalk,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ frequency = 1381;
+ id_tag = "aeg_portbow_airlock";
+ pixel_y = 24
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"pbu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"pcO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"pdx" = (
+/obj/effect/floor_decal/stairs{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/staginghangar)
+"peA" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"peD" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/phoron,
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"peF" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"peS" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"pfJ" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"pgk" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
+/obj/structure/handrail,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"pgP" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/exploarmory)
+"phn" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"phx" = (
+/obj/structure/closet/walllocker_double/hydrant/south,
+/obj/item/storage/firstaid/o2,
+/obj/item/storage/firstaid/regular,
+/obj/effect/floor_decal/milspec/color/purple,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"phG" = (
+/obj/machinery/gateway/centerstation,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/gateway)
+"pia" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"pjI" = (
+/obj/machinery/smartfridge/survival_pod{
+ name = "Advanced storage"
+ },
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/clothing/glasses/welding,
+/obj/item/clothing/glasses/welding,
+/obj/item/t_scanner,
+/obj/item/t_scanner,
+/obj/item/clothing/glasses/goggles,
+/obj/item/clothing/glasses/goggles,
+/obj/item/geiger,
+/obj/item/geiger,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/multitool,
+/obj/item/multitool,
+/obj/item/tank/phoron,
+/obj/item/tank/phoron,
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/electrical,
+/obj/item/storage/toolbox/electrical,
+/obj/item/gps{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/gps{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/scanning_module,
+/obj/item/stock_parts/scanning_module,
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/manipulator,
+/obj/item/stock_parts/manipulator,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/glass/beaker,
+/obj/item/reagent_containers/glass/beaker,
+/obj/item/reagent_containers/glass/beaker,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/tank/phoron,
+/obj/item/tank/phoron,
+/obj/effect/floor_decal/milspec/color/purple,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"pko" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"pkS" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"pkU" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secureaccess)
+"plo" = (
+/obj/structure/closet/crate/engineering,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/glass,
+/obj/item/tank/phoron,
+/obj/item/tank/phoron,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/electrical,
+/obj/item/multitool,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/geiger,
+/obj/item/clothing/glasses/goggles,
+/obj/item/clothing/glasses/goggles,
+/obj/item/t_scanner,
+/obj/item/clothing/glasses/welding,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/red,
+/area/shuttle/stargazer)
+"pmr" = (
+/obj/effect/overmap/visitable/ship/landable/baby_mammoth,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"pmD" = (
+/turf/simulated/floor/reinforced,
+/area/expoutpost/hangartwo)
+"pnh" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"pnw" = (
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/table/darkglass,
+/obj/item/gps{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/gps,
+/obj/item/tank/phoron,
+/obj/item/tank/phoron,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"pnG" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"pnJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/pink/border,
+/obj/machinery/light,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"pnR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"pom" = (
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_mining_padout";
+ map_pad_link_id = "aeg_mining_padin";
+ name = "Mining Q-Pad"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/lowersternhallway)
+"ppU" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"pqm" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"pqo" = (
+/obj/structure/catwalk,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"pqJ" = (
+/obj/machinery/computer/ship/engines{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"psU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/airlock/silver{
+ id_tag = "aeg_dormone_bolt";
+ name = "Dorm One"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/expoutpost/explodorm1)
+"ptu" = (
+/obj/structure/railing,
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"pur" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/storage/box/nifsofts_pilot{
+ pixel_x = -8;
+ pixel_y = 12
+ },
+/obj/item/storage/box/cdeathalarm_kit{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/obj/item/storage/box/cdeathalarm_kit{
+ pixel_x = 8;
+ pixel_y = 3
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"pvk" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"pwx" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 6
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"pwT" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"pwY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"pxb" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/paper_bin,
+/obj/item/pen/fountain,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"pxN" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"pxZ" = (
+/obj/structure/closet/secure_closet/explorer,
+/obj/item/cataloguer,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"pyi" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"pyP" = (
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"pzz" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starsciencemaint)
+"pzF" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"pzJ" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"pzO" = (
+/turf/space,
+/area/expoutpost/portfuelstorage)
+"pzP" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1381;
+ id_tag = "shuttle3_pump"
+ },
+/obj/machinery/airlock_sensor{
+ frequency = 1381;
+ id_tag = "shuttle3_sensor";
+ pixel_y = 28
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"pzQ" = (
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/structure/table/marble,
+/obj/structure/sink/countertop{
+ dir = 4;
+ pixel_x = -5;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"pAo" = (
+/obj/machinery/vending/dinnerware{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"pBa" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"pBY" = (
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"pCz" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/turf/simulated/floor,
+/area/shuttle/needle)
+"pDu" = (
+/obj/structure/railing/overhang/waterless/grey,
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"pDV" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"pED" = (
+/obj/machinery/vending/wallmed1{
+ pixel_y = 28
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_explo_padout";
+ map_pad_link_id = "aeg_explo_padin";
+ name = "Exploration Q-Pad"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/explobriefroom)
+"pEF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"pEN" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangarone)
+"pFd" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/techstorage)
+"pGn" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"pHi" = (
+/obj/structure/table/rack,
+/obj/random/maintenance/research,
+/obj/random/medical/pillbottle,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"pHk" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/closet/crate,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/shuttle3/start)
+"pHU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"pHV" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/starbowhallway)
+"pIa" = (
+/obj/effect/floor_decal/techfloor,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"pIP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"pIV" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"pJe" = (
+/obj/machinery/power/apc/hyper{
+ coverlocked = 0;
+ environ = 1;
+ equipment = 1;
+ lighting = 1;
+ locked = 0;
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"pKM" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"pLt" = (
+/obj/structure/flora/pottedplant/decorative,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"pLx" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"pLX" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"pMk" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/techstorage)
+"pMn" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"pMu" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"pMV" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"pNA" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/turf/simulated/wall/thull,
+/area/shuttle/ursula)
+"pNT" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"pNY" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"pOJ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"pPW" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"pQt" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 5
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"pQI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"pQN" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/staginghangar)
+"pSN" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"pTp" = (
+/obj/structure/catwalk,
+/obj/machinery/light/small,
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"pTD" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"pUC" = (
+/obj/machinery/light,
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"pVg" = (
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Hangar Bay"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"pVo" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"pVA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/slingcarrierdock)
+"pVF" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(19,62,67)
+ },
+/obj/item/stack/sandbags{
+ amount = 25
+ },
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/storage/toolbox/syndicate,
+/obj/item/clothing/suit/armor/bulletproof/alt,
+/obj/item/clothing/suit/armor/bulletproof/alt,
+/obj/item/clothing/suit/armor/bulletproof/alt,
+/obj/item/clothing/suit/armor/bulletproof/alt,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"pVK" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/expoutpost/miningfoyer)
+"pWz" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"pWN" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/starqpadjunction)
+"pXp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/cic)
+"pYv" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/stationqpad)
+"pZh" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"pZA" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/shuttle/wall/voidcraft,
+/area/shuttle/shuttle3/start)
+"pZM" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/obj/structure/sign/warning/radioactive{
+ pixel_y = 32
+ },
+/turf/space,
+/area/space)
+"pZR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/slingcarrierdock)
+"qae" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"qat" = (
+/obj/structure/closet/secure_closet/pilot,
+/obj/item/cataloguer/compact,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"qaD" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/obj/machinery/shield_diffuser,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/expoutpost/starsternairlock)
+"qaG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"qaU" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"qaW" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/machinery/computer/power_monitor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/engoffice)
+"qbH" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/multitool{
+ pixel_x = 4
+ },
+/obj/item/multitool{
+ pixel_x = -5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"qbW" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"qca" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/suit/space/void/engineering,
+/obj/item/clothing/suit/space/void/engineering,
+/obj/item/clothing/head/helmet/space/void/engineering,
+/obj/item/clothing/head/helmet/space/void/engineering,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/obj/machinery/door/window/southright,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"qci" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/eva)
+"qct" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"qcz" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"qdh" = (
+/obj/structure/closet/jcloset,
+/obj/item/soap/nanotrasen,
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/janitorial)
+"qdn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/janitorial)
+"qdY" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black,
+/turf/simulated/floor/wood,
+/area/expoutpost/washroom)
+"qes" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"qeT" = (
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"qfx" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"qgo" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/starbowhallway)
+"qhi" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "aeg_gateway_access";
+ name = "Gateway Access";
+ pixel_y = 28;
+ req_one_access = list(1,5,43,67)
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"qhJ" = (
+/obj/item/paper_bin,
+/obj/item/pen/fountain,
+/obj/structure/table/wooden_reinforced,
+/obj/item/stamp/denied,
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"qhL" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/computer/med_data/laptop,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor/carpet/blue,
+/area/expoutpost/medicalbay)
+"qid" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"qig" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Research and Development"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/rndlobby)
+"qiB" = (
+/obj/effect/wingrille_spawn/reinforced_phoron,
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 9
+ },
+/obj/machinery/door/blast/radproof{
+ id = "Aeg_CoreShroud";
+ name = "Core Shroud"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"qiZ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"qjb" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/mining/brace,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"qjm" = (
+/obj/mecha/combat/fighter/pinnace/loaded,
+/obj/machinery/mech_recharger,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/portbowairlock)
+"qjE" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/handrail,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"qkj" = (
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"qkp" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Hangar - Needle"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangarfive)
+"qkO" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/wooden_reinforced,
+/obj/item/modular_computer/laptop/preset/custom_loadout/rugged,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"qkV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"qmL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"qng" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"qnt" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/closet/toolcloset,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"qnL" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"qoe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"qoJ" = (
+/obj/structure/table/marble,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "aeg_kitchen_shutter";
+ name = "Kitchen Shutter"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"qoM" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "stargazer_blast";
+ name = "window blast shield"
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"qpa" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"qpg" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "aeg_disposal_conveyor"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/disposals)
+"qpw" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"qqK" = (
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/cargo,
+/turf/simulated/floor,
+/area/expoutpost/miningfoyer)
+"qrg" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"qrm" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/wall/thull,
+/area/shuttle/ursula)
+"qrC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/slingcarrierdock)
+"qrJ" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"qrZ" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ frequency = 1381;
+ id_tag = "needle_inner";
+ locked = 1;
+ name = "Internal Access"
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1381;
+ master_tag = "needle";
+ name = "interior access button";
+ pixel_y = 26
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/needle)
+"qse" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/red,
+/area/shuttle/needle)
+"qtv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -27;
+ pixel_y = -4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/expoutpost/hangarfour)
+"qtA" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ frequency = 1381;
+ id_tag = "shuttle3_outer";
+ name = "External Access"
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1381;
+ master_tag = "shuttle3_shuttle";
+ name = "exterior access button";
+ pixel_y = 26
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/shuttle3/start)
+"qtK" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/command{
+ name = "Aegis Bridge";
+ req_one_access = list(19,62,67)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/cic)
+"qtM" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/expoutpost/slingcarrierdock)
+"quy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock{
+ name = "Joint EVA";
+ req_one_access = list(1,43,67)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"quA" = (
+/turf/simulated/floor/carpet,
+/area/expoutpost/breakroom)
+"quG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ id = "aeg_gateway_access"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/gateway)
+"quK" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"quR" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"quZ" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"qvR" = (
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Port Bow Outer Airlock"
+ },
+/obj/machinery/access_button{
+ dir = 1;
+ name = "interior access button";
+ pixel_x = -27;
+ pixel_y = 7
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/multi_tile/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starsternairlock)
+"qvS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1;
+ opacity = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"qwc" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/material/knife/machete/hatchet,
+/obj/item/material/knife/machete/hatchet,
+/obj/item/material/knife/machete/hatchet,
+/obj/item/material/minihoe,
+/obj/item/material/minihoe,
+/obj/item/material/minihoe,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/effect/floor_decal/grass_edge{
+ dir = 10
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"qwk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"qwp" = (
+/obj/structure/table/marble,
+/obj/structure/sink/countertop{
+ dir = 8;
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"qxi" = (
+/obj/machinery/shield_diffuser,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/space)
+"qxq" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/starqpadjunction)
+"qzs" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "aeg_enginevent_stageone";
+ name = "Emergency Blast Door"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/reactorroom)
+"qzM" = (
+/obj/structure/flight_left,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"qzW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"qAu" = (
+/obj/machinery/mech_recharger,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/mecha/combat/fighter/pinnace/loaded,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/starboardbowairlock)
+"qBj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/midsternhallway)
+"qCD" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"qCI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/slingcarrierdock)
+"qDn" = (
+/obj/machinery/computer/ship/navigation,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"qDv" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"qDP" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"qEJ" = (
+/obj/machinery/door/window{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/engoffice)
+"qFg" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/aicore)
+"qFz" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"qFJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/radproof{
+ dir = 8;
+ id = "aeg_enginevent_stagetwo";
+ name = "Emergency Blast Door"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/reactorroom)
+"qGj" = (
+/obj/structure/sign/redcross,
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"qGW" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Storage"
+ },
+/turf/simulated/floor,
+/area/expoutpost/engoffice)
+"qHg" = (
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"qHq" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/black{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/washroom)
+"qIh" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"qIR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"qIS" = (
+/obj/structure/table/rack/shelf,
+/obj/item/radio/off{
+ pixel_y = 6
+ },
+/obj/item/radio/off{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/radio/off{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/radio/off,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"qKg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 10
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/echidna)
+"qKs" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"qKy" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"qLe" = (
+/obj/structure/closet/secure_closet/miner{
+ pixel_x = -27
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"qLk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"qLq" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "ursula";
+ pixel_y = 26;
+ tag_airpump = "ursula_pump";
+ tag_chamber_sensor = "ursula_sensor";
+ tag_exterior_door = "ursula_outer";
+ tag_interior_door = "ursula_inner"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"qLD" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/portbowairlock)
+"qMa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "ursula_pump"
+ },
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"qMu" = (
+/obj/structure/sign/directions/cargo,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portqpadjunction)
+"qMK" = (
+/obj/structure/closet/walllocker/emerglocker{
+ dir = 1;
+ pixel_x = 25;
+ pixel_y = -32
+ },
+/obj/structure/fuel_port{
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/ursula)
+"qMV" = (
+/obj/random/maintenance/clean,
+/obj/random/tech_supply,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"qNi" = (
+/obj/structure/table/reinforced,
+/obj/item/sleevemate,
+/obj/machinery/door/window/northleft{
+ name = "Medical Office";
+ req_access = list(5)
+ },
+/turf/simulated/floor/carpet/blue,
+/area/expoutpost/medicalbay)
+"qOt" = (
+/obj/structure/table/standard,
+/obj/structure/sink{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/pathfinderroom)
+"qOD" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/stationqpad)
+"qOH" = (
+/obj/structure/dispenser,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window{
+ dir = 2
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/engstorage)
+"qPA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"qQa" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"qQn" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"qQv" = (
+/obj/machinery/door/airlock/glass_research,
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"qQU" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"qRd" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secureaccess)
+"qRu" = (
+/obj/structure/cable/cyan{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"qRP" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"qSs" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 5
+ },
+/obj/machinery/gateway{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/gateway)
+"qUx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/starbowhallway)
+"qVL" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/light,
+/obj/structure/fuel_port{
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/stargazer)
+"qWQ" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/staruppermaint)
+"qWT" = (
+/obj/structure/railing,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"qXk" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "aeg_surgery_tint"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/surgical1)
+"qYx" = (
+/obj/item/flashlight/lamp,
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"qYF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/starbowhallway)
+"qZg" = (
+/obj/fiftyspawner/glass,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled,
+/area/expoutpost/staginghangar)
+"rbp" = (
+/obj/machinery/vending/coffee{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"rbI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"rbL" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"rbM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"rbO" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/breakroom)
+"rcg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"rcn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Bow Airlock"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/eva)
+"rcx" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"rcR" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"rdi" = (
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/door/airlock/voidcraft/vertical{
+ frequency = 1381;
+ id_tag = "echidna_outer";
+ name = "External Access"
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"rdq" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"rdA" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_y = 3
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = -3
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"rdE" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"rdZ" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"ret" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/engineering{
+ name = "Shield Generator"
+ },
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"reR" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/sign/department/medbay{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"rfk" = (
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite1)
+"rfp" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"rgq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/pathfinderroom)
+"rgI" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"rgZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 12
+ },
+/obj/machinery/button/remote/airlock{
+ dir = 4;
+ id = "aeg_dormtwo_bolt";
+ name = "Door Bolt";
+ pixel_x = -24;
+ pixel_y = -14;
+ specialfunctions = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm2)
+"rhk" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite1)
+"rht" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 10
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"rhP" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"rhS" = (
+/obj/structure/closet/walllocker_double/hydrant/west,
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/stargazer)
+"rij" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"riD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"riI" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"rjo" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"rjE" = (
+/obj/machinery/computer/ship/helm,
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "stargazer_blast";
+ name = "remote blast shielding control";
+ pixel_x = -26;
+ pixel_y = -1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"rkg" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"rki" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"rkp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/echidna)
+"rku" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"rkB" = (
+/obj/structure/closet/crate/radiation,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"rlq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"rlN" = (
+/obj/structure/closet,
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"rmk" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"rnt" = (
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ target_pressure = 15000;
+ name = "engine fuel pump"
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"rnG" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/button/remote/airlock{
+ dir = 1;
+ id = "aeg_toilet1_bolt";
+ name = "Door Bolt";
+ pixel_y = -24;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"rok" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"roD" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/engstorage)
+"rpl" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"rpE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"rpN" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"rpP" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ name = "Waste to Filter"
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"rpY" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"rqg" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible,
+/obj/machinery/meter,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"rqt" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"rqW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"rrd" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"rrj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/red{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"rrl" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"rrt" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"rrE" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"rrG" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/breakroom)
+"rrM" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/structure/table/standard,
+/obj/structure/bedsheetbin,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/commanderroom)
+"rrP" = (
+/obj/machinery/power/apc/hyper{
+ coverlocked = 0;
+ dir = 4;
+ environ = 1;
+ equipment = 1;
+ lighting = 1;
+ locked = 0;
+ pixel_x = 23
+ },
+/obj/structure/panic_button{
+ pixel_y = -32
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"rrQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"rsg" = (
+/obj/structure/closet/walllocker_double/medical/west,
+/obj/item/storage/firstaid,
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/toxin,
+/obj/item/storage/firstaid/o2,
+/obj/item/roller,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"rsv" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"rsG" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/starbowhallway)
+"rti" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/starqpadjunction)
+"rto" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"rtw" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/structure/catwalk,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ frequency = 1381;
+ id_tag = "aeg_starbow_airlock";
+ pixel_y = 24
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"rum" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"ruv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"ruz" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"ruI" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portfuelstorage)
+"ruO" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"ruQ" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"rvk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"rvu" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -12;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"rvG" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"rwb" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"rwi" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/expoutpost/midsternhallway)
+"rwo" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/commanderroom)
+"rxe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/uppersternhallway)
+"rxD" = (
+/obj/structure/bed/chair/office/light,
+/turf/simulated/floor/carpet,
+/area/expoutpost/breakroom)
+"ryc" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/random/instrument,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"rzc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"rzk" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"rzu" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"rAw" = (
+/obj/item/shovel,
+/obj/item/pickaxe,
+/obj/item/tool/crowbar,
+/obj/structure/table/rack/shelf/steel,
+/obj/item/storage/firstaid/regular,
+/obj/item/clothing/accessory/permit/gun/planetside,
+/obj/item/storage/belt/utility/full,
+/obj/item/gun/energy/locked/phasegun/rifle{
+ pixel_y = -4
+ },
+/obj/item/clothing/accessory/holster/hip,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/gps/mining,
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/echidna)
+"rAJ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"rBb" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"rBJ" = (
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portfuelstorage)
+"rDG" = (
+/obj/machinery/door/airlock/medical,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"rEd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"rEv" = (
+/obj/machinery/sleep_console,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"rEw" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/breakroom)
+"rET" = (
+/obj/random/powercell,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"rEX" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"rGj" = (
+/obj/machinery/atmospherics/omni/mixer{
+ name = "Air Mixer";
+ tag_east = 1;
+ tag_east_con = 0.79;
+ tag_north = 1;
+ tag_south = 1;
+ tag_south_con = 0.21;
+ tag_west = 2
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"rGx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/portsternairlock)
+"rGI" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"rGT" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"rHJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"rIo" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"rIq" = (
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"rIT" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/uppersternhallway)
+"rIV" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/cic)
+"rIW" = (
+/obj/machinery/sleep_console,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled,
+/area/expoutpost/medicalbay)
+"rJg" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"rJq" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/atmospherics/binary/circulator{
+ anchored = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"rKa" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"rKb" = (
+/obj/machinery/computer/ship/navigation,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"rKf" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/machinery/access_button{
+ name = "interior access button";
+ pixel_x = -8;
+ pixel_y = -22
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Starboard Bow Inner Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starboardbowairlock)
+"rKg" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/steel,
+/area/expoutpost/hangartwo)
+"rKp" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"rKs" = (
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"rLo" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"rLq" = (
+/obj/structure/flora/ausbushes/grassybush,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"rLw" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/starbowhallway)
+"rLH" = (
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_science_padout";
+ map_pad_link_id = "aeg_science_padin";
+ name = "Science Q-Pad"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/rndlobby)
+"rLI" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/bed/chair/sofa/brown,
+/turf/simulated/floor/carpet,
+/area/expoutpost/bar)
+"rLT" = (
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite2)
+"rMx" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"rMA" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"rNe" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/visible,
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/effect/shuttle_landmark/southern_cross/carrier/stargazer_dock,
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"rNo" = (
+/obj/machinery/autolathe,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/expoutpost/rnd)
+"rNI" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"rOk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"rOq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"rOy" = (
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"rOE" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/floor,
+/area/shuttle/needle)
+"rOJ" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"rOU" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"rPc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Medbay Lobby"
+ },
+/turf/simulated/floor,
+/area/expoutpost/medbaylobby)
+"rPi" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/engineering{
+ name = "Auxiliary AI Core"
+ },
+/turf/simulated/floor,
+/area/expoutpost/aicore)
+"rPk" = (
+/obj/structure/table/steel_reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 24
+ },
+/obj/item/gps/security,
+/obj/item/gps/security,
+/obj/item/gps/security,
+/obj/item/gps/security,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"rPN" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"rQr" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"rQB" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/obj/structure/sign/poster/nanotrasen{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/shuttle/stargazer)
+"rQS" = (
+/obj/structure/plasticflaps/mining,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "aeg_disposal_conveyor"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/disposals)
+"rRc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/reactorcr)
+"rRn" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"rRR" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"rTW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"rUs" = (
+/obj/item/universal_translator,
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explobriefroom)
+"rUx" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/structure/catwalk,
+/obj/machinery/airlock_sensor{
+ pixel_y = 24
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"rUH" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"rVg" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"rVJ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"rWL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/silver{
+ id_tag = "aeg_seccomm_bolt";
+ name = "Security Commander's Quarters";
+ req_access = list(58);
+ req_one_access = list(19)
+ },
+/turf/simulated/floor,
+/area/expoutpost/commanderroom)
+"rXg" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/structure/bed/chair/bay,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"rXv" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"rXz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/meter,
+/obj/machinery/airlock_sensor{
+ frequency = 1381;
+ id_tag = "ursula_sensor";
+ pixel_y = 28
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/obj/effect/shuttle_landmark/southern_cross/carrier/ursula_dock,
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"rXD" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/vehicle/train/trolley/trailer{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"rZi" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"rZt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red,
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"rZG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"rZM" = (
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/aicore)
+"saI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/uppersternhallway)
+"saN" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"scj" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"scQ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"sdR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/closet/walllocker{
+ dir = 4;
+ pixel_x = 32
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm1)
+"sem" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"seo" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"sey" = (
+/turf/simulated/wall/r_lead,
+/area/expoutpost/reactorcr)
+"sfi" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/obj/machinery/power/port_gen/pacman/super/potato{
+ power_gen = 200000;
+ power_output = 4;
+ sheets = 50;
+ active = 1
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/yellow,
+/turf/simulated/floor,
+/area/expoutpost/engstorage)
+"sfB" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"sgl" = (
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"sgz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/uppersternhallway)
+"sgO" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"sgW" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secureaccess)
+"shN" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4;
+ name = "Fuel Into Main"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"sii" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/rshull,
+/area/shuttle/stargazer)
+"sim" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"sjd" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"sjA" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/starbowhallway)
+"sjW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"sjY" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"sky" = (
+/obj/machinery/power/smes/buildable/engine_default{
+ name = "Telecomms SMES"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/cable/blue{
+ icon_state = "0-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/telecomms)
+"skO" = (
+/obj/machinery/shuttle_sensor{
+ dir = 5;
+ id_tag = "shuttle3sens_exp"
+ },
+/turf/simulated/shuttle/wall/voidcraft/blue,
+/area/shuttle/shuttle3/start)
+"skS" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"smd" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"smG" = (
+/obj/structure/closet/crate{
+ name = "Phoron crate"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/item/stack/material/phoron{
+ amount = 25
+ },
+/obj/item/stack/material/phoron{
+ amount = 25
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"sot" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/shuttle/wall/voidcraft/no_join,
+/area/shuttle/shuttle3/start)
+"soJ" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/void/security,
+/obj/item/clothing/head/helmet/space/void/security,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/door/window/northleft,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"sph" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"spq" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portfuelstorage)
+"sps" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/breakroom)
+"spR" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"sqv" = (
+/obj/structure/table/steel_reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"sqB" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"sqY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"sry" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/portqpadjunction)
+"ssz" = (
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"ssF" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"stl" = (
+/obj/structure/largecrate/tits,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"stp" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"stI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"stN" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "stargazer_blast";
+ name = "window blast shield"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"suq" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/clothing/gloves/botanic_leather,
+/obj/effect/floor_decal/grass_edge{
+ dir = 5
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"svh" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/item/toy/plushie/borgplushie/drake/med{
+ name = "crisis counselor drake";
+ desc = "Whatever emergency might be upon you. Rest assured that this adorable drake plushie is here to help!"
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/cic)
+"swe" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"swn" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"swx" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"swA" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"sxd" = (
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"sxH" = (
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8;
+ name = "Refuelling Port"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starfuelstorage)
+"sxM" = (
+/obj/random/junk,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"sxY" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"szX" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"sAP" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 6
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "Aeg_EngineShroud";
+ name = "Control Room Shielding";
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "Aeg_CoreShroud";
+ name = "Core Shielding";
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/machinery/door/window/northleft{
+ name = "Blast Door Controls";
+ req_one_access = list(10)
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/reactorcr)
+"sAR" = (
+/obj/structure/sign/warning/airlock,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starsternairlock)
+"sAX" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"sBB" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 5
+ },
+/obj/item/storage/toolbox/electrical,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"sCg" = (
+/obj/structure/bed/chair/bay/shuttle,
+/obj/structure/closet/walllocker_double/medical/north,
+/obj/item/storage/firstaid/o2,
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/toxin,
+/obj/item/storage/firstaid/regular,
+/obj/item/roller,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"sCn" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Research and Development"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/rndlobby)
+"sCt" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"sCA" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"sDN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/expoutpost/botany)
+"sEi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/wall/thull,
+/area/shuttle/ursula)
+"sEA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/shuttle3/start)
+"sFf" = (
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"sFu" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"sFB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"sGU" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "stargazer_pump"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"sHQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"sIv" = (
+/obj/structure/bed/chair/sofa/corner/brown{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/bar)
+"sJe" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"sKz" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"sKO" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 12;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"sLC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"sLQ" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"sMA" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"sME" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"sNH" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"sNR" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"sOC" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance{
+ name = "Disposals Sorting"
+ },
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"sPa" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/steel_reinforced,
+/obj/machinery/door/window/eastright{
+ name = "Mining Office";
+ req_access = list(48)
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"sPb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"sPR" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"sPX" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"sQh" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"sQm" = (
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Starboard Bow Inner Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starboardbowairlock)
+"sQK" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"sQQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"sST" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"sTs" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/gateway)
+"sTt" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/starqpadjunction)
+"sTM" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "aeg_disposal_conveyor"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/disposals)
+"sTT" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/bed/chair/bay/shuttle,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"sTY" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/shuttle3/start)
+"sUH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"sUJ" = (
+/obj/effect/overmap/visitable/ship/landable/needle,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"sUK" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/starsternairlock)
+"sVd" = (
+/obj/structure/sign/warning/secure_area{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"sVJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portsternairlock)
+"sWF" = (
+/obj/machinery/door/airlock/glass_centcom{
+ req_one_access = list(67)
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"sXC" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"sXR" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/space_heater,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"sYD" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/item/geiger/wall/west,
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"sYH" = (
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"sYT" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"sZy" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ dir = 8;
+ name = "Air to Distro"
+ },
+/obj/effect/engine_setup/pump_max,
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"sZQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Engineering Office";
+ req_one_access = list(10)
+ },
+/turf/simulated/floor,
+/area/expoutpost/engoffice)
+"tac" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Port Stern Outer Airlock"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portsternairlock)
+"tam" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/eva)
+"tay" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"taQ" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"taW" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"taX" = (
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/pathfinderroom)
+"tbK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"tcb" = (
+/obj/structure/table/standard,
+/obj/item/tool/wrench,
+/obj/item/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = -4
+ },
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"tci" = (
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/airlock/engineeringatmos{
+ name = "Atmospheric System";
+ req_one_access = list(10,24)
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/engoffice)
+"tcB" = (
+/obj/machinery/power/hydromagnetic_trap,
+/obj/structure/cable/yellow,
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/expoutpost/reactorroom)
+"tcY" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"tdp" = (
+/obj/structure/table/steel_reinforced,
+/obj/fiftyspawner/rods,
+/obj/fiftyspawner/rods,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -27;
+ pixel_y = -4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"tey" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 1
+ },
+/turf/space,
+/area/space)
+"teM" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"tfd" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"tfU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"tgk" = (
+/obj/structure/table/rack/shelf,
+/obj/item/storage/belt/utility/full{
+ pixel_y = 5
+ },
+/obj/item/storage/belt/utility/full,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"tgu" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"tha" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"thw" = (
+/obj/effect/overmap/visitable/ship/landable/stargazer,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"thD" = (
+/obj/machinery/sleep_console,
+/obj/structure/sign/nosmoking_1{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/white,
+/area/shuttle/baby_mammoth)
+"thG" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"tih" = (
+/obj/structure/fuel_port{
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/red,
+/area/shuttle/needle)
+"tis" = (
+/obj/item/folder/yellow,
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explobriefroom)
+"tjd" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"tjn" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"tjX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"tll" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/secoffice)
+"tni" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"tnm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"tno" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/engineering{
+ name = "R-UST Control Room"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorcr)
+"tnB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"tnP" = (
+/obj/structure/sign/directions/engineering{
+ dir = 10
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starqpadjunction)
+"too" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 0;
+ external_pressure_bound_default = 0;
+ icon_state = "map_vent_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ internal_pressure_bound_default = 4000;
+ pressure_checks = 2;
+ pressure_checks_default = 2;
+ pump_direction = 0;
+ use_power = 1
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/washroom)
+"tou" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/computer/ship/navigation/telescreen{
+ pixel_x = -32;
+ pixel_y = -4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"tpm" = (
+/obj/structure/cable/blue{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/stargazer)
+"tpv" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/power/generator{
+ anchored = 1;
+ dir = 8
+ },
+/obj/structure/cable/yellow,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"tpw" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"tqj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/commanderroom)
+"tqk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/civaccesshallway)
+"tqQ" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"tro" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"tsj" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/techstorage)
+"ttk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"tui" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/telecomms)
+"tux" = (
+/obj/effect/floor_decal/grass_edge/corner{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"tuN" = (
+/obj/machinery/atmospherics/pipe/tank/phoron/full{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starfuelstorage)
+"tvQ" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"twI" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"twL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"twS" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/blue,
+/area/expoutpost/medicalbay)
+"txi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/disposalpipe/junction{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"tyw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/uppersternhallway)
+"tzn" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "stargazer_blast";
+ name = "window blast shield"
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"tzB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/reactorcr)
+"tAh" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/suit/space/void/atmos,
+/obj/item/clothing/head/helmet/space/void/atmos,
+/obj/item/clothing/head/helmet/space/void/atmos,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/obj/machinery/door/window/southleft,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"tAp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/midsternhallway)
+"tAt" = (
+/obj/structure/fans/tiny,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/metal{
+ dir = 1;
+ id_tag = "aeg_sauna_bolt";
+ name = "Sauna"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"tAL" = (
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"tBo" = (
+/obj/machinery/atmospherics/unary/vent_pump/engine{
+ dir = 4;
+ external_pressure_bound = 100;
+ external_pressure_bound_default = 0;
+ frequency = 1433;
+ icon_state = "map_vent_in";
+ id_tag = "aegrust_cooling_out";
+ initialize_directions = 1;
+ pump_direction = 0;
+ use_power = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/expoutpost/reactorroom)
+"tCg" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/fusion_fuel_injector/mapped{
+ dir = 8;
+ id_tag = "Aegis Fuel Injectors"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"tCM" = (
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/structure/closet,
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"tCO" = (
+/obj/machinery/honey_extractor,
+/turf/simulated/floor/tiled/steel_dirty,
+/area/expoutpost/botany)
+"tCS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"tDw" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"tEv" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor,
+/area/expoutpost/slingcarrierdock)
+"tEx" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"tEW" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/engineeringatmos{
+ name = "Atmospheric System";
+ req_one_access = list(10,24)
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"tGo" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/glasses/welding{
+ pixel_y = 5
+ },
+/obj/item/clothing/glasses/welding,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"tGt" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"tGv" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/blast/regular{
+ id = "aeg_botany_blastdoor"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/botany)
+"tGw" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan,
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"tGD" = (
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/stationqpad)
+"tHc" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"tHf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/reactorcr)
+"tHw" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "exp_sling_outpost";
+ name = "shuttle bay controller";
+ pixel_x = 30;
+ req_one_access = list();
+ tag_door = "exp_sling_outpost_door"
+ },
+/obj/effect/floor_decal/grass_edge{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"tHB" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"tHC" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"tHG" = (
+/obj/effect/overmap/visitable/ship/landable/echidna,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"tHQ" = (
+/obj/structure/sign/department/medbay{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"tIi" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"tIZ" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/portqpadjunction)
+"tJt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"tJy" = (
+/obj/item/flashlight/lamp,
+/obj/structure/table/wooden_reinforced,
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"tJC" = (
+/obj/machinery/power/quantumpad{
+ map_pad_id = "aeg_eva_padin";
+ map_pad_link_id = "aeg_eva_padout";
+ name = "TO - EVA"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/portqpadjunction)
+"tJR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"tKI" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"tKK" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Starboard Stern Outer Airlock"
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starsternairlock)
+"tKL" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/hangarone)
+"tKP" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"tKW" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/machinery/vending/medical{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"tLe" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"tLJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"tMh" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/stargazer)
+"tMo" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/hangarfive)
+"tMv" = (
+/obj/structure/bookcase/manuals/engineering,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"tML" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"tNm" = (
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/bed/chair/bay/shuttle,
+/obj/structure/panic_button{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"tNr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Hangar Bay"
+ },
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"tNO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"tNX" = (
+/obj/structure/closet/secure_closet/sar,
+/obj/item/cataloguer/compact,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"tOr" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/light,
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"tOE" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"tPJ" = (
+/obj/effect/floor_decal/techfloor,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"tQz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"tQH" = (
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm1)
+"tRS" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"tRU" = (
+/obj/machinery/vending/boozeomat,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/bar)
+"tSg" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "echidna_pump"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/structure/closet/walllocker_double/hydrant/south,
+/obj/machinery/airlock_sensor{
+ frequency = 1381;
+ id_tag = "echidna_sensor";
+ pixel_x = -25;
+ pixel_y = -1
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"tTX" = (
+/obj/structure/flora/pottedplant/aquatic,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"tTZ" = (
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"tUp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portsternairlock)
+"tUr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/starbowhallway)
+"tUV" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/blue{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/aicore)
+"tVj" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/mining/drill,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"tVt" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"tVD" = (
+/obj/machinery/mineral/equipment_vendor,
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"tVP" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"tWQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/expoutpost/botany)
+"tXk" = (
+/obj/structure/sign/warning/airlock,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portsternairlock)
+"tXN" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"tXS" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"tYc" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"tYt" = (
+/obj/structure/closet/walllocker_double/kitchen/south{
+ name = "Ration Cabinet"
+ },
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/radio{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/radio{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/effect/floor_decal/milspec/color/purple,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"tYC" = (
+/obj/random/trash_pile,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"tYF" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"tZi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/silver{
+ name = "Kitchen";
+ req_access = list(28)
+ },
+/turf/simulated/floor,
+/area/expoutpost/kitchen)
+"tZu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"tZF" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"tZL" = (
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/item/gun/energy/locked/phasegun/pistol,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 10
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(43,67)
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"ual" = (
+/obj/machinery/appliance/cooker/grill,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"uap" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"uaO" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"ubs" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "aeg_explo_armory";
+ name = "Exploration Armory";
+ pixel_x = 16;
+ pixel_y = 28;
+ req_one_access = list(43,67,5)
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"ubS" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/clothing/suit/space/void/pilot,
+/obj/item/clothing/head/helmet/space/void/pilot,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/clothing/suit/space/void/pilot,
+/obj/item/clothing/head/helmet/space/void/pilot,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"ucn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"ucP" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/expoutpost/reactorroom)
+"ucQ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"udf" = (
+/obj/machinery/computer/ship/sensors,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"udG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Hangar - Needle"
+ },
+/turf/simulated/floor,
+/area/expoutpost/hangarfive)
+"udT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"udW" = (
+/obj/machinery/light,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"ueh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/effect/landmark/start{
+ name = "Pilot"
+ },
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/explobriefroom)
+"ueM" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/staginghangar)
+"ueT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/pink/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"ufo" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"ufY" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"ugc" = (
+/obj/machinery/computer/ship/helm{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"ugO" = (
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/eva)
+"ugT" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"uhl" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"uhs" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Hangar - Echidna"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangarsix)
+"uiK" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/secbowcheckpoint)
+"ujy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"ujJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"ujM" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"uki" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/electrical,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"ulL" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"ulN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/engineering{
+ name = "R-UST Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"ulX" = (
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"umd" = (
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Port Stern Inner Airlock"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/door/firedoor/multi_tile/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portsternairlock)
+"umA" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/civaccesshallway)
+"unl" = (
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"unp" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/overhang/waterless/grey,
+/obj/effect/floor_decal/stairs{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"uot" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"uoE" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"uoI" = (
+/obj/structure/catwalk,
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/engstorage)
+"upj" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"upQ" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"upT" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ frequency = 1381;
+ id_tag = "needle_outer";
+ locked = 1;
+ name = "External Access"
+ },
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1381;
+ master_tag = "needle";
+ name = "exterior access button";
+ pixel_y = 26
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/needle)
+"upU" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/portqpadjunction)
+"upY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"uqw" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"uqJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"uqU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"uso" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"usz" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"usC" = (
+/obj/structure/sign/poster/nanotrasen{
+ dir = 4;
+ pixel_x = 32
+ },
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/echidna)
+"usS" = (
+/obj/machinery/computer/med_data{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"uug" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/engineering{
+ name = "Fuel Storage"
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"uuI" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"uuQ" = (
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"uvM" = (
+/obj/effect/floor_decal/emblem/nt1,
+/turf/simulated/floor/tiled/eris/white/techfloor,
+/area/expoutpost/slingcarrierdock)
+"uvP" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"uwE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/table/rack/shelf,
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"uwQ" = (
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"uwX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"uxa" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"uxs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"uxy" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"uxz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ frequency = 1381;
+ id_tag = "aeg_portstern_airlock";
+ pixel_x = 28
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portsternairlock)
+"uxF" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"uyH" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 24;
+ pixel_y = 32
+ },
+/obj/structure/bed/chair/bay/comfy/red{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"uzg" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"uzs" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"uzI" = (
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/stargazer)
+"uzN" = (
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite1)
+"uzW" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/medicalbay)
+"uAp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2
+ },
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/portbowhallway)
+"uAE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"uAS" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/portables_connector,
+/obj/structure/sign/poster/nanotrasen{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"uBe" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"uBG" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_y = 30
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"uBL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"uBN" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"uBQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"uCr" = (
+/turf/simulated/floor/carpet/blue,
+/area/expoutpost/medicalbay)
+"uCz" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"uCY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"uDx" = (
+/obj/machinery/atmospherics/pipe/tank/air/full{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"uEr" = (
+/obj/machinery/computer/shuttle_control/explore/needle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/needle)
+"uEZ" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portexplomaint)
+"uFv" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"uFJ" = (
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"uFO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/engi,
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"uFV" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"uIT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/portbowhallway)
+"uJB" = (
+/obj/fiftyspawner/steel,
+/obj/structure/table/reinforced,
+/turf/simulated/floor/tiled,
+/area/expoutpost/staginghangar)
+"uJM" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"uJZ" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Stern Airlock"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/uppersternhallway)
+"uKw" = (
+/obj/structure/sign/signnew/secure{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"uKT" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/gps/mining{
+ pixel_x = -5
+ },
+/obj/item/gps/mining{
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"uKY" = (
+/obj/machinery/computer/operating,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"uLs" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/random/trash,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"uLJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/silver{
+ id_tag = "aeg_pathfinderroom_bolt";
+ name = "Exploration Manager's Office";
+ req_one_access = list(62)
+ },
+/turf/simulated/floor,
+/area/expoutpost/pathfinderroom)
+"uLV" = (
+/obj/random/trash,
+/obj/structure/closet/crate,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"uNn" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"uNB" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"uNY" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"uOk" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"uOo" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/obj/item/geiger/wall/east,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"uOu" = (
+/obj/structure/closet/secure_closet/pilot,
+/obj/item/cataloguer/compact,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"uOM" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 12;
+ pixel_y = 24
+ },
+/obj/machinery/button/windowtint{
+ id = "aeg_surgery_tint";
+ pixel_x = -10;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"uOR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"uPJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/black{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"uPN" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/spaceflare,
+/obj/item/spaceflare{
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"uPU" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/blue,
+/area/expoutpost/medicalbay)
+"uQg" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"uQs" = (
+/obj/machinery/atmospherics/unary/engine/bigger{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/echidna)
+"uQJ" = (
+/obj/structure/cable/yellow{
+ icon_state = "2-8"
+ },
+/obj/machinery/air_sensor{
+ frequency = 1433;
+ id_tag = "aegrustengine_sensor";
+ output = 63
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/expoutpost/reactorroom)
+"uQT" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"uQX" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/suit_cooling_unit,
+/obj/item/suit_cooling_unit,
+/obj/item/suit_cooling_unit,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"uRt" = (
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(43,67)
+ },
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"uRJ" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/expoutpost/botany)
+"uSj" = (
+/obj/machinery/suit_cycler/medical,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"uSL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"uSR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/bed/chair/bay/shuttle,
+/obj/structure/sign/poster/nanotrasen{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"uTc" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/suit/space/void/medical,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/head/helmet/space/void/medical,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/door/window/southright,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"uTM" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"uUc" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"uUX" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsternairlock)
+"uVx" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secureaccess)
+"uWq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm1)
+"uWt" = (
+/obj/structure/cable/cyan{
+ icon_state = "0-4"
+ },
+/obj/machinery/fusion_fuel_compressor{
+ pixel_x = -2
+ },
+/obj/machinery/door/window,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"uWu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"uWA" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangarfive)
+"uWT" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/airlock_sensor{
+ frequency = 1381;
+ id_tag = "stargazer_sensor";
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1381;
+ id_tag = "stargazer_pump"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"uWW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"uXj" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"uXM" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"uYh" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/random/maintenance/medical,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"uYX" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "baby_mammoth_dock";
+ name = "shuttle bay controller";
+ pixel_x = -29
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"uZt" = (
+/obj/effect/floor_decal/grass_edge,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"uZC" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/civaccesshallway)
+"uZP" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 12;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"uZX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portfuelstorage)
+"vam" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"vaT" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"vbE" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/overhang/waterless/grey,
+/obj/effect/floor_decal/stairs{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"vcu" = (
+/obj/machinery/light,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm1)
+"veb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"ved" = (
+/obj/machinery/atmospherics/pipe/simple/visible/green{
+ dir = 4
+ },
+/obj/structure/cable/cyan{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"vei" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"veB" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/gatewayeva)
+"vfb" = (
+/obj/machinery/atmospherics/pipe/simple/visible/cyan{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"vfc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"vfl" = (
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/structure/cable/green,
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"vfm" = (
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/telecomms)
+"vfq" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"vfD" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/space,
+/area/expoutpost/reactorroom)
+"vgp" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starfuelstorage)
+"viN" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "aegis_ore_conveyor"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/miningfoyer)
+"vjn" = (
+/obj/structure/table/standard,
+/obj/structure/bedsheetbin,
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"vjv" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"vjZ" = (
+/obj/machinery/door/blast/regular{
+ id = "aeg_disposal_driver"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/disposals)
+"vkp" = (
+/obj/machinery/atmospherics/binary/pump/on{
+ name = "Waste Compresser"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/engine_setup/pump_max,
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"vlk" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"vlu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"vlN" = (
+/obj/structure/table/steel_reinforced,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 6
+ },
+/obj/machinery/photocopier/faxmachine,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"vlO" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portsternairlock)
+"vlP" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"vmL" = (
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/shipsensors,
+/turf/simulated/floor,
+/area/shuttle/needle)
+"vmY" = (
+/obj/structure/closet/crate/radiation,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"vnd" = (
+/obj/machinery/optable,
+/turf/simulated/floor/tiled/white,
+/area/shuttle/baby_mammoth)
+"vnD" = (
+/obj/vehicle/train/rover/engine{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"vnP" = (
+/obj/item/modular_computer/console/preset/command,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"voo" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump{
+ external_pressure_bound = 140;
+ external_pressure_bound_default = 140;
+ icon_state = "map_vent_out";
+ pressure_checks = 0;
+ pressure_checks_default = 0;
+ use_power = 1
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/obj/machinery/button/windowtint{
+ id = "aeg_sauna_tint";
+ name = "Sauna window tint";
+ pixel_x = 12;
+ pixel_y = 24
+ },
+/obj/machinery/button/remote/airlock{
+ id = "aeg_sauna_bolt";
+ name = "Door Bolt";
+ pixel_x = -16;
+ pixel_y = 24;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/washroom)
+"voF" = (
+/obj/structure/bed/chair/bay/shuttle,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 24;
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/ursula)
+"voN" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"vpd" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"vpC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"vpK" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"vqb" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/turf/simulated/floor,
+/area/expoutpost/civaccesshallway)
+"vqe" = (
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -12;
+ pixel_y = -24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"vqv" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"vrY" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"vsz" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ name = "shuttle bay controller";
+ pixel_x = 29;
+ id_tag = "needle_dock"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"vsC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"vsL" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"vsW" = (
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"vtK" = (
+/obj/machinery/power/shield_generator/charged{
+ field_radius = 8;
+ initial_shield_modes = 2153;
+ target_radius = 8
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"vuc" = (
+/obj/machinery/shuttle_sensor{
+ id_tag = "shuttle3sens_exp_psg"
+ },
+/turf/simulated/shuttle/wall/voidcraft,
+/area/shuttle/shuttle3/start)
+"vuv" = (
+/obj/structure/catwalk,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/engineering{
+ name = "Shield Generator"
+ },
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"vuJ" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/structure/table/steel_reinforced,
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/obj/machinery/photocopier/faxmachine,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"vvJ" = (
+/obj/structure/table/glass,
+/obj/item/defib_kit/loaded,
+/obj/structure/closet/walllocker_double/medical/south,
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/regular,
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/firstaid/o2,
+/obj/item/storage/firstaid/surgery,
+/obj/item/storage/firstaid/adv,
+/turf/simulated/floor/tiled/white,
+/area/shuttle/baby_mammoth)
+"vvK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/expoutpost/botany)
+"vwf" = (
+/obj/machinery/recharger,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/woodentable,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"vwg" = (
+/obj/machinery/mineral/input,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "aegis_ore_conveyor"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/miningfoyer)
+"vwE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/uppersternhallway)
+"vxc" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ frequency = 1381;
+ id_tag = "echidna_pump"
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1381;
+ id_tag = "echidna";
+ pixel_y = 26;
+ tag_airpump = "echidna_pump";
+ tag_chamber_sensor = "echidna_sensor";
+ tag_exterior_door = "echidna_outer";
+ tag_interior_door = "echidna_inner"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"vxd" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"vxK" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 32
+ },
+/obj/structure/bed/chair/bay/shuttle,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"vxS" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_y = -30
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"vxU" = (
+/turf/simulated/wall/r_lead,
+/area/expoutpost/reactorroom)
+"vyh" = (
+/obj/machinery/vending/snack{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"vyZ" = (
+/obj/structure/table/standard,
+/obj/structure/sink{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite2)
+"vAE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"vBV" = (
+/obj/structure/table/rack/shelf,
+/obj/item/radio{
+ pixel_x = -4;
+ pixel_y = 5
+ },
+/obj/item/radio{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/radio{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/radio{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"vCa" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/explodorm1)
+"vCw" = (
+/obj/machinery/gateway,
+/obj/effect/floor_decal/techfloor/orange,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/gateway)
+"vCN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/starbowhallway)
+"vDi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"vDT" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/closet/crate/freezer/rations,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/obj/random/maintenance/research,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"vEd" = (
+/obj/structure/bed/chair/bay/shuttle,
+/obj/structure/closet/walllocker_double/kitchen/north{
+ name = "Ration Cabinet"
+ },
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/radio{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/radio{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/stargazer)
+"vEk" = (
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"vEr" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"vFc" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 8
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"vGC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/expoutpost/botany)
+"vGF" = (
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"vGM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"vHq" = (
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"vIv" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/reinforced/airless,
+/area/expoutpost/starboardbowairlock)
+"vJd" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 21
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"vJh" = (
+/obj/machinery/firealarm{
+ layer = 3.3;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"vJo" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"vJp" = (
+/obj/structure/closet/crate{
+ name = "Tritium Storage"
+ },
+/obj/item/fuel_assembly/tritium,
+/obj/item/fuel_assembly/tritium,
+/obj/item/fuel_assembly/tritium,
+/obj/item/fuel_assembly/tritium,
+/obj/machinery/door/window,
+/obj/structure/window/reinforced,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"vJw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/binary/pump/high_power/on{
+ target_pressure = 15000;
+ dir = 1;
+ name = "shuttle fuel pump"
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"vKc" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"vKd" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "stargazer_blast";
+ name = "window blast shield"
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"vKk" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"vLt" = (
+/obj/machinery/atmospherics/unary/engine/bigger{
+ dir = 1
+ },
+/turf/space,
+/area/expoutpost/portfuelstorage)
+"vLz" = (
+/obj/machinery/door/airlock/vault{
+ name = "Bridge Saferoom";
+ req_one_access = list(19,62,67)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/blast/regular{
+ dir = 8;
+ id = "aeg_bridge_saferoom"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/cic)
+"vLN" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"vLQ" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"vMd" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"vMj" = (
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"vMl" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/bed/chair/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"vMu" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ frequency = 1381;
+ id_tag = "stargazer_inner";
+ name = "Internal Access"
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1381;
+ master_tag = "stargazer";
+ name = "interior access button";
+ pixel_y = -26
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/stargazer)
+"vMv" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"vNa" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"vNj" = (
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/effect/floor_decal/grass_edge{
+ dir = 8
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"vNW" = (
+/obj/structure/table/marble,
+/obj/machinery/microwave,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"vOo" = (
+/obj/effect/floor_decal/borderfloorwhite/corner,
+/obj/effect/floor_decal/corner/paleblue/bordercorner,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"vOu" = (
+/turf/simulated/wall/thull,
+/area/shuttle/ursula)
+"vOM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"vPp" = (
+/obj/machinery/door/airlock/glass_centcom,
+/turf/simulated/floor/tiled/white,
+/area/shuttle/baby_mammoth)
+"vPw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/portbowhallway)
+"vPD" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"vQf" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"vQj" = (
+/obj/structure/table/marble,
+/obj/machinery/reagentgrinder{
+ pixel_x = 6;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/food/condiment/enzyme,
+/obj/item/reagent_containers/glass/beaker{
+ pixel_x = 5
+ },
+/obj/item/reagent_containers/dropper,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"vQn" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/red,
+/area/shuttle/stargazer)
+"vQy" = (
+/obj/machinery/door/firedoor/glass,
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "aeg_sauna_tint"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/washroom)
+"vQA" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"vQD" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"vQR" = (
+/obj/structure/closet/secure_closet/pathfinder,
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"vQT" = (
+/obj/structure/table/rack/shelf,
+/obj/item/stack/marker_beacon/thirty,
+/obj/item/stack/marker_beacon/thirty,
+/obj/item/stack/marker_beacon/thirty,
+/obj/item/stack/marker_beacon/thirty,
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"vRM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"vRX" = (
+/obj/structure/table/rack{
+ dir = 8;
+ layer = 2.6
+ },
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/tank/jetpack/oxygen,
+/obj/item/tank/jetpack/oxygen,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"vTc" = (
+/obj/item/clothing/accessory/stethoscope,
+/obj/structure/table/standard,
+/obj/item/flashlight/pen,
+/obj/item/clothing/glasses/hud/health,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"vTh" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/shoes/boots/combat,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"vTm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"vTV" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -22
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"vUf" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"vUT" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"vUX" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"vVH" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"vVN" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"vWj" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ icon_state = "door_locked";
+ id_tag = "expshuttle3_door_L";
+ locked = 1;
+ name = "shuttle side hatch"
+ },
+/obj/machinery/button/remote/airlock{
+ id = "expshuttle3_door_L";
+ name = "Side Hatch Control";
+ pixel_y = -26;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/shuttle3/start)
+"vWD" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"vWE" = (
+/obj/machinery/vending/hydronutrients{
+ dir = 4;
+ pixel_x = -6
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/botany)
+"vXd" = (
+/obj/effect/floor_decal/steeldecal/steel_decals10,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 4
+ },
+/obj/machinery/shower{
+ pixel_y = 16
+ },
+/obj/structure/curtain/open/shower,
+/obj/machinery/door/window/eastright,
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"vXA" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/restrooms)
+"vXP" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"vYi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/pink/border,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"vYC" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"vZP" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"vZR" = (
+/obj/random/trash,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"wai" = (
+/obj/structure/closet,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"waj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"wbs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/silver{
+ name = "Washroom"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/expoutpost/washroom)
+"wbC" = (
+/obj/machinery/suit_cycler/engineering,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window{
+ dir = 2
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/engstorage)
+"wcE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"wcO" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/computer/rdconsole_tg{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/rnd)
+"wcR" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/starboardbowairlock)
+"wcS" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/door/airlock/glass_external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Starboard Bow Outer Airlock"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/starboardbowairlock)
+"wcU" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"wdf" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/orangedouble,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/structure/curtain/open/bed,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm2)
+"wdS" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/kitchen)
+"wdW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "baby_mammoth_pump"
+ },
+/obj/machinery/light,
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"wed" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/gatewayeva)
+"wer" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/reinforced,
+/area/expoutpost/aicore)
+"wey" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1381;
+ master_tag = "baby_mammoth";
+ name = "interior access button";
+ pixel_y = 26
+ },
+/obj/machinery/door/airlock/voidcraft/vertical{
+ frequency = 1381;
+ id_tag = "baby_mammoth_inner";
+ locked = 1;
+ name = "Internal Access"
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"weH" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"wfK" = (
+/obj/structure/table/rack,
+/obj/random/maintenance,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"wfX" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"wgt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 5
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starfuelstorage)
+"wha" = (
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secureaccess)
+"whh" = (
+/obj/structure/closet,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/item/storage/bag/circuits/basic,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"whk" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"wiB" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"wiZ" = (
+/obj/structure/sign/vacuum,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portsternairlock)
+"wja" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/midsternhallway)
+"wjm" = (
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/stationqpad)
+"wjr" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/expoutpost/uppersternhallway)
+"wjD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"wjH" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"wjJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"wjK" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"wkl" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"wkI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"wkV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"wkZ" = (
+/obj/item/wheelchair,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"wlg" = (
+/obj/machinery/power/thermoregulator,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"wlq" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/engoffice)
+"wlw" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"wlz" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 5
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"wlO" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"wmN" = (
+/obj/machinery/computer/atmos_alert{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/blue/border,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/cic)
+"woc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"woo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"wpp" = (
+/obj/structure/closet,
+/obj/item/clothing/under/bathrobe,
+/obj/item/clothing/under/bathrobe,
+/obj/item/clothing/under/bathrobe,
+/obj/item/towel/random,
+/obj/item/towel/random,
+/obj/item/towel/random,
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"wrQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/stationqpad)
+"wsb" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/civaccesshallway)
+"wsr" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/adv{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/o2{
+ pixel_x = 5
+ },
+/obj/item/storage/firstaid/fire{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/toxin{
+ pixel_x = -5
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"wsU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ id = "aeg_security_armory"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/secarmory)
+"wsW" = (
+/obj/structure/bed/chair/wood,
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"wte" = (
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(43,67)
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"wtr" = (
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Hangar - Ursula"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/hangarthree)
+"wtu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "aeg_enginevent_stageone";
+ name = "Emergency Blast Door"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/reactorroom)
+"wtv" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 4
+ },
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"wtH" = (
+/obj/machinery/mass_driver{
+ id = "aeg_disposal_driver"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/disposals)
+"wuo" = (
+/obj/effect/floor_decal/grass_edge,
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"wuT" = (
+/obj/machinery/atmospherics/unary/engine/bigger{
+ dir = 1
+ },
+/turf/space,
+/area/expoutpost/starfuelstorage)
+"wvP" = (
+/obj/structure/closet/crate,
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"wvY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"wwc" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"wwe" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/blue,
+/area/expoutpost/medicalbay)
+"wwm" = (
+/obj/structure/railing,
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"www" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/botany)
+"wwD" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"wwH" = (
+/obj/machinery/atmospherics/binary/pump,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"wxi" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/brown/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"wyr" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"wzy" = (
+/obj/structure/table/rack/shelf,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 5
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"wzz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"wzH" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"wAf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"wAm" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"wAz" = (
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/bar)
+"wBw" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"wCz" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portbowhallway)
+"wCK" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 4
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"wCU" = (
+/obj/structure/cable/cyan{
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"wDi" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"wDU" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portbowairlock)
+"wEC" = (
+/obj/structure/railing/grey,
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starbowhallway)
+"wFa" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"wFp" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"wFq" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"wHM" = (
+/obj/structure/table/standard,
+/obj/item/soap/deluxe,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/commanderroom)
+"wIi" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portbowairlock)
+"wIt" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/signnew/radiation{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/reactorcr)
+"wJf" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/shuttle/plating,
+/area/shuttle/shuttle3/start)
+"wJJ" = (
+/obj/machinery/bodyscanner,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled,
+/area/expoutpost/medicalbay)
+"wKr" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"wKB" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"wLJ" = (
+/obj/machinery/door/airlock/glass_centcom,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"wLS" = (
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/janitorial)
+"wMp" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"wMw" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"wMF" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"wMQ" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Q-Pad Junction"
+ },
+/turf/simulated/floor,
+/area/expoutpost/starqpadjunction)
+"wNc" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/obj/item/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -21
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"wNt" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/brown/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"wOb" = (
+/obj/structure/table/rack/shelf,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/storage/briefcase/inflatable,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"wOA" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/item/radio/intercom/department/security{
+ dir = 4;
+ pixel_x = 21
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"wPD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/reactorroom)
+"wPO" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/medbaylobby)
+"wPQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/paleblue/border,
+/obj/machinery/light,
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"wQf" = (
+/obj/effect/floor_decal/industrial/warning/cee,
+/obj/machinery/power/apc/hyper{
+ coverlocked = 0;
+ environ = 1;
+ equipment = 1;
+ lighting = 1;
+ locked = 0;
+ pixel_y = -24
+ },
+/obj/structure/cable/green,
+/obj/structure/closet/crate/engineering,
+/obj/item/t_scanner,
+/obj/item/clothing/glasses/welding,
+/obj/item/geiger,
+/obj/item/clothing/glasses/goggles,
+/obj/item/clothing/glasses/goggles,
+/obj/item/storage/briefcase/inflatable,
+/obj/item/multitool,
+/obj/item/storage/toolbox/electrical,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/tank/phoron,
+/obj/item/tank/phoron,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/steel,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/red,
+/area/shuttle/needle)
+"wQA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden,
+/obj/effect/floor_decal/borderfloorwhite/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"wQW" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"wRh" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/lowersternhallway)
+"wRB" = (
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/echidna)
+"wSp" = (
+/obj/structure/closet/crate,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"wSC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"wTp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/expoutpost/starfuelstorage)
+"wTs" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portuppermaint)
+"wTy" = (
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"wUy" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/janitorial)
+"wVi" = (
+/obj/structure/table/standard,
+/obj/structure/bedsheetbin,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite2)
+"wVk" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/belt/utility/full{
+ pixel_y = 5
+ },
+/obj/item/storage/belt/utility/full,
+/obj/effect/floor_decal/borderfloorwhite,
+/obj/effect/floor_decal/corner/purple/border,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rnd)
+"wVN" = (
+/obj/vehicle/train/engine{
+ dir = 2
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"wVQ" = (
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"wWa" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 12;
+ pixel_y = 24
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"wWs" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/cic)
+"wWJ" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"wYs" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarone)
+"wYw" = (
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/mask/breath,
+/obj/item/suit_cooling_unit,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/clothing/suit/space/void/exploration,
+/obj/item/clothing/head/helmet/space/void/exploration,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"wYD" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"wZI" = (
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"xab" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/midsternhallway)
+"xau" = (
+/obj/machinery/atmospherics/omni/atmos_filter{
+ name = "N2/O2 Filter";
+ tag_east = 4;
+ tag_north = 3;
+ tag_south = 2;
+ tag_west = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"xaA" = (
+/obj/structure/railing,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"xaM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/pathfinderroom)
+"xbm" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"xbq" = (
+/obj/machinery/door/airlock{
+ id_tag = "aeg_toilet2_bolt";
+ name = "Unit 2"
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/restrooms)
+"xbV" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"xcO" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"xcU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/midsternhallway)
+"xdh" = (
+/obj/structure/closet/emcloset,
+/obj/random/cash,
+/obj/random/cash,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"xeB" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass{
+ name = "Bow Airlock"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/starbowhallway)
+"xeC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"xeN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/shuttle/shuttle3/start)
+"xeV" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/baby_mammoth)
+"xfg" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/expoutpost/portsternairlock)
+"xfE" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/green/bordercorner,
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"xfY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"xgb" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/bordercorner{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "north bump";
+ pixel_y = 24
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_x = 12;
+ pixel_y = 24
+ },
+/obj/machinery/button/remote/airlock{
+ id = "aeg_reactor_bolt";
+ name = "Reactor Door Bolt";
+ pixel_x = -13;
+ pixel_y = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/reactorcr)
+"xgp" = (
+/obj/effect/floor_decal/grass_edge,
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"xgL" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"xhJ" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"xic" = (
+/obj/structure/table/reinforced,
+/obj/item/gps{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/gps,
+/obj/structure/closet/walllocker_double/kitchen/east,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/obj/item/storage/mre/random,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"xii" = (
+/obj/structure/cable/blue{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/bluegrid,
+/area/expoutpost/telecomms)
+"xil" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = 24;
+ pixel_y = -12
+ },
+/obj/structure/cable/green{
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"xit" = (
+/obj/structure/closet/secure_closet/explorer,
+/obj/item/cataloguer,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"xiP" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medbaylobby)
+"xiR" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/northright{
+ name = "Medical Office";
+ req_access = list(5)
+ },
+/turf/simulated/floor/carpet/blue,
+/area/expoutpost/medicalbay)
+"xjr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/silver{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "IN CONSTRUCTION"
+ },
+/obj/item/tape/engineering,
+/turf/simulated/floor,
+/area/expoutpost/stationqpad)
+"xku" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"xkN" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8;
+ name = "Refuelling Port"
+ },
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"xkR" = (
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/portqpadjunction)
+"xkW" = (
+/obj/structure/railing,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"xkY" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 1
+ },
+/turf/simulated/shuttle/wall/voidcraft/hard_corner,
+/area/shuttle/ursula)
+"xme" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/starbowhallway)
+"xmx" = (
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"xnj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/glass{
+ name = "Bow Airlock"
+ },
+/turf/simulated/floor,
+/area/expoutpost/civaccesshallway)
+"xnk" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/green/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"xno" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"xnC" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/marble,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"xnF" = (
+/obj/structure/table/rack/shelf,
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed{
+ pixel_y = 11
+ },
+/obj/item/lightreplacer,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"xnV" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/floor,
+/area/shuttle/shuttle3/start)
+"xoH" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"xoX" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfour)
+"xpr" = (
+/obj/machinery/light/small,
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/starsciencemaint)
+"xpt" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"xpM" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"xqa" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"xqq" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/red{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/floor,
+/area/expoutpost/portfuelstorage)
+"xqU" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/portlowermaint)
+"xrx" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/door/window/northleft{
+ name = "Engineering Office";
+ req_one_access = list(10)
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"xrQ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/uppersternhallway)
+"xsc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"xss" = (
+/obj/machinery/suit_cycler/engineering,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"xsP" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/techstorage)
+"xsZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/expoutpost/gateway)
+"xtc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite1)
+"xtd" = (
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"xtT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/staginghangar)
+"xua" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secoffice)
+"xuz" = (
+/obj/machinery/atmospherics/unary/engine/bigger{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/ursula)
+"xvk" = (
+/obj/structure/catwalk,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/green{
+ icon_state = "2-4"
+ },
+/turf/simulated/floor,
+/area/expoutpost/portuppermaint)
+"xvv" = (
+/obj/structure/bookcase/manuals/research_and_development,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"xvx" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/microwave,
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"xwe" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"xwl" = (
+/turf/simulated/floor/reinforced,
+/area/expoutpost/hangarfive)
+"xwm" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"xwv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"xwL" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible,
+/obj/machinery/meter,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/blue{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"xxd" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/button/remote/airlock{
+ dir = 4;
+ id = "aeg_suitetwo_bolt";
+ name = "Door Bolt";
+ pixel_x = -24;
+ pixel_y = 8;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"xxo" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/reactorcr)
+"xxw" = (
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/white/bordercorner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/breakroom)
+"xxE" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"xyF" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4;
+ name = "Fuel Into Main"
+ },
+/obj/machinery/portable_atmospherics/canister/air/airlock,
+/turf/simulated/floor,
+/area/expoutpost/portsternairlock)
+"xyR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/silver{
+ name = "Suite One Bathroom"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite1)
+"xyV" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "aeg_bar_shutter";
+ name = "Bar Shutter"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/bar)
+"xyY" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 9
+ },
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "aeg_checkpoint_shutter";
+ name = "Security Checkpoint Shutters"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"xzH" = (
+/obj/machinery/shipsensors,
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor,
+/area/shuttle/ursula)
+"xzP" = (
+/obj/machinery/atmospherics/binary/algae_farm/filled{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"xzZ" = (
+/obj/effect/mist,
+/obj/machinery/light/small,
+/turf/simulated/floor/water/pool,
+/area/expoutpost/washroom)
+"xBb" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/shuttle/wall/voidcraft/hard_corner,
+/area/shuttle/ursula)
+"xBG" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarfive)
+"xBS" = (
+/obj/machinery/floodlight,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/orange/border,
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"xCv" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/obj/structure/bed/chair/wood,
+/turf/simulated/floor/wood,
+/area/expoutpost/bar)
+"xCA" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 10
+ },
+/obj/machinery/gateway{
+ density = 0;
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/expoutpost/gateway)
+"xDx" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"xDK" = (
+/obj/structure/fans/tiny,
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/black{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/expoutpost/washroom)
+"xEV" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"xFv" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24
+ },
+/obj/structure/cable/green,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = 24;
+ pixel_y = -12
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"xFy" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/echidna)
+"xFz" = (
+/obj/machinery/vending/cola{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"xFR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/echidna)
+"xGP" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/orange/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/techstorage)
+"xHV" = (
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/structure/panic_button{
+ pixel_x = 32
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/yellow,
+/area/shuttle/echidna)
+"xIx" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"xIR" = (
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/purple/border{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/starqpadjunction)
+"xJp" = (
+/obj/structure/closet/secure_closet/explorer,
+/obj/item/cataloguer,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"xJr" = (
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"xJE" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/structure/cable/green,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 12
+ },
+/obj/machinery/button/remote/airlock{
+ dir = 4;
+ id = "aeg_dormone_bolt";
+ name = "Door Bolt";
+ pixel_x = -24;
+ pixel_y = -14;
+ specialfunctions = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet,
+/area/expoutpost/explodorm1)
+"xJG" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"xJS" = (
+/obj/structure/cable/yellow{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engstorage)
+"xJU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/commanderroom)
+"xKe" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/surgery,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/pink/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/surgical1)
+"xKp" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secureaccess)
+"xKG" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor,
+/area/expoutpost/portexplomaint)
+"xKO" = (
+/obj/machinery/mecha_part_fabricator_tg/prosthetics,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled,
+/area/expoutpost/rnd)
+"xKW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"xLb" = (
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/commanderroom)
+"xLf" = (
+/obj/structure/railing,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"xLr" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_r"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/shuttle3/start)
+"xLz" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"xLO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/glass{
+ name = "Bow Airlock"
+ },
+/turf/simulated/floor,
+/area/expoutpost/starbowhallway)
+"xMn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"xMu" = (
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/turf/simulated/floor,
+/area/shuttle/echidna)
+"xOk" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/alarm{
+ dir = 8;
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/starsternairlock)
+"xOt" = (
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/obj/machinery/papershredder,
+/obj/machinery/button/remote/airlock{
+ dir = 8;
+ id = "aeg_pathfinderroom_bolt";
+ name = "Door Bolt";
+ pixel_x = 24;
+ pixel_y = -8;
+ specialfunctions = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/pathfinderroom)
+"xOL" = (
+/obj/structure/sign/directions/eva{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/portqpadjunction)
+"xOX" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/lowersternhallway)
+"xPj" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,
+/obj/machinery/button/remote/airlock{
+ desiredstate = 1;
+ dir = 4;
+ id = "expshuttle4_door_cargo";
+ name = "Rear Hatch Control";
+ pixel_x = -26;
+ req_access = list(67);
+ specialfunctions = 4
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "stargazer_blast";
+ layer = 2.5;
+ name = "window blast shield"
+ },
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ icon_state = "door_locked";
+ id_tag = "expshuttle4_door_cargo";
+ locked = 1
+ },
+/turf/simulated/floor,
+/area/shuttle/baby_mammoth)
+"xPS" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/suite2)
+"xPV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/table/steel,
+/obj/item/storage/box/mousetraps,
+/obj/item/storage/box/mousetraps,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/janitorial)
+"xQa" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/kitchen)
+"xQB" = (
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 9
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 9
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(43,67)
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/exploarmory)
+"xQE" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 8
+ },
+/obj/structure/shuttle/engine/heater,
+/turf/simulated/wall/rpshull,
+/area/shuttle/baby_mammoth)
+"xQK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangartwo)
+"xQZ" = (
+/obj/structure/cable/blue{
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/telecomms)
+"xRr" = (
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"xRS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starfuelstorage)
+"xRT" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 8
+ },
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/botany)
+"xRY" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/engoffice)
+"xSb" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"xTc" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"xTw" = (
+/obj/machinery/light,
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shuttle/baby_mammoth)
+"xTO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"xUc" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarsix)
+"xUo" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering EVA"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/eva)
+"xUr" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/gloves/yellow,
+/obj/item/clothing/gloves/yellow{
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"xUv" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"xUz" = (
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite1)
+"xVb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/rndlobby)
+"xVq" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 10
+ },
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"xVG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/stationqpad)
+"xVS" = (
+/obj/structure/table/standard,
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"xWl" = (
+/obj/structure/bookcase/manuals/xenoarchaeology,
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/explobriefroom)
+"xWP" = (
+/obj/machinery/atmospherics/pipe/tank/oxygen{
+ dir = 1
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"xXH" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/red/border,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "aeg_checkpoint_shutter";
+ name = "Security Checkpoint Shutters";
+ pixel_x = 6;
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/secbowcheckpoint)
+"xYT" = (
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"xZD" = (
+/obj/structure/cable/cyan{
+ icon_state = "1-2"
+ },
+/obj/machinery/power/sensor{
+ name = "Powernet Sensor - Carrier Reactor Power";
+ name_tag = "Carrier Reactor Power"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/engineering{
+ name = "R-UST Access"
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactoraccess)
+"yad" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"yaj" = (
+/obj/machinery/atmospherics/pipe/simple/visible/blue{
+ dir = 5
+ },
+/turf/simulated/floor,
+/area/expoutpost/atmospherics)
+"yam" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"yaq" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/paper_bin,
+/obj/item/pen/fountain,
+/obj/machinery/door/window/eastleft{
+ name = "Mining Office";
+ req_access = list(48)
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/miningfoyer)
+"yat" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/slingcarrierdock)
+"ybG" = (
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4;
+ name = "Refuelling Port"
+ },
+/turf/simulated/floor/reinforced,
+/area/expoutpost/portfuelstorage)
+"ybK" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/green{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor,
+/area/expoutpost/reactorroom)
+"ycc" = (
+/obj/structure/catwalk,
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/floor,
+/area/expoutpost/starboardbowairlock)
+"yck" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled,
+/area/expoutpost/medicalbay)
+"ycS" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/microwave,
+/turf/simulated/floor/carpet,
+/area/expoutpost/suite2)
+"ydk" = (
+/obj/random/trash,
+/turf/simulated/floor,
+/area/expoutpost/starlowermaint)
+"ydq" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/wall/r_wall,
+/area/expoutpost/starfuelstorage)
+"ydX" = (
+/obj/structure/catwalk,
+/obj/machinery/alarm{
+ dir = 4;
+ pixel_x = -22
+ },
+/obj/machinery/conveyor_switch/oneway{
+ id = "aeg_disposal_conveyor"
+ },
+/obj/machinery/button/remote/driver{
+ id = "aeg_disposal_driver";
+ pixel_y = -24
+ },
+/turf/simulated/floor,
+/area/expoutpost/disposals)
+"yeN" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/expoutpost/starsternairlock)
+"yfj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 6
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"yfE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/hangarthree)
+"yfH" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 1
+ },
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+"ygo" = (
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/red/border{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/guncabinet{
+ req_one_access = list(1)
+ },
+/turf/simulated/floor/tiled,
+/area/expoutpost/secarmory)
+"ygz" = (
+/turf/simulated/shuttle/wall/voidcraft,
+/area/shuttle/shuttle3/start)
+"yhb" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/table/rack/shelf,
+/obj/item/clothing/glasses/welding{
+ pixel_y = 5
+ },
+/obj/item/clothing/glasses/welding,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"yhy" = (
+/obj/machinery/atmospherics/binary/pump{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/machinery/light,
+/turf/simulated/floor,
+/area/expoutpost/staginghangar)
+"yhX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "1-2"
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor,
+/area/expoutpost/uppersternhallway)
+"yhY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/silver{
+ name = "Bathroom"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/commanderroom)
+"yid" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/green{
+ icon_state = "2-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor,
+/area/expoutpost/staruppermaint)
+"yij" = (
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/engineering{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Secure Storage"
+ },
+/obj/item/tape/engineering,
+/turf/simulated/floor,
+/area/expoutpost/techstorage)
+"yit" = (
+/obj/structure/shuttle/engine/heater,
+/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{
+ dir = 8
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/stargazer)
+"yiB" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline,
+/obj/machinery/light{
+ dir = 4;
+ light_color = "#DDFFD3"
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"yjb" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/shuttle3/start)
+"yjg" = (
+/turf/simulated/wall/r_wall,
+/area/expoutpost/hangarthree)
+"yjr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/door/airlock/silver{
+ name = "Restrooms"
+ },
+/turf/simulated/floor,
+/area/expoutpost/restrooms)
+"yjG" = (
+/obj/machinery/power/smes/buildable/max_charge_max_input{
+ RCon_tag = "Auxiliary Reactor - Aegis";
+ name = "Auxiliary Reactor SMES"
+ },
+/obj/item/smes_coil,
+/obj/item/smes_coil,
+/obj/effect/engine_setup/smes,
+/obj/structure/cable/green{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor,
+/area/expoutpost/engoffice)
+"ykl" = (
+/obj/machinery/pointdefense_control{
+ id_tag = "aeg_pd_control"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/machinery/door/window/southright{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/milspec/raised,
+/area/expoutpost/engoffice)
+"yku" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloorwhite{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/expoutpost/medicalbay)
+"ykC" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/structure/cable/green{
+ icon_state = "4-8"
+ },
+/obj/structure/cable/green{
+ icon_state = "1-4"
+ },
+/obj/effect/catwalk_plated/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor,
+/area/expoutpost/lowersternhallway)
+"ykK" = (
+/obj/structure/railing/overhang/waterless/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/turf/simulated/floor/tiled/dark,
+/area/expoutpost/staginghangar)
+"ylW" = (
+/obj/effect/floor_decal/grass_edge{
+ dir = 9
+ },
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/expoutpost/slingcarrierdock)
+
+(1,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(2,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(3,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(4,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(5,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(6,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(7,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(8,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(9,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(10,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(11,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(12,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(13,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(14,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(15,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(16,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(17,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(18,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(19,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(20,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(21,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(22,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(23,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(24,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(25,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(26,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(27,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(28,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(29,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(30,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(31,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(32,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(33,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(34,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(35,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(36,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(37,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(38,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(39,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(40,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(41,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(42,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(43,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(44,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(45,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(46,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(47,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(48,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(49,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(50,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(51,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(52,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(53,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(54,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(55,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(56,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(57,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(58,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(59,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(60,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(61,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(62,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(63,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(64,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(65,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(66,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(67,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(68,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(69,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(70,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(71,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(72,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(73,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(74,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(75,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(76,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(77,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(78,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(79,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(80,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(81,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(82,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(83,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(84,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(85,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(86,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(87,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(88,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(89,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(90,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+wTs
+wTs
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(91,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+wTs
+wTs
+wTs
+wTs
+uEZ
+uEZ
+uEZ
+uEZ
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(92,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+wTs
+wTs
+wTs
+jlw
+nYm
+ctL
+uEZ
+uhl
+wTy
+uEZ
+uEZ
+uEZ
+uEZ
+uEZ
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(93,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+wTs
+wTs
+wTs
+ctL
+rdq
+bJy
+ceN
+lnk
+uEZ
+aLn
+vAE
+aLn
+aLn
+uYh
+dFq
+uEZ
+uEZ
+uEZ
+uEZ
+uEZ
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(94,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+wTs
+wTs
+wTs
+ctL
+uLV
+nYm
+xkW
+vfc
+jQX
+jQX
+aQj
+cfm
+rbL
+uCY
+xoH
+xoH
+xoH
+aLn
+aLn
+dSt
+mpv
+uEZ
+uEZ
+uEZ
+uEZ
+uEZ
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(95,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+wTs
+wTs
+wTs
+stl
+jwU
+nYm
+nYm
+nYm
+nYm
+aMn
+nYm
+ctL
+uEZ
+eHT
+xaA
+rum
+cfm
+cfm
+cfm
+uCY
+wTy
+xoH
+xoH
+aLn
+aYq
+sfB
+aLn
+uEZ
+kgN
+kgN
+kgN
+kgN
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(96,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+xEV
+xEV
+nQm
+nQm
+wTs
+wTs
+wTs
+ctL
+nYm
+nYm
+nYm
+nYm
+wfK
+wfK
+jSF
+aMn
+nYm
+twI
+uEZ
+pHi
+uQg
+xKG
+jLV
+xKG
+xKG
+rum
+cfm
+cfm
+cfm
+cfm
+nNi
+uCY
+aLn
+uEZ
+iWj
+hol
+cVY
+kgN
+kgN
+kgN
+kgN
+kgN
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(97,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+wTs
+wTs
+wTs
+wTs
+juW
+nYm
+nYm
+guF
+nYm
+bJy
+bJy
+bJy
+bJy
+ceN
+aMn
+nYm
+pgP
+pgP
+pgP
+pgP
+pgP
+pgP
+pgP
+aLn
+pyP
+uQg
+uQg
+xKG
+vZR
+aLn
+rum
+cfm
+aQj
+ttk
+jCk
+nhZ
+aBZ
+kqS
+fXC
+jaI
+kgN
+kgN
+kgN
+kgN
+kgN
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(98,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+eWj
+wTs
+wwm
+xvk
+kkw
+kkw
+jQX
+jQX
+qpa
+jQX
+uqU
+jQX
+jQX
+jQX
+jQX
+cHH
+nYm
+pgP
+xQB
+wte
+kbK
+kYg
+tZL
+pgP
+wTy
+pyP
+uQg
+aLn
+aLn
+uaO
+wSp
+qMV
+dFq
+uEZ
+oHJ
+pbu
+bjU
+cVY
+tcY
+fXC
+fXC
+fXC
+fXC
+kqS
+fXC
+kgN
+kgN
+kgN
+kgN
+hYl
+nQm
+nQm
+xEV
+xEV
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(99,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+eWj
+eWj
+eWj
+wTs
+nYm
+lGH
+nYm
+nYm
+rrt
+mCg
+fDS
+ctL
+smd
+nYm
+qnt
+vTh
+nYm
+aMn
+ceN
+pgP
+ljx
+tni
+tni
+tni
+iKu
+pgP
+eZl
+hgL
+eZl
+eZl
+eZl
+eZl
+eZl
+eZl
+eZl
+eZl
+jrn
+cAW
+ttk
+ttk
+lwG
+fmp
+ttk
+ttk
+jCk
+cVY
+fXC
+fXC
+dsK
+ugT
+fXC
+hYl
+hYl
+hYl
+hYl
+hYl
+mJA
+cOM
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(100,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+nQm
+nQm
+eWj
+eWj
+eWj
+eWj
+eWj
+eWj
+eWj
+eRI
+eWj
+eWj
+eWj
+eWj
+eWj
+eWj
+eWj
+eWj
+eWj
+eWj
+ctL
+aMn
+ceN
+pgP
+iFh
+tni
+tni
+tni
+eHK
+iVO
+oue
+liP
+hEd
+uPN
+pur
+xit
+pxZ
+xJp
+kgx
+eZl
+bVZ
+fvN
+eFG
+rOy
+wkI
+neW
+bGo
+bGo
+pbu
+uLs
+nGu
+nGu
+cVY
+cVY
+cVY
+tXk
+xyF
+rGx
+eyK
+wiZ
+tac
+ale
+hYl
+hYl
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(101,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+yjg
+eWj
+eWj
+jJl
+fqm
+fqm
+iel
+jTQ
+wAm
+wQW
+qrg
+fqm
+jTQ
+iel
+fqm
+fqm
+fqm
+fqm
+lFJ
+eWj
+nYm
+aMn
+lnk
+pgP
+gTB
+tni
+tni
+tni
+eHK
+aWi
+liP
+liP
+liP
+rvk
+lxY
+lHe
+liP
+liP
+xnk
+eZl
+fse
+fse
+fse
+qqK
+fse
+fse
+fse
+aZm
+cAW
+ttk
+xqU
+fQa
+ttk
+ttk
+ttk
+bPp
+hbt
+iZj
+sVJ
+umd
+vlO
+tUp
+cNv
+hYl
+oWe
+oWe
+oWe
+oWe
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(102,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+abf
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+yjg
+yjg
+yjg
+jJl
+fqm
+wAm
+bwS
+bwS
+bwS
+hIF
+nyv
+kye
+jfr
+jfr
+mXw
+jfr
+jfr
+jfr
+jfr
+sCA
+bUm
+eWj
+tHC
+aMn
+ceN
+pgP
+ljx
+tni
+tni
+tni
+fKu
+aLh
+bTb
+bTb
+gum
+oVv
+hpu
+vQT
+ksw
+vBV
+glq
+eZl
+ojK
+ojK
+fse
+enL
+spR
+cLY
+fse
+aBZ
+iNj
+hVu
+pbu
+cVY
+cVY
+ryc
+lae
+hYl
+xfg
+bpZ
+bOb
+mqo
+uxz
+oVi
+kwM
+hYl
+oWe
+oWe
+oWe
+oWe
+oWe
+oWe
+oWe
+oWe
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(103,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+yjg
+yjg
+yjg
+yjg
+yjg
+osa
+ojv
+pnh
+pnh
+pnh
+pnh
+pnh
+pnh
+pnh
+pnh
+pnh
+ePf
+ePf
+ePf
+pnh
+pnh
+nQe
+bUm
+eWj
+qWT
+aMn
+aHR
+pgP
+oQm
+ofo
+ctO
+gWO
+wYw
+iVO
+ubs
+liP
+bpR
+tJt
+qng
+pHU
+liP
+liP
+xnk
+eZl
+nnT
+nnT
+fse
+enL
+enL
+wvP
+fse
+fse
+fse
+kgN
+cqN
+kgN
+kgN
+kgN
+kgN
+hYl
+hYl
+hYl
+hYl
+hYl
+hYl
+hYl
+hYl
+hYl
+oWe
+oWe
+oWe
+oWe
+oWe
+oWe
+oWe
+oWe
+oWe
+spq
+spq
+spq
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(104,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+nQm
+nQm
+nQm
+nQm
+xEV
+xEV
+xEV
+xEV
+xEV
+nQm
+nQm
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+yjg
+cem
+uxF
+dQy
+lGu
+bwS
+bFX
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+rLo
+bUm
+eWj
+qWT
+aMn
+aHR
+pgP
+pgP
+pgP
+pgP
+pgP
+pgP
+pgP
+pED
+wMw
+mYK
+xfE
+qDP
+tNX
+nzB
+uOu
+qat
+eZl
+cxh
+enL
+jwx
+enL
+enL
+kgn
+lTk
+isM
+fse
+qKs
+oRl
+nkx
+lpf
+xJG
+jAV
+nBE
+jAV
+jAV
+jAV
+cMM
+jAV
+jAV
+eqj
+jAV
+jAV
+hRb
+fOo
+cMM
+kpt
+eSq
+jAV
+jAV
+jAV
+spq
+spq
+spq
+spq
+spq
+spq
+spq
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(105,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+xEV
+xEV
+xEV
+xEV
+xEV
+nQm
+nQm
+nQm
+nQm
+xEV
+xEV
+xEV
+xEV
+xEV
+yjg
+yjg
+sPX
+dQy
+oeA
+yjg
+rZi
+bFX
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+atK
+nIf
+vWj
+atK
+atK
+bwc
+oEz
+rLo
+ipO
+eWj
+nYm
+aMn
+dtw
+eZl
+tMv
+hhM
+xvv
+xWl
+jlr
+mGs
+dXB
+liP
+vam
+jcU
+eoO
+eoO
+eoO
+eoO
+eoO
+eoO
+eMB
+enL
+enL
+enL
+enL
+enL
+kuk
+nyN
+fse
+oNO
+rXv
+hIK
+gCW
+hIK
+hIK
+exf
+uAE
+uAE
+uAE
+uAE
+uAE
+uAE
+uAE
+uAE
+uAE
+ldk
+uAE
+uAE
+uAE
+bQq
+uAE
+uAE
+uAE
+uug
+lGd
+ujJ
+jcu
+gyF
+tIi
+spq
+spq
+spq
+spq
+spq
+spq
+spq
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(106,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+tMo
+tMo
+tMo
+kQx
+kyy
+kyy
+gJx
+kyy
+fRS
+kyy
+kyy
+fRS
+kyy
+gJx
+kyy
+kyy
+kyy
+kyy
+tMo
+tMo
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+cem
+uxF
+dQy
+tXN
+yjg
+ave
+bFX
+oFs
+atK
+oUi
+atK
+oUi
+bwc
+atK
+atK
+fNO
+ajQ
+kOT
+jlz
+bwc
+xLr
+rLo
+bUm
+eWj
+rpY
+aMn
+aHR
+eZl
+acB
+liP
+liP
+liP
+liP
+liP
+liP
+liP
+qLk
+gOD
+hkS
+rgZ
+ktx
+fWx
+gGb
+eoO
+rGI
+enL
+enL
+enL
+enL
+enL
+nvl
+vwg
+fse
+qKs
+jtd
+nkx
+lpf
+nkx
+nkx
+ewZ
+xpM
+iJc
+iVX
+iVX
+iVX
+iVX
+iVX
+gVz
+iVX
+iVX
+iVX
+iVX
+iVX
+iVX
+iVX
+bIu
+iVX
+spq
+dnw
+eWl
+jKi
+ybG
+ybG
+spq
+spq
+spq
+spq
+spq
+spq
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(107,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+tMo
+tMo
+tMo
+ssF
+kyy
+tvQ
+fbe
+fbe
+fbe
+fbe
+oSO
+udT
+udT
+bDO
+udT
+udT
+udT
+udT
+udT
+aKZ
+hPB
+tMo
+oBP
+cGw
+cGw
+cGw
+cGw
+rjo
+cGw
+wwD
+cGw
+cGw
+wwD
+cGw
+rjo
+cGw
+uxF
+dQy
+dQy
+qbW
+yjg
+ave
+bFX
+atK
+akX
+jhp
+ygz
+rIq
+vqv
+tKI
+ygz
+pHk
+ajQ
+yjb
+sot
+ygz
+oFs
+rLo
+bUm
+eWj
+nJl
+aMn
+aHR
+eZl
+rMA
+kTP
+rUs
+tis
+jGJ
+liP
+liP
+liP
+lyU
+xfE
+eoO
+jWV
+dVz
+dVz
+mVO
+eoO
+uKT
+enL
+enm
+mkF
+iHQ
+lTw
+nvl
+viN
+fse
+qKs
+jtd
+xpM
+wlq
+wlq
+hwE
+sZQ
+wlq
+wlq
+wlq
+wlq
+wlq
+wlq
+wlq
+roD
+roD
+roD
+roD
+roD
+roD
+roD
+roD
+roD
+spq
+spq
+mKj
+vQA
+wwH
+xqq
+mpi
+spq
+spq
+spq
+spq
+spq
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(108,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+tMo
+tMo
+tMo
+kQx
+kyy
+tvQ
+vsL
+ucQ
+ucQ
+ucQ
+ucQ
+ucQ
+ucQ
+ucQ
+ucQ
+ucQ
+ucQ
+cAr
+cAr
+ucQ
+ucQ
+jFl
+fbe
+uWA
+dQy
+ouG
+nvk
+nvk
+nvk
+nvk
+nvk
+vMv
+sMA
+sMA
+rQr
+kyw
+aWv
+aWv
+aWv
+aWv
+aXg
+tXN
+yjg
+ave
+bFX
+ghC
+qzM
+lEK
+xnV
+rIq
+ajQ
+rEv
+oUi
+bhb
+ajQ
+anr
+mIK
+oFs
+oFs
+rLo
+bUm
+eWj
+ceN
+aMn
+ceN
+eZl
+rMA
+kTP
+hPX
+nIx
+ueh
+liP
+liP
+liP
+lyU
+glq
+eoO
+mYy
+aQF
+dqX
+wdf
+eoO
+lTA
+enL
+jcy
+lvZ
+uSL
+ciq
+nvl
+lJc
+fse
+qKs
+jtd
+xJG
+wlq
+dww
+aaV
+fXA
+wlw
+mnK
+qRP
+rIo
+neN
+jCN
+wlq
+niM
+qIS
+ixR
+buE
+smG
+kOi
+aTL
+biJ
+roD
+spq
+spq
+esV
+kFc
+uOR
+eWl
+dwh
+spq
+spq
+spq
+spq
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(109,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+tMo
+tMo
+tMo
+kXV
+fbe
+fbe
+jcG
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+hcY
+iKE
+tMo
+fxo
+mzd
+bYa
+bYa
+bYa
+bYa
+bYa
+bYa
+bYa
+bYa
+lVZ
+bYa
+bYa
+bYa
+bYa
+bYa
+uCz
+tXN
+yjg
+jAP
+bFX
+xeN
+jdu
+ajQ
+aEx
+ajQ
+ajQ
+ajQ
+lis
+ajQ
+ajQ
+anr
+sTY
+oFs
+oFs
+rLo
+bUm
+eWj
+wTs
+fpt
+wTs
+eZl
+rMA
+kTP
+hPX
+lFR
+lEc
+liP
+liP
+liP
+lyU
+jcU
+vCa
+vCa
+vCa
+vCa
+vCa
+vCa
+pQt
+enL
+enL
+enL
+enL
+inU
+buZ
+aAX
+fse
+hDj
+jtd
+nkx
+xcO
+cGr
+dpc
+uoE
+sCt
+qid
+qid
+hRR
+sCt
+dHg
+wlq
+lUe
+wZI
+wZI
+wZI
+wZI
+wZI
+wZI
+tOE
+roD
+spq
+spq
+mKj
+dsM
+gcz
+bed
+bed
+spq
+gPH
+pzO
+vLt
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(110,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+tMo
+tMo
+qiZ
+wFa
+fbe
+jcG
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+jlO
+niW
+jlO
+bjP
+jlO
+jlO
+xwl
+hcY
+lGy
+tMo
+sPX
+mzd
+bYa
+bYa
+vOu
+vOu
+vOu
+vOu
+nlT
+vOu
+qrm
+apk
+vOu
+bYa
+bYa
+bYa
+uCz
+tXN
+yjg
+ave
+bFX
+sEA
+oGt
+lEK
+xnV
+rIq
+ajQ
+wNc
+bwc
+oUi
+giI
+pZA
+ont
+oFs
+oFs
+rLo
+bUm
+eWj
+iGn
+tAp
+juR
+eZl
+rMA
+kTP
+hPX
+hPX
+eJy
+lmY
+lmY
+lmY
+fcF
+gOD
+psU
+xJE
+bOy
+aFp
+mmN
+vCa
+eMB
+enL
+enL
+enL
+enL
+jrL
+nvl
+vwg
+fse
+eMf
+rok
+nkx
+xrx
+xRY
+sCt
+rij
+wWJ
+mZg
+dPK
+kpp
+hRE
+xpt
+qGW
+dzs
+huf
+rOk
+rzc
+wZI
+wZI
+wZI
+eQR
+roD
+spq
+spq
+rBJ
+seo
+cuH
+iFQ
+lgS
+spq
+kJb
+pzO
+pzO
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(111,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+xEV
+cwA
+cwA
+xEV
+xEV
+tMo
+tMo
+qiZ
+vZP
+jcG
+xwl
+xwl
+xwl
+jlO
+pCz
+jlO
+xwl
+jlO
+ljI
+lcN
+jJO
+jlO
+xwl
+xwl
+hcY
+lGy
+tMo
+sPX
+mzd
+bYa
+vOu
+vOu
+ugc
+bUY
+dxN
+ulX
+bXD
+cMc
+peD
+vOu
+vOu
+bYa
+bYa
+uCz
+tXN
+yjg
+ave
+bFX
+atK
+akX
+miN
+vuc
+rIq
+yam
+vjv
+ygz
+lpi
+rqg
+lpC
+sot
+ygz
+oFs
+rLo
+bUm
+eWj
+iuL
+tAp
+uNB
+eZl
+jDj
+liP
+liP
+liP
+xMn
+lEO
+lEO
+lEO
+ejs
+xfE
+vCa
+eKX
+tQH
+tQH
+vcu
+vCa
+sLQ
+jPZ
+enL
+tVD
+enL
+hju
+nvl
+viN
+fse
+lbA
+rok
+nkx
+oYI
+sCt
+sCt
+sCt
+sCt
+jZf
+sCt
+ykl
+enc
+qEJ
+wlq
+ofs
+wZI
+tgk
+nce
+dEY
+ltl
+mld
+gec
+roD
+spq
+spq
+spq
+uFO
+spq
+spq
+uZX
+kQr
+bAO
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(112,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+nQm
+nQm
+xEV
+xEV
+xEV
+nQm
+nQm
+xEV
+xEV
+lrO
+lrO
+xEV
+xEV
+cwA
+cwA
+xEV
+xEV
+tMo
+tMo
+kXV
+jcG
+xwl
+xwl
+jlO
+jlO
+uEr
+jlO
+jlO
+jlO
+ccE
+rOE
+fZO
+vmL
+xwl
+xwl
+hcY
+lGy
+tMo
+sPX
+mzd
+bYa
+nmR
+jsY
+coY
+imC
+ulX
+ulX
+hBV
+gXU
+tOr
+xBb
+nRS
+xuz
+bYa
+uCz
+tXN
+yjg
+ave
+bFX
+oFs
+atK
+oUi
+atK
+oUi
+bwc
+mVl
+atK
+pzP
+owv
+dKa
+wJf
+bwc
+oEz
+rmk
+ipO
+eWj
+rcx
+tAp
+pIa
+eZl
+rbp
+nyG
+vyh
+xFz
+ets
+vwf
+scj
+liP
+kkt
+sYT
+vCa
+odL
+sdR
+uWq
+cCE
+vCa
+yaq
+oCJ
+sPa
+fse
+eKi
+quR
+nvl
+lJc
+fse
+epN
+jtd
+xpM
+wlq
+qaW
+nsG
+nsu
+vuJ
+hGz
+aHM
+kSW
+lFp
+yjG
+wlq
+wzy
+wZI
+iNh
+xnF
+bwJ
+roD
+roD
+roD
+roD
+tLe
+jOn
+jOn
+hqT
+wSC
+mtG
+eIR
+pzO
+vLt
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(113,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+nQm
+nQm
+xEV
+xEV
+xEV
+nQm
+nQm
+xEV
+xEV
+xEV
+ncM
+ncM
+ncM
+ncM
+ncM
+ncM
+ncM
+ncM
+ncM
+lrO
+lrO
+lrO
+lrO
+lrO
+xEV
+xEV
+xEV
+xEV
+gAi
+gAi
+tMo
+kXV
+jcG
+xwl
+jlO
+jlO
+mRH
+ghb
+bbp
+rsg
+hlp
+qse
+wQf
+jqf
+oGk
+oGk
+mnp
+hcY
+lGy
+tMo
+sPX
+mzd
+bYa
+vOu
+vOu
+kTe
+fVj
+voF
+ulX
+qvS
+lCN
+oFj
+xkY
+nRS
+nRS
+bYa
+mTN
+tXN
+yjg
+ave
+bFX
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+atK
+atK
+qtA
+skO
+atK
+bwc
+xLr
+rLo
+qrg
+eWj
+cYy
+tAp
+hkb
+eZl
+eZl
+eZl
+eZl
+eZl
+eZl
+eZl
+eZl
+hOP
+cfT
+eZl
+vCa
+vCa
+vCa
+vCa
+vCa
+vCa
+rki
+iHQ
+lTw
+fse
+nun
+jTc
+fse
+oHt
+fse
+dzc
+jtd
+xJG
+wlq
+wlq
+wlq
+wlq
+wlq
+wlq
+tci
+wlq
+wlq
+wlq
+wlq
+nHI
+wZI
+tGo
+wOb
+wKr
+jSQ
+cHY
+dfH
+roD
+jKi
+ruI
+oFW
+oFW
+ruI
+spq
+kJb
+pzO
+pzO
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(114,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+lSp
+lSp
+lSp
+lSp
+lSp
+lSp
+lSp
+lSp
+lSp
+lSp
+lSp
+ncM
+vQR
+bLf
+cBO
+fHf
+ncM
+jKa
+taX
+hiI
+lrO
+fLd
+qMu
+fdI
+xOL
+gAi
+xEV
+gAi
+gAi
+gAi
+gAi
+tMo
+xBG
+jcG
+xwl
+pCz
+aYM
+uwQ
+sUJ
+dGj
+kqU
+kbc
+tih
+mZV
+dBB
+oGk
+oGk
+oGk
+olZ
+vlk
+tMo
+pNY
+mzd
+bYa
+bYa
+vOu
+vOu
+vOu
+pjI
+mmL
+aRW
+qMK
+sEi
+iFY
+vOu
+xzH
+bYa
+uCz
+qbW
+yjg
+ave
+bFX
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+oFs
+rLo
+bwS
+jzB
+xab
+tAp
+xab
+nwM
+jLz
+dFz
+goq
+hTs
+goq
+eCc
+lSy
+wzH
+cCr
+hBI
+nwM
+xJG
+eSq
+lri
+vNa
+fse
+pNT
+enL
+ayE
+aGJ
+enL
+ujM
+nvl
+hem
+fse
+ezs
+rcR
+pIP
+dVB
+wjJ
+xKW
+tZu
+rpP
+vkp
+fVd
+fHy
+cbK
+dqy
+tEW
+xJS
+xJS
+xJS
+xJS
+xJS
+fgx
+jks
+jpr
+roD
+uFO
+spq
+spq
+spq
+uZX
+kQr
+bAO
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(115,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+xEV
+nQm
+nQm
+nQm
+nQm
+xEV
+xEV
+xEV
+xEV
+bQT
+bQT
+bQT
+bQT
+bQT
+bQT
+bQT
+bQT
+bQT
+bQT
+bQT
+lSp
+juN
+uzN
+xtc
+xyR
+kUy
+oIE
+xUz
+wai
+tDw
+pxb
+ncM
+qhJ
+gle
+gle
+iCS
+ncM
+buh
+taX
+bne
+lrO
+jIb
+bVY
+oAG
+tJC
+gAi
+gAi
+gAi
+pYv
+jWf
+qOD
+tMo
+kXV
+jcG
+xwl
+jlO
+jlO
+nBb
+uyH
+tNm
+hKt
+fFf
+bnp
+nlv
+lRD
+oGk
+oGk
+oGk
+hcY
+lGy
+tMo
+sPX
+mzd
+bYa
+bYa
+bYa
+kXq
+etp
+mmL
+tYt
+gDR
+mPc
+vOu
+pNA
+nRS
+xuz
+bYa
+uCz
+tXN
+yjg
+jAP
+vKk
+imr
+imr
+imr
+imr
+flj
+jnl
+jnl
+jnl
+jnl
+jZo
+jnl
+jnl
+jnl
+jnl
+hlF
+bwS
+pEN
+xab
+tAp
+xab
+rEw
+wzH
+wzH
+kzZ
+niy
+oFq
+wzH
+wzH
+wzH
+cCr
+wzH
+rEw
+nkx
+bkz
+nkx
+xJr
+fse
+avU
+uSL
+nlk
+pVK
+bgb
+pPW
+inz
+viN
+fse
+oNO
+jtd
+xpM
+aPh
+tay
+cpA
+dlJ
+oHX
+yaj
+rKs
+ixK
+dyX
+jsl
+aPh
+iiF
+wZI
+wZI
+wZI
+dEY
+jSQ
+uoI
+sfi
+roD
+qaG
+jOn
+aAt
+spq
+kJb
+pzO
+vLt
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(116,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+kBn
+kBn
+kBn
+kBn
+kBn
+kBn
+kBn
+kBn
+kBn
+kBn
+kBn
+bQT
+lDp
+lfC
+pzQ
+ajq
+bQT
+rnG
+bQT
+ldB
+bQT
+vXA
+lSp
+rhk
+rfk
+aHb
+lSp
+wKB
+rbI
+goD
+dEl
+uBL
+nmo
+ncM
+cTl
+ojc
+gle
+xvx
+ncM
+aRl
+taX
+cVe
+lrO
+awk
+anJ
+anJ
+upU
+gAi
+aXH
+jWf
+tGD
+kxg
+eYq
+tMo
+kXV
+jcG
+xwl
+xwl
+jlO
+jlO
+pqJ
+jlO
+jlO
+jlO
+qrZ
+jlO
+jlO
+kZQ
+xwl
+xwl
+hcY
+lGy
+tMo
+sPX
+mzd
+bYa
+bYa
+bYa
+cPL
+mmL
+fQz
+phx
+nVg
+qLq
+qMa
+lXc
+nRS
+nRS
+bYa
+uCz
+tXN
+yjg
+ave
+bwS
+bwS
+pkS
+fiE
+teM
+wYs
+fiE
+fiE
+fiE
+fiE
+wYs
+teM
+odZ
+mto
+eXM
+kyD
+lhB
+eWj
+bsK
+tAp
+rqt
+rrG
+upj
+wzH
+kzZ
+sps
+oFq
+wzH
+ayz
+bLV
+nIV
+frH
+rrG
+nAP
+bkz
+nkx
+oLM
+fse
+fse
+iWK
+cSw
+fse
+fse
+fse
+fse
+fse
+fse
+qKs
+jtd
+mmQ
+aPh
+ooQ
+sZy
+aQp
+hxb
+aRG
+hga
+swA
+cdT
+rKs
+aPh
+roD
+vJh
+gQK
+gQK
+eQR
+roD
+roD
+roD
+roD
+ruI
+oFW
+ruI
+spq
+kJb
+pzO
+pzO
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(117,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+gXp
+ihP
+ihP
+gXp
+xEV
+xEV
+nQm
+nQm
+xEV
+xEV
+cMj
+cMj
+cMj
+cMj
+cMj
+cMj
+cMj
+cMj
+cMj
+cMj
+cMj
+kBn
+jyK
+jyK
+jyK
+jyK
+kBn
+vXd
+tCM
+kBn
+dDU
+ecU
+bQT
+dyv
+vsC
+qkV
+cTZ
+bQT
+leU
+bQT
+xbq
+bQT
+bDJ
+lSp
+jbG
+rfk
+kIP
+lSp
+dZT
+ipj
+kUy
+kUy
+lwV
+iCO
+ncM
+hMq
+wjD
+wjH
+ipN
+ncM
+ige
+xaM
+nYZ
+lrO
+fPK
+sry
+lHx
+gDm
+gAi
+wrQ
+xVG
+wjm
+wjm
+eYq
+tMo
+kXV
+jcG
+xwl
+xwl
+xwl
+jlO
+pCz
+jlO
+xwl
+jlO
+afh
+lNh
+jlO
+jlO
+xwl
+xwl
+hcY
+lGy
+tMo
+sPX
+mzd
+bYa
+bYa
+bYa
+vOu
+vOu
+fwG
+fkh
+gzN
+rXz
+kkl
+vOu
+vOu
+bYa
+bYa
+uCz
+tXN
+yjg
+eWj
+tKL
+fMI
+eWj
+eWj
+eWj
+eWj
+eWj
+eWj
+eWj
+eWj
+eWj
+eWj
+eWj
+eWj
+pEN
+gfQ
+eWj
+eWj
+cYy
+tAp
+emn
+rrG
+iCF
+wzH
+kzZ
+rbO
+oFq
+wzH
+rxD
+niy
+jrg
+cSp
+rrG
+oNO
+bkz
+nkx
+bIj
+lpf
+nkx
+nkx
+lfA
+xJG
+edo
+fOo
+jAV
+jAV
+jAV
+hDj
+jtd
+qkj
+aPh
+hga
+rGj
+mLg
+xWP
+aQp
+xau
+pia
+kTo
+hoO
+aPh
+lpT
+wZI
+mfd
+mfd
+wKr
+kcv
+wlg
+jvS
+roD
+spq
+spq
+uZX
+kQr
+bAO
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(118,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+xEV
+xEV
+xEV
+nQm
+nQm
+wDU
+kms
+kms
+kms
+gdN
+cMj
+cMj
+cMj
+cMj
+cMj
+cMj
+cMj
+tAh
+eHZ
+cMj
+nWS
+eHZ
+cMj
+kEm
+mQB
+mQB
+aeJ
+kBn
+aym
+jyK
+jyK
+xzZ
+kBn
+jpQ
+uuQ
+kBn
+fVW
+ecU
+bQT
+uZP
+iSs
+iKy
+jhQ
+iKy
+iKy
+iKy
+jhQ
+iKy
+iKy
+lSp
+hwf
+rfk
+lXD
+lSp
+qYx
+ajU
+rRn
+xil
+xRr
+fiC
+ncM
+xOt
+huF
+xFv
+wkV
+lOU
+ikP
+rgq
+qOt
+lrO
+cml
+mOm
+mbu
+tIZ
+gAi
+cJB
+jlK
+mMt
+mTu
+eqL
+tMo
+kXV
+jcG
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+jlO
+upT
+jlO
+bjP
+jlO
+jlO
+xwl
+hcY
+lGy
+tMo
+sPX
+mzd
+bYa
+bYa
+bYa
+bYa
+vOu
+dgK
+dnE
+vOu
+cts
+apk
+vOu
+bYa
+bYa
+bYa
+uCz
+tXN
+yjg
+dBU
+tZF
+tZF
+kFp
+atz
+kUb
+atz
+atz
+jIR
+atz
+atz
+nGV
+rAJ
+mgE
+dfj
+tZF
+iSp
+gaV
+uJZ
+xab
+tAp
+hkb
+rrG
+bcv
+wzH
+wzH
+npc
+wzH
+wzH
+quA
+cXU
+cCr
+xxw
+rrG
+hDj
+fBR
+hIK
+waj
+gCW
+hIK
+hIK
+xTc
+hIK
+gqU
+hIK
+hIK
+hIK
+rku
+hIK
+jEx
+qkj
+aPh
+lPO
+eDB
+njk
+gBy
+eVb
+rrj
+lPO
+uPJ
+uPJ
+aPh
+nDZ
+wZI
+wZI
+wZI
+wZI
+wZI
+coa
+xBS
+roD
+spq
+spq
+kJb
+pzO
+vLt
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(119,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+xEV
+nQm
+nQm
+wDU
+wDU
+rUx
+wvY
+wcE
+ahX
+cMj
+ugO
+hqW
+isv
+tdp
+fyn
+cMj
+qca
+rhP
+cMj
+uTc
+rhP
+cMj
+mGA
+rhP
+rhP
+lUp
+kBn
+voo
+qHq
+qdY
+too
+kBn
+eRs
+kBn
+kBn
+uXM
+cWe
+bQT
+bQT
+yjr
+bQT
+bQT
+bQT
+bQT
+bQT
+bQT
+bQT
+bQT
+lSp
+lSp
+lSp
+lSp
+lSp
+lSp
+lSp
+lSp
+lSp
+cte
+lSp
+ncM
+ncM
+uLJ
+ncM
+ncM
+ncM
+ncM
+ncM
+ncM
+lrO
+lrO
+xkR
+aEz
+lrO
+gAi
+gAi
+xjr
+gAi
+gAi
+gAi
+tMo
+kXV
+jcG
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+xwl
+fsL
+xwl
+xwl
+xwl
+xwl
+xwl
+hcY
+lGy
+tMo
+sPX
+mzd
+bYa
+bYa
+bYa
+bYa
+bYa
+bYa
+bYa
+bYa
+bYa
+bYa
+bYa
+bYa
+bYa
+bYa
+uCz
+tXN
+yjg
+oiU
+oIB
+gHs
+gHs
+gHs
+gHs
+rIT
+gHs
+oES
+gHs
+gHs
+mPx
+gHs
+gHs
+gHs
+gHs
+yhX
+gHs
+lIe
+xcU
+rwi
+xcU
+fGp
+jEv
+jEv
+jEv
+usz
+jEv
+jEv
+stI
+jEv
+txi
+jEv
+fGp
+hIK
+mso
+xpM
+nAP
+lpf
+xpM
+uOo
+pom
+jat
+kFq
+iVX
+iVX
+xwe
+rJg
+iVX
+ivf
+hUo
+aPh
+fCQ
+pia
+fOd
+mGN
+uFJ
+ngJ
+geX
+xzP
+xzP
+aPh
+qOH
+dEY
+nyK
+wZI
+dEY
+nZp
+gLE
+aDh
+roD
+spq
+uZX
+nLP
+pzO
+pzO
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(120,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+nQm
+wDU
+wDU
+wDU
+paY
+ivD
+wIi
+aQm
+cMj
+ajK
+rhP
+bjT
+nOj
+uQX
+cMj
+kUD
+xUo
+cMj
+kUD
+iXd
+cMj
+vrY
+rhP
+rhP
+iSI
+kBn
+jVs
+xDK
+tAt
+vQy
+kBn
+fVW
+vjn
+wpp
+rHJ
+eqH
+kBn
+pgk
+uIT
+pIV
+bVv
+bVv
+bVv
+bVv
+bVv
+bVv
+bVv
+bVv
+bVv
+fmM
+bVv
+bVv
+bVv
+bVv
+bVv
+wCz
+uIT
+mIm
+tVP
+wCz
+uIT
+ejG
+fBu
+isx
+bDk
+ooK
+ooK
+omy
+tGt
+gyI
+nBk
+isx
+ekf
+tGt
+aCC
+tVt
+ehd
+lzi
+tMo
+kXV
+cDc
+mop
+mop
+mop
+mop
+mop
+uNn
+rUH
+rUH
+sjY
+rUH
+rUH
+rUH
+rUH
+rUH
+bAg
+lGy
+tMo
+sPX
+oFP
+wyr
+wyr
+wyr
+wyr
+wyr
+xno
+vWD
+vWD
+krs
+vWD
+vWD
+vWD
+vWD
+vWD
+aFw
+tXN
+yjg
+qjE
+jnK
+eqh
+peF
+pWz
+tZF
+cvJ
+eqh
+oWn
+hMk
+peF
+beQ
+peF
+peF
+peF
+peF
+hMk
+pWz
+uJZ
+xab
+tAp
+xab
+rEw
+bhm
+qKy
+vNW
+qwp
+xnC
+pAo
+qKy
+qKy
+qKy
+otB
+rEw
+nkx
+jtd
+qkj
+fBv
+fBv
+fBv
+fBv
+fBv
+fBv
+fBv
+fBv
+vxU
+vxU
+vxU
+vxU
+vxU
+vxU
+vxU
+qCD
+uDx
+mrc
+hIw
+nEn
+oHX
+oHX
+lST
+sYH
+aPh
+wbC
+lPC
+roD
+eKA
+roD
+gEB
+vmY
+rkB
+roD
+spq
+aaa
+spq
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(121,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+wDU
+wDU
+iCY
+wDU
+jjT
+aKW
+aKW
+fAq
+cMj
+gjQ
+mdJ
+qci
+tam
+mdJ
+rcn
+igW
+mdJ
+gKW
+mdJ
+mdJ
+bfK
+mdJ
+mdJ
+mdJ
+jVO
+jmh
+aAP
+obN
+sFB
+sFB
+sFB
+sFB
+sFB
+sFB
+dzZ
+xeC
+wbs
+mpO
+irI
+mpO
+mpO
+mpO
+mpO
+mpO
+mpO
+mpO
+mpO
+mpO
+mpO
+mpO
+vPw
+mpO
+drS
+mpO
+mpO
+mpO
+uAp
+mpO
+kIa
+mpO
+uAp
+mpO
+cbF
+cof
+mOK
+cof
+cof
+pZR
+cof
+cof
+gvD
+cof
+cof
+cof
+jMa
+mnz
+mMZ
+cuv
+tMo
+xBG
+fbe
+fbe
+iKE
+efF
+qpw
+efF
+bQb
+efF
+efF
+mHR
+fnZ
+vsz
+ocH
+vlP
+jjP
+qrJ
+vlk
+tMo
+pNY
+dQy
+dQy
+oeA
+gnO
+bZy
+gnO
+yfE
+gnO
+gnO
+yfE
+gnO
+obS
+ezJ
+ibm
+wFp
+vYC
+qbW
+yjg
+vQD
+jnK
+kNx
+nTf
+nTf
+wPO
+rPc
+nTf
+iNT
+iNT
+iNT
+iNT
+iNT
+gqv
+gqv
+gqv
+gqv
+gqv
+gqv
+bsK
+tAp
+rqt
+jia
+jia
+jia
+jia
+jia
+jia
+jia
+jia
+jia
+jia
+jia
+jia
+nAP
+jtd
+xJG
+fBv
+oUm
+gNV
+sYD
+uuI
+dRX
+bKJ
+fEc
+fDW
+uWt
+vJp
+uap
+ybK
+eVg
+vxU
+aap
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aah
+aae
+aae
+aae
+aae
+aae
+aae
+aae
+aae
+aae
+kQr
+bAO
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(122,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+wDU
+wDU
+wDU
+qLD
+qjm
+kNV
+cTW
+skS
+jTs
+cMj
+llX
+hbj
+rdA
+vRX
+rhP
+cMj
+xsc
+eOx
+oSr
+pDV
+oqq
+qIh
+rOU
+gYx
+ope
+btC
+kBn
+huK
+fVW
+fmD
+acV
+fVW
+fVW
+acV
+mCa
+bui
+dzS
+kBn
+lmB
+dmw
+dmw
+weH
+dmw
+bBK
+dmw
+dmw
+qDv
+dmw
+dmw
+bBK
+dmw
+mth
+qDv
+nIw
+dmw
+bBK
+dmw
+dmw
+qDv
+dmw
+weH
+bBK
+bAD
+fBu
+sFu
+sFu
+sFu
+gyI
+jHk
+gyI
+sFu
+sFu
+sFu
+sFu
+gyI
+mYG
+gyI
+gyI
+akE
+tMo
+tMo
+nku
+qkp
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+tMo
+nku
+udG
+tMo
+tMo
+yjg
+jUF
+wtr
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+yjg
+jUF
+aiN
+yjg
+yjg
+dBU
+jnK
+nmj
+nTf
+pLt
+sqY
+mmi
+lTh
+iNT
+eVn
+wkZ
+mVD
+xVS
+gqv
+asI
+xKe
+otU
+edQ
+gqv
+rcx
+tAp
+juR
+jia
+svh
+bSp
+aaR
+jia
+ejR
+jia
+hFP
+aaA
+dJj
+jia
+jia
+oNO
+caA
+jNd
+daS
+aoL
+ifU
+iVw
+vXP
+phn
+qRu
+xZD
+uJM
+mtk
+vEk
+kAG
+thG
+vpK
+aat
+aaq
+ohy
+vMd
+vUX
+mnb
+aPh
+aPh
+aPh
+ohy
+voN
+voN
+voN
+dpg
+voN
+voN
+voN
+dpg
+voN
+voN
+vMd
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(123,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+wDU
+wDU
+wDU
+wDU
+gYp
+nDB
+jIo
+hCP
+pvk
+pqo
+ikH
+lOd
+rhP
+rhP
+rhP
+rhP
+cMj
+kUD
+quy
+kUD
+cMj
+cMj
+cMj
+cMj
+cMj
+cMj
+cMj
+kBn
+kBn
+kBn
+kBn
+kBn
+kBn
+kBn
+kBn
+kBn
+kBn
+kBn
+kBn
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+clR
+cCs
+ylW
+vNj
+xVq
+jrB
+jHk
+tHc
+aKP
+tHw
+vFc
+rht
+jrB
+mYG
+gyI
+gyI
+isx
+nOu
+bgV
+koU
+koU
+kMp
+fXg
+uFv
+dTh
+mPE
+mPE
+mPE
+wVN
+blv
+gAm
+fXg
+aGE
+koU
+vTm
+blv
+uzs
+dTh
+koU
+koU
+blv
+dTh
+pVg
+blv
+cnH
+irs
+dVi
+dTh
+pVg
+blv
+gAm
+dTh
+koU
+vTm
+bQm
+nOu
+dfj
+jnK
+oFc
+nTf
+ddP
+jib
+dGF
+qoe
+frE
+qIR
+qIR
+qIR
+pwY
+gqv
+jkZ
+iqK
+eNb
+ueT
+gqv
+iGn
+tAp
+juR
+jia
+gFl
+gzz
+aaS
+vLz
+aaE
+aaE
+aaE
+hpq
+swe
+cgb
+jia
+qKs
+bfc
+xpM
+fBv
+lUw
+aHw
+lUE
+nFb
+fEc
+ulN
+fBv
+pwx
+iXn
+iXn
+fGm
+fGm
+abn
+jKJ
+gYa
+iOM
+mbg
+iOM
+mbg
+dpg
+dpg
+dpg
+iOM
+ohy
+dpg
+dpg
+dpg
+dpg
+dpg
+dpg
+dpg
+dpg
+dpg
+iOM
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(124,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+wDU
+wDU
+wDU
+wDU
+wDU
+wDU
+wDU
+wDU
+wDU
+wDU
+cMj
+ufo
+jQI
+uSj
+xss
+bkv
+cMj
+oxi
+rhP
+soJ
+cMj
+cMj
+cMj
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+ead
+oHI
+itM
+qtM
+qtM
+nLN
+qtM
+qtM
+itM
+iMD
+mpb
+jrB
+mYG
+gyI
+gyI
+gyI
+pVg
+koU
+koU
+koU
+koU
+koU
+ikB
+koU
+koU
+koU
+koU
+koU
+koU
+koU
+koU
+koU
+koU
+vTm
+koU
+tbK
+koU
+koU
+koU
+ijV
+gap
+veb
+tML
+mce
+ckj
+eBs
+tML
+veb
+tML
+lAk
+koU
+koU
+vTm
+koU
+pVg
+tZF
+jnK
+kNx
+nTf
+oVD
+jib
+sph
+jib
+uzW
+vOo
+xbm
+bbO
+oLH
+gqv
+gkG
+kpl
+uKY
+vYi
+gqv
+cXC
+faz
+juR
+jia
+abd
+aaY
+azg
+jia
+vaT
+vaT
+aaF
+uvP
+vaT
+wmN
+jia
+nok
+rTW
+dHx
+sey
+giE
+giE
+giE
+sey
+vxU
+kCO
+wCU
+sQh
+vEk
+vEk
+vEk
+vEk
+oHs
+wPD
+ltw
+ltw
+ltw
+gZh
+dpg
+dpg
+dpg
+dpg
+dpg
+iOM
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(125,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+nQm
+nQm
+cMj
+cMj
+cMj
+cMj
+cMj
+cMj
+cMj
+dJv
+sgl
+mWt
+cMj
+cMj
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+itM
+ead
+aaO
+nbQ
+hjB
+hjB
+hjB
+hjB
+hjB
+oGw
+bhq
+mpb
+jrB
+egM
+cof
+cof
+cof
+chH
+tCS
+tCS
+tCS
+tCS
+tCS
+eJi
+tCS
+tCS
+tCS
+tCS
+tCS
+tCS
+tCS
+tCS
+tCS
+tCS
+ejl
+tCS
+kbl
+tCS
+tCS
+tCS
+jbk
+yhy
+nOu
+nOu
+nOu
+nOu
+nOu
+nOu
+nOu
+jpe
+eBT
+tnm
+tML
+pMn
+xtT
+nFW
+gHs
+iDt
+kFp
+nTf
+kLJ
+jib
+sph
+dxc
+iNT
+iNT
+iNT
+sXC
+tLJ
+gqv
+uOM
+lzy
+lzy
+pnJ
+gqv
+iGn
+tAp
+juR
+jia
+jia
+jia
+jia
+jia
+aaH
+wWs
+aaG
+aaB
+vaT
+dLo
+jia
+qKs
+jtd
+qkj
+sey
+djk
+rRc
+ocQ
+cLB
+nMy
+bMi
+mse
+ved
+hHm
+vEk
+auD
+aax
+aDR
+wtu
+vUT
+wfX
+aat
+aam
+aak
+aXP
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(126,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+nQm
+xEV
+xEV
+xEV
+xEV
+xEV
+cMj
+cMj
+cMj
+cMj
+cMj
+cMj
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+itM
+ead
+dln
+nbQ
+hjB
+hjB
+nZD
+hjB
+hjB
+oGw
+bhq
+mpb
+jrB
+aCC
+gyI
+sFu
+udW
+nOu
+iIw
+kgh
+kgh
+kgh
+lqc
+aOL
+kYh
+koU
+koU
+koU
+koU
+koU
+koU
+koU
+koU
+wVQ
+aOL
+kYh
+koU
+koU
+koU
+koU
+yfj
+kjH
+nOu
+hMP
+rKa
+bLb
+dJb
+kDy
+nOu
+xSb
+gAd
+rrQ
+koU
+koU
+tqQ
+nOu
+pWz
+rxe
+tZF
+mAn
+jib
+jib
+sph
+uPU
+uCr
+nee
+iNT
+pTD
+eyW
+gqv
+gki
+hOa
+lon
+eOE
+gqv
+iGn
+tAp
+emn
+jia
+jia
+jia
+jia
+aaM
+unp
+mvF
+nFl
+jUX
+vqe
+jia
+jia
+hDj
+jtd
+eTT
+sey
+cpa
+tzB
+hKH
+cLB
+ofu
+fbZ
+vEk
+oXb
+wDi
+vxU
+dMs
+aav
+aav
+vxU
+vEk
+vEk
+fcD
+aan
+aal
+aai
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(127,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+itM
+ead
+dln
+nbQ
+hjB
+hjB
+hjB
+hjB
+hjB
+oGw
+wlO
+mpb
+jrB
+aCC
+tHc
+uvM
+tux
+nOu
+nnn
+pQN
+qZg
+pQN
+aiL
+lkz
+taW
+xUr
+lZf
+qbH
+xSb
+xxE
+sBB
+jOX
+dWS
+bBM
+lkz
+mNd
+mwu
+yhb
+lMk
+xSb
+xkN
+bAe
+nOu
+mef
+fXV
+oFQ
+hLp
+hsy
+nOu
+lkz
+lkz
+rNI
+koU
+koU
+kvy
+nOu
+dBU
+rxe
+tZF
+wPO
+jib
+jib
+sph
+qNi
+uCr
+fIT
+iNT
+kCt
+vDi
+gqv
+qXk
+qXk
+gqv
+jHs
+gqv
+iGn
+tAp
+juR
+jia
+juu
+aaZ
+udf
+rIV
+aaI
+jCv
+vaT
+upY
+oiD
+htt
+pXp
+uqJ
+xDx
+xJG
+sey
+xgb
+tzB
+jEM
+cLB
+uap
+pMu
+mdP
+hgB
+acH
+eOj
+hTG
+tcB
+ucP
+lWC
+kLE
+gSi
+abh
+vfD
+aai
+aai
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(128,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ltL
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+itM
+ead
+oHI
+itM
+hjB
+hjB
+hjB
+hjB
+hjB
+itM
+ehn
+mpb
+jrB
+aCC
+tHc
+eJv
+hfm
+nOu
+nnn
+pQN
+cbv
+pQN
+mkR
+lkz
+lkz
+lkz
+lkz
+lkz
+lkz
+lkz
+lkz
+lkz
+lkz
+lkz
+lkz
+lkz
+lkz
+lkz
+lkz
+lkz
+lkz
+lkz
+vuv
+fXV
+oFQ
+oet
+ueM
+kBy
+ret
+iHm
+fNZ
+lbt
+gNy
+gNy
+kYS
+nOu
+oiU
+rxe
+tHQ
+nTf
+aZU
+xiP
+nEZ
+icW
+twS
+uCr
+rDG
+iBp
+rpE
+tfd
+vTc
+wsr
+eWM
+njT
+iNT
+kLD
+tAp
+juR
+jia
+juu
+aaZ
+aaT
+aaN
+aaJ
+vnP
+hCj
+jUX
+ouu
+jia
+ncY
+nkx
+caA
+mXk
+tno
+mZx
+cWX
+ggg
+cLB
+mfN
+haF
+tpv
+dDr
+oyF
+fvj
+uQJ
+btY
+ucP
+iIB
+vEk
+vEk
+qFJ
+pZh
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(129,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+itM
+ead
+dln
+nbQ
+hjB
+hjB
+hjB
+hjB
+hjB
+oGw
+rLq
+mpb
+jrB
+aCC
+tHc
+eog
+gxB
+nOu
+nnn
+pQN
+uJB
+pQN
+aiL
+lkz
+tro
+lqy
+lOV
+aqW
+jqy
+tVj
+ooz
+ooz
+qjb
+pDu
+lkz
+vPD
+ykK
+kOZ
+dQK
+jqy
+hFX
+bkS
+nOu
+hCD
+fXV
+oFQ
+oON
+swn
+nOu
+lkz
+lkz
+rNI
+koU
+koU
+lsT
+nOu
+fcs
+bOc
+tZF
+mAn
+jib
+jib
+lIR
+xiR
+uCr
+gAM
+iNT
+tcb
+jYi
+qIR
+cWs
+dal
+qIR
+wPQ
+iNT
+jIv
+aWj
+juR
+jia
+juu
+aaZ
+aaU
+aaP
+aaK
+jCv
+vaT
+jUX
+vaT
+qtK
+fNo
+nkx
+jtd
+ajs
+sey
+lsn
+tHf
+bfx
+cLB
+mfN
+cyf
+rJq
+aDR
+thG
+hPN
+tBo
+tcB
+ucP
+lWC
+kLE
+gSi
+abh
+vfD
+aai
+aXP
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(130,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+nQm
+xEV
+xEV
+xEV
+xEV
+xEV
+www
+www
+www
+www
+www
+www
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+itM
+ead
+yfH
+nbQ
+hjB
+hjB
+hjB
+hjB
+hjB
+oGw
+bhq
+mpb
+jrB
+aCC
+gyI
+ojE
+nUL
+nOu
+wwc
+dcL
+dcL
+dcL
+lMj
+pdx
+kYh
+koU
+koU
+koU
+koU
+koU
+koU
+koU
+koU
+kAr
+pdx
+kYh
+koU
+koU
+koU
+koU
+twL
+fgV
+nOu
+kDU
+hXD
+gMs
+hGu
+ruz
+nOu
+jqy
+vMj
+rrQ
+koU
+koU
+hlV
+nOu
+dfj
+rxe
+tZF
+wPO
+jib
+jib
+lIR
+qhL
+uCr
+wwe
+iNT
+xhJ
+wzz
+iBp
+iBp
+iBp
+iBp
+fkF
+iNT
+rcx
+tAp
+juR
+jia
+jia
+jia
+jia
+aaQ
+vbE
+lId
+nFl
+jUX
+kwX
+jia
+jia
+nAP
+jtd
+qkj
+sey
+wIt
+tHf
+aaf
+cLB
+dMe
+vfb
+qQa
+lPp
+tGw
+nyb
+qiB
+aaw
+aaw
+vxU
+vEk
+vEk
+fcD
+aam
+aak
+aai
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(131,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+nQm
+nQm
+www
+www
+www
+www
+www
+www
+lhv
+vWE
+ech
+nVR
+www
+www
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+itM
+ead
+fJW
+nbQ
+hjB
+hjB
+hjB
+hjB
+hjB
+oGw
+bhq
+wuo
+jrB
+tEv
+cof
+cof
+cof
+kHY
+tCS
+tCS
+tCS
+tCS
+tCS
+gUh
+tCS
+tCS
+tCS
+tCS
+tCS
+tCS
+tCS
+tCS
+tCS
+tCS
+tjd
+tCS
+jyQ
+tCS
+tCS
+tCS
+dzd
+nel
+nOu
+nOu
+nOu
+nOu
+nOu
+nOu
+nOu
+jpe
+hhq
+clX
+tML
+iTu
+mce
+tNr
+gHs
+bOn
+eqh
+nTf
+nOb
+jib
+lIR
+dxc
+iNT
+iNT
+iNT
+etS
+oYU
+yck
+iBp
+wJJ
+iBp
+fkF
+iNT
+uxa
+tAp
+juR
+jia
+jia
+jia
+jia
+jia
+aaL
+lgz
+aaG
+aaB
+vaT
+isR
+jia
+oNO
+jtd
+tPJ
+sey
+kKg
+xxo
+sAP
+cLB
+dMe
+pKM
+vUT
+ktN
+qes
+vEk
+fkK
+tCg
+aDR
+qzs
+vUT
+jfA
+aau
+aan
+aal
+aai
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(132,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+oWr
+oWr
+oWr
+oWr
+oWr
+oWr
+oWr
+oWr
+oWr
+oWr
+www
+dei
+kJA
+kJA
+kSF
+ifz
+aKX
+oiA
+frm
+aKX
+llY
+www
+www
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+ead
+oHI
+itM
+aGB
+aGB
+oRY
+aGB
+aGB
+itM
+iMD
+mpb
+jrB
+mYG
+gyI
+gyI
+gyI
+eGv
+koU
+koU
+koU
+koU
+koU
+ikB
+koU
+koU
+koU
+koU
+koU
+koU
+koU
+koU
+koU
+koU
+vTm
+koU
+tbK
+koU
+koU
+koU
+cPd
+vGM
+mzJ
+tML
+qae
+lvx
+xtT
+tML
+mzJ
+tML
+eyg
+koU
+koU
+vTm
+koU
+eGv
+tZF
+saI
+kNx
+nTf
+rXg
+jib
+lIR
+jib
+elu
+rEd
+yku
+wQA
+xwv
+rIW
+iBp
+ljK
+iBp
+glR
+iNT
+iGn
+tAp
+juR
+jia
+abe
+aba
+aaW
+jia
+vaT
+vaT
+aaF
+uvP
+vaT
+oKo
+jia
+rfp
+gvp
+dHx
+sey
+giE
+giE
+giE
+sey
+fzr
+xTO
+ihr
+eyj
+hGV
+vEk
+vEk
+vEk
+oHs
+wPD
+ltw
+ltw
+ltw
+pZM
+tey
+tey
+tey
+dpg
+dpg
+mnb
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(133,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+lsv
+vIv
+oBI
+oWr
+cMu
+qAu
+ycc
+rzk
+giX
+gAj
+nuL
+vvK
+aLV
+aRH
+aRH
+bQe
+qwc
+oiA
+frm
+iqQ
+kJA
+kSF
+www
+www
+www
+www
+www
+umA
+umA
+umA
+umA
+umA
+umA
+umA
+umA
+umA
+umA
+umA
+umA
+jCS
+jCS
+jCS
+jCS
+jCS
+jCS
+jCS
+jCS
+jCS
+jCS
+hhH
+hhH
+hhH
+hhH
+hhH
+hhH
+hhH
+hhH
+hhH
+hhH
+hhH
+hhH
+hhH
+hhH
+hhH
+wEC
+fZw
+gon
+jDZ
+gon
+wtv
+gon
+gon
+gon
+mTD
+kvo
+jrB
+mYG
+gyI
+gyI
+msz
+nOu
+uQT
+koU
+koU
+rOJ
+xIx
+vLN
+uQT
+vnD
+rXD
+bOz
+rXD
+xqa
+rVg
+xIx
+wMp
+koU
+vTm
+xqa
+xLz
+uQT
+koU
+koU
+xqa
+uQT
+eGv
+xqa
+mFX
+msO
+wFq
+uQT
+eGv
+xqa
+rVg
+uQT
+koU
+vTm
+tKP
+nOu
+pWz
+saI
+oFc
+nTf
+ddP
+jib
+lIR
+jib
+uzW
+pnR
+pnR
+iBp
+iBp
+iBp
+iBp
+iBp
+iBp
+nLT
+iNT
+jfQ
+eWZ
+juR
+jia
+hAx
+abb
+aaS
+klw
+aaE
+aaE
+aaE
+aaC
+aaz
+aay
+jia
+qKs
+jtd
+qkj
+vxU
+fCs
+kXt
+hoy
+jtG
+oVI
+nVw
+hFW
+iXn
+fdt
+iXn
+iXn
+iXn
+nVw
+jKJ
+gYa
+mnb
+ohy
+mnb
+ohy
+dpg
+dpg
+dpg
+mnb
+mbg
+dpg
+dpg
+dpg
+dpg
+dpg
+dpg
+dpg
+dpg
+dpg
+mnb
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(134,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+oWr
+oWr
+oWr
+fAr
+wcR
+not
+nSe
+bGO
+fkD
+www
+tWQ
+wlz
+wCK
+wCK
+pnG
+ivA
+oiA
+frm
+suq
+wCK
+wCK
+wCK
+wCK
+hJg
+wCK
+mWw
+umA
+uZC
+uZC
+ntZ
+uZC
+uZC
+uZC
+uZC
+nrD
+mxb
+wsb
+umA
+nmZ
+wiB
+eyy
+cbp
+aZH
+lrf
+lrf
+lrf
+wiB
+dyJ
+hhH
+nzu
+cQy
+aPJ
+lSv
+sjA
+cQy
+nzu
+cQy
+cQy
+lSv
+cQy
+pHV
+nzu
+rsG
+xeB
+ojE
+ojE
+ojE
+ojE
+ojE
+ojE
+ojE
+ojE
+ojE
+ojE
+gyI
+mYG
+gyI
+crf
+akE
+kKd
+kKd
+oyD
+uhs
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+oyD
+eeZ
+kKd
+kKd
+gXs
+lxu
+eSG
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+lxu
+gbI
+gXs
+gXs
+dBU
+saI
+kNx
+nTf
+tTX
+wAf
+bnN
+aKk
+iNT
+dqW
+yiB
+tKW
+xbm
+xbm
+jiK
+xbm
+fgm
+naY
+iNT
+iGn
+tAp
+emn
+jia
+pVF
+abc
+aaX
+jia
+oks
+jia
+sqv
+aaD
+usS
+jia
+jia
+qKs
+jtd
+qkj
+vxU
+quZ
+opS
+ktN
+nLD
+vUT
+ktN
+qes
+vEk
+jja
+ihr
+tEx
+tEx
+gAe
+aau
+aar
+mbg
+iKm
+rto
+iOM
+xsP
+gzy
+gzy
+mbg
+voN
+voN
+voN
+dpg
+voN
+voN
+voN
+dpg
+voN
+voN
+iKm
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(135,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+oWr
+oWr
+jic
+oWr
+sQm
+hMN
+hMN
+rKf
+www
+uRJ
+ilP
+ilP
+ilP
+ilP
+ilP
+sDN
+vGC
+ilP
+ilP
+ilP
+ilP
+ilP
+ilP
+ilP
+ilP
+xnj
+miL
+vqb
+iBg
+nCc
+nCc
+nCc
+nCc
+tqk
+nCc
+niI
+aVF
+jJo
+oOD
+sPb
+vMl
+mMj
+hae
+cjN
+cjN
+cjN
+tQz
+xLO
+qYF
+qYF
+lmH
+qYF
+eof
+qYF
+qYF
+qYF
+qUx
+qYF
+vCN
+qYF
+qUx
+qYF
+ftz
+cof
+pVA
+cof
+cof
+qCI
+cof
+cof
+qrC
+cof
+cof
+cof
+iEb
+gyI
+crf
+cuv
+kKd
+oWP
+eTu
+eTu
+gWs
+lFv
+ndZ
+lFv
+mfp
+lFv
+lFv
+mfp
+uUc
+cxG
+aFH
+ivN
+uot
+woc
+rrd
+kKd
+sQK
+vJo
+vJo
+esf
+dvg
+sFf
+dvg
+api
+dvg
+dvg
+api
+dvg
+sFf
+eiY
+nsv
+gfq
+nyj
+akr
+gXs
+eWp
+saI
+kNx
+nTf
+nTf
+wPO
+fhT
+nTf
+iNT
+iNT
+iNT
+iNT
+iNT
+iNT
+iNT
+iNT
+iNT
+iNT
+iNT
+cYy
+tAp
+hkb
+jia
+jia
+jia
+jia
+jia
+jia
+jia
+jia
+jia
+jia
+jia
+jia
+hDj
+jtd
+xJr
+vxU
+hpy
+hpy
+cay
+cay
+lok
+lok
+aCX
+vEk
+gjj
+axh
+eHk
+krN
+fwT
+vxU
+aas
+aaj
+aaj
+aaj
+aaj
+aaj
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aad
+aad
+aad
+aad
+aad
+aab
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(136,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+nQm
+oWr
+oWr
+oWr
+rtw
+oaA
+aDE
+uTM
+www
+itf
+jNq
+ndJ
+ndJ
+ndJ
+mjq
+gKu
+oYp
+mjq
+hlY
+mjq
+hlY
+xRT
+hlY
+mjq
+hlY
+dks
+dks
+lqB
+dks
+dks
+wdS
+wdS
+wdS
+wdS
+wdS
+tZi
+wdS
+czE
+wsW
+peA
+iPd
+fuN
+rKp
+sIv
+aNw
+nAE
+bVU
+hhH
+fKL
+cEh
+fKL
+fKL
+fKL
+fKL
+fKL
+xme
+tUr
+qgo
+rLw
+xme
+tUr
+dqm
+xeB
+msz
+yat
+oCy
+oCy
+iPo
+mBu
+gyI
+nBk
+msz
+axl
+mBu
+mYG
+gyI
+crf
+ixu
+kKd
+arV
+uxy
+gui
+gui
+gui
+gui
+gui
+riI
+xUc
+xUc
+gQk
+dya
+xUc
+xUc
+xUc
+xUc
+lAT
+wxi
+kKd
+sem
+gee
+hjG
+hjG
+hjG
+hjG
+hjG
+quK
+jEQ
+jEQ
+xoX
+qtv
+iOC
+iOC
+jEQ
+jEQ
+dnG
+kLn
+gXs
+qjE
+saI
+kFp
+atz
+dfj
+tZF
+tZF
+kFp
+reR
+mgE
+atz
+atz
+atz
+atz
+atz
+atz
+kUb
+dfj
+uJZ
+xab
+tAp
+xab
+fSU
+hkb
+ckB
+mGI
+ckB
+dKh
+ckB
+ckB
+stp
+ckB
+cYy
+fSU
+nkx
+jtd
+xJG
+vxU
+vxU
+vxU
+vxU
+vxU
+vxU
+vxU
+vxU
+vxU
+vxU
+vxU
+vxU
+vxU
+vxU
+vxU
+pOJ
+jKB
+hEM
+rBb
+jKB
+mTR
+gzy
+eRE
+noT
+eRE
+gzy
+gzy
+gzy
+gzy
+gzy
+glI
+lGF
+ggi
+aGt
+wtH
+vjZ
+oPH
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(137,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+xEV
+nQm
+nQm
+oWr
+oWr
+jWv
+ucn
+aOv
+kgI
+www
+xgp
+tCO
+eKQ
+jQK
+cNz
+vVH
+uZt
+acD
+aLV
+pyi
+mfy
+pyi
+mfy
+pyi
+kJA
+bfM
+dks
+nIv
+akv
+coz
+qdh
+wdS
+kXE
+ual
+gVf
+nBd
+gLm
+qoJ
+jfu
+wsW
+qeT
+qeT
+fuN
+rKp
+rLI
+lZE
+xyV
+mqP
+lFs
+lFs
+lFs
+lFs
+lFs
+lFs
+lFs
+lFs
+lFs
+kcZ
+lFs
+rwo
+rwo
+rWL
+rwo
+rwo
+rwo
+rwo
+rwo
+rwo
+btA
+btA
+myy
+wMQ
+btA
+uiK
+uiK
+nHj
+xyY
+oYr
+oFn
+kKd
+arV
+fil
+lvT
+lvT
+lvT
+lvT
+lvT
+lvT
+lvT
+ncz
+nxV
+rdi
+gKs
+ncz
+lvT
+lvT
+lBp
+wxi
+kKd
+sem
+cyD
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+bpY
+kLn
+gXs
+oiU
+tyw
+sgz
+sgz
+sgz
+sgz
+sgz
+sgz
+kSe
+sgz
+sgz
+vwE
+sgz
+sgz
+sgz
+sgz
+wjr
+sgz
+oCB
+iem
+hrw
+iem
+gBA
+iem
+iem
+wja
+iem
+iem
+qBj
+iem
+esW
+iem
+iem
+gBA
+uqJ
+ykC
+nkx
+lpf
+xJG
+cMM
+dTM
+eqj
+fOo
+eSq
+jAV
+cMM
+jAV
+hRb
+jAV
+dTM
+dHk
+xsP
+xwm
+gMK
+gMK
+gMK
+gMK
+apr
+gzy
+eRE
+eRE
+eRE
+gzy
+tUV
+rZM
+rZM
+gzy
+sTM
+bmu
+uNY
+asy
+eqf
+aac
+ydq
+iav
+wuT
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(138,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+xEV
+xEV
+xEV
+nQm
+nQm
+oWr
+wcS
+wcS
+wcS
+mHS
+www
+www
+www
+www
+www
+www
+www
+idc
+xRT
+kSF
+pyi
+kJA
+pyi
+kJA
+pyi
+kSF
+pyi
+dks
+xPV
+qdn
+wUy
+fxW
+wdS
+isf
+sjW
+hXk
+xQa
+qwk
+qoJ
+jfu
+iOv
+hGE
+hGE
+iOv
+rKp
+rLI
+lME
+crG
+eKH
+lFs
+mOC
+rLT
+xPS
+lFs
+lWl
+dtF
+ssz
+cTt
+eNI
+xxd
+rwo
+gMY
+xLb
+oao
+cFG
+yhY
+tqj
+xJU
+cZC
+btA
+xIR
+lzk
+sTt
+mUj
+uiK
+hpv
+goB
+uxs
+cHK
+dOA
+kKd
+arV
+fil
+lvT
+lvT
+ncz
+ncz
+vfq
+aHq
+ncz
+ncz
+vxc
+nkL
+tSg
+ncz
+ncz
+lvT
+lBp
+wxi
+kKd
+sem
+cyD
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+fVa
+fVa
+fVa
+fVa
+iUF
+ihN
+tMh
+bpY
+kLn
+gXs
+dBU
+tZF
+tZF
+eqh
+peF
+hMk
+peF
+jFc
+xrQ
+peF
+peF
+rzu
+qQU
+hMk
+pWz
+tZF
+juS
+tZF
+uJZ
+xab
+tAp
+xab
+fSU
+lnV
+jCe
+uso
+bsK
+xab
+nwW
+rqt
+uso
+nqC
+bsK
+fSU
+nkx
+gfY
+hIK
+gCW
+hIK
+hIK
+hIK
+hIK
+hIK
+kXe
+hIK
+uOk
+hIK
+waj
+hIK
+ujy
+xJr
+xsP
+ahy
+lMc
+hsO
+hsO
+hsO
+hsO
+rPi
+eaE
+inm
+fDo
+gKJ
+eqN
+nGM
+ojI
+gzy
+rQS
+hCT
+nYH
+atZ
+ktu
+ktu
+bTg
+iav
+iav
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(139,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+qxi
+dpH
+dpH
+qxi
+xEV
+xEV
+nQm
+nQm
+xEV
+xEV
+www
+www
+tGv
+tGv
+tGv
+tGv
+tGv
+tGv
+tGv
+tGv
+www
+dks
+oLo
+nZY
+wLS
+hSo
+wdS
+gRt
+vQj
+mul
+sxd
+eCw
+qoJ
+jfu
+iOv
+iOv
+iOv
+iOv
+rKp
+rLI
+lME
+ijT
+tRU
+lFs
+fdK
+rLT
+egb
+lFs
+tha
+mfT
+hse
+hse
+bxL
+ycS
+rwo
+wjK
+uBQ
+bAW
+bDn
+rwo
+rrM
+iDc
+wHM
+btA
+rti
+fpX
+cRL
+hpH
+uiK
+wWa
+qnL
+rgI
+rgI
+xXH
+kKd
+arV
+fil
+lvT
+ncz
+ncz
+qLe
+pnw
+lOK
+uAS
+rkp
+dEL
+hjh
+cTT
+xFy
+gqr
+uQs
+lBp
+wxi
+kKd
+sem
+cyD
+cJN
+fVa
+stN
+fVa
+stN
+fVa
+fVa
+fVa
+vQn
+rhS
+cev
+era
+imb
+tMh
+bpY
+kLn
+gXs
+hVa
+iCh
+fmv
+hVa
+hVa
+hVa
+hVa
+hVa
+hVa
+hVa
+hVa
+hVa
+hVa
+hVa
+hVa
+adT
+eYA
+hVa
+hVa
+bsK
+tAp
+rqt
+bie
+bie
+bie
+bie
+bie
+veB
+klO
+jSE
+jSE
+jSE
+jSE
+jSE
+nAP
+oRl
+nkx
+lpf
+nkx
+nkx
+nkx
+xpM
+ibx
+nAP
+nkx
+ewZ
+xpM
+npf
+nAP
+jtd
+qkj
+xsP
+xwm
+tsj
+dKQ
+gMK
+gMK
+ivr
+gzy
+wer
+eRE
+eOp
+gzy
+qFg
+rZM
+rZM
+gzy
+sTM
+njl
+dmk
+atZ
+ktu
+ktu
+xRS
+ikn
+wgt
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(140,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+dks
+dks
+dks
+dks
+dks
+wdS
+wdS
+wdS
+wdS
+wdS
+wdS
+wdS
+fCT
+iOy
+xCv
+sqB
+onO
+ctk
+icB
+lME
+wAz
+evn
+lFs
+ijz
+rLT
+vyZ
+lFs
+mTc
+emF
+kbb
+sNR
+vpd
+pfJ
+rwo
+qkO
+nog
+jvX
+lRH
+rwo
+ffb
+ccN
+haG
+btA
+qxq
+pWN
+pWN
+dIm
+uiK
+iLf
+oPK
+xUv
+rgI
+cvm
+kKd
+arV
+fil
+lvT
+gKs
+nta
+ahD
+kDE
+fiU
+pJe
+qKg
+hmp
+nuF
+bMy
+bwn
+gqr
+gqr
+lBp
+wxi
+kKd
+sem
+cyD
+fVa
+fVa
+ofh
+fVa
+vEd
+tou
+rQB
+fVa
+plo
+uzI
+qVL
+njd
+lMJ
+tMh
+bpY
+kLn
+gXs
+vQf
+gUm
+gUm
+rdZ
+god
+kJt
+bcD
+god
+god
+god
+god
+bcD
+iYd
+rRR
+uYX
+bHp
+dQz
+qct
+hVa
+cYy
+tAp
+emn
+bie
+tll
+bLH
+dbd
+bie
+kaM
+rwb
+eFo
+uzg
+uzg
+cjb
+jSE
+oNO
+oRl
+xpM
+iaL
+iaL
+cNK
+sCn
+iaL
+iaL
+iaL
+cNK
+qig
+iaL
+iaL
+qKs
+jtd
+qkj
+xsP
+sAX
+kfa
+ndN
+ndN
+ndN
+xbV
+gzy
+lSo
+lZt
+kQI
+gzy
+gzy
+gzy
+gzy
+gzy
+qpg
+geU
+dmk
+atZ
+heD
+tuN
+heD
+ktu
+bTg
+iav
+wuT
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(141,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+xEV
+nQm
+nQm
+nQm
+nQm
+xEV
+xEV
+xEV
+xEV
+wdS
+jCS
+fPq
+fPq
+fPq
+fPq
+fPq
+fPq
+fPq
+fPq
+jCS
+lFs
+wVi
+olw
+nir
+hbG
+hse
+yad
+gkx
+gbr
+fkd
+hAT
+rwo
+mdc
+jvX
+jvX
+rrl
+rwo
+nis
+ccN
+gTX
+btA
+lKV
+dJw
+nTk
+oDM
+uiK
+uiK
+uiK
+ncr
+lYB
+vlN
+kKd
+arV
+fil
+lvT
+xMu
+nKT
+ces
+kDE
+rsv
+xFR
+xFR
+xFR
+kHv
+gxw
+nMs
+eCl
+lvT
+lBp
+wxi
+kKd
+sem
+cyD
+jnf
+nhn
+oiz
+fEH
+iBn
+dMm
+iKh
+fEH
+aMe
+uzI
+ntb
+fvV
+jwP
+cJN
+bpY
+kLn
+gXs
+czY
+uXj
+scQ
+scQ
+scQ
+scQ
+rpl
+lrz
+lrz
+lrz
+lrz
+gEi
+rKg
+ezt
+lrz
+lrz
+pzJ
+gUm
+kdc
+xab
+tAp
+juR
+bie
+pSN
+gyf
+tRS
+bie
+sKO
+fts
+gKD
+ect
+ect
+vTV
+jSE
+qKs
+oRl
+qkj
+iaL
+jqu
+mLu
+mLu
+baU
+rLH
+szX
+vOM
+gLh
+hGR
+iaL
+qKs
+jtd
+qkj
+xsP
+xwm
+pFd
+uwE
+gMK
+gMK
+hby
+gzy
+gzy
+gzy
+gzy
+oPi
+oPi
+oPi
+oPi
+oPi
+sTM
+njl
+pTp
+atZ
+oeg
+fag
+eUW
+ktu
+bTg
+iav
+iav
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(142,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+xEV
+lFs
+lFs
+lFs
+lFs
+lFs
+lFs
+lFs
+lFs
+lFs
+lFs
+lFs
+rwo
+rlN
+kpT
+mgs
+tJy
+rwo
+aAV
+ccN
+bkH
+btA
+njQ
+fvL
+tnP
+lzn
+uiK
+xEV
+uiK
+uiK
+uiK
+uiK
+kKd
+oWP
+fil
+lvT
+cMP
+rKb
+tHG
+cuB
+sHQ
+vGF
+vGF
+vGF
+vGF
+aFA
+eVe
+eCl
+lvT
+xmx
+rrd
+kKd
+sQK
+cyD
+gzn
+mnn
+thw
+bTd
+dMm
+dMm
+nni
+mkU
+kxx
+tpm
+cIM
+jHX
+eLM
+egj
+qFz
+akr
+gXs
+vQf
+sNH
+pmD
+pmD
+pmD
+pmD
+idy
+tzn
+idy
+tzn
+jeH
+idy
+ccq
+idy
+idy
+idy
+aIg
+gUm
+adT
+xab
+tAp
+juR
+bie
+hQz
+jfX
+jfJ
+bie
+eYr
+rwb
+gKD
+owV
+owV
+tjn
+jSE
+qKs
+oRl
+qkj
+iaL
+uqw
+mLu
+mLu
+mLu
+rEX
+apA
+apA
+ruv
+vfl
+iaL
+oNO
+jtd
+qkj
+xsP
+ahy
+pMk
+ndN
+ndN
+ndN
+apr
+rBb
+rBb
+rBb
+mTR
+oPi
+gsP
+fkW
+gsP
+oPi
+sTM
+njl
+dmk
+atZ
+aHf
+ktu
+ktu
+ktu
+xRS
+ikn
+wgt
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(143,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+nQm
+nQm
+xEV
+xEV
+xEV
+nQm
+nQm
+xEV
+xEV
+xEV
+rwo
+rwo
+rwo
+rwo
+rwo
+rwo
+rwo
+rwo
+rwo
+btA
+btA
+btA
+btA
+btA
+xEV
+xEV
+xEV
+xEV
+uiK
+uiK
+kKd
+arV
+fil
+lvT
+hZq
+gtk
+ces
+kDE
+sHQ
+rAw
+rAw
+blO
+blO
+aFA
+nas
+lZG
+lvT
+lBp
+wxi
+kKd
+sem
+cyD
+fSI
+lGm
+gAU
+fEH
+iBn
+iBn
+hsz
+fVa
+fEH
+vMu
+fVa
+iup
+iry
+cJN
+pLX
+kLn
+gXs
+vQf
+sNH
+pmD
+pmD
+pmD
+idy
+idy
+dus
+lUK
+vvJ
+idy
+ksy
+kQm
+kwr
+vKc
+xeV
+aIg
+swx
+hVa
+bsK
+tAp
+juR
+bie
+fhE
+jfX
+gei
+bie
+jsf
+rwb
+gKD
+ubS
+ect
+oKC
+jSE
+xOX
+oRl
+qkj
+iaL
+mlM
+mLu
+mLu
+mLu
+mLu
+mLu
+mLu
+xVb
+hrX
+iaL
+ezs
+jtd
+qkj
+xsP
+pqm
+pMk
+gMK
+gMK
+gMK
+ndN
+gMK
+gMK
+gMK
+xbV
+oPi
+gsP
+lIy
+gsP
+oPi
+sTM
+njl
+dmk
+atZ
+jDV
+heD
+tuN
+tuN
+heD
+ktu
+bTg
+iav
+wuT
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(144,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+nQm
+nQm
+xEV
+xEV
+xEV
+nQm
+nQm
+xEV
+xEV
+btA
+btA
+xEV
+xEV
+cwA
+cwA
+xEV
+xEV
+kKd
+kKd
+arV
+fil
+lvT
+gKs
+cDX
+ipz
+kDE
+isj
+vGF
+vGF
+vGF
+vGF
+pUC
+eqp
+gqr
+uQs
+lBp
+wxi
+kKd
+sem
+cyD
+fVa
+fVa
+dHD
+fVa
+sCg
+vxK
+rrP
+fVa
+lDY
+tTZ
+sGU
+olq
+yit
+tMh
+pLX
+kLn
+gXs
+vQf
+sNH
+pmD
+idy
+tzn
+idy
+idy
+thD
+mGP
+vnd
+idy
+cbA
+hrh
+vtK
+dVs
+xeV
+aIg
+hKc
+hVa
+rcx
+tAp
+juR
+bie
+rPk
+oTL
+ajM
+bep
+fEs
+vei
+owV
+owV
+owV
+oKC
+jSE
+epN
+oRl
+xJr
+imA
+nEx
+qQv
+aLB
+aei
+wcO
+mdE
+aLB
+knX
+qQv
+imA
+qKs
+jtd
+qkj
+xsP
+hfj
+eRh
+ivr
+ulL
+xGP
+xGP
+xGP
+xGP
+xGP
+rvG
+oPi
+kQv
+xii
+nWY
+oPi
+sTM
+njl
+dmk
+atZ
+uWu
+fag
+fag
+qQn
+haM
+rnt
+nDU
+iav
+iav
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(145,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+xEV
+cwA
+cwA
+xEV
+xEV
+kKd
+kKd
+fEU
+emt
+fil
+lvT
+ncz
+ncz
+dTw
+flk
+eTt
+xHV
+wRB
+usC
+wRB
+mgQ
+kxZ
+gqr
+gqr
+lBp
+wxi
+kKd
+sem
+cyD
+cJN
+fVa
+stN
+fVa
+stN
+fVa
+fVa
+fVa
+uWT
+rNe
+jWh
+shN
+imb
+tMh
+pLX
+kLn
+gXs
+vQf
+sNH
+idy
+idy
+lDn
+lZN
+idy
+qGj
+vPp
+idy
+idy
+tHB
+bKr
+nCe
+cqB
+xeV
+aIg
+sgO
+hVa
+iuL
+tAp
+juR
+bie
+nte
+xua
+jfX
+jjo
+owV
+rwb
+eXr
+mzc
+nDD
+oKC
+jSE
+nok
+nLe
+dHx
+imA
+hVm
+iNm
+iNm
+iNm
+gXj
+iNm
+iNm
+lfI
+dDf
+imA
+xOX
+jtd
+qkj
+xsP
+xsP
+yij
+xsP
+xsP
+xsP
+xsP
+xsP
+xsP
+xsP
+xsP
+oPi
+oPi
+hxk
+oPi
+oPi
+sTM
+njl
+pTp
+atZ
+ktu
+ktu
+ktu
+aHf
+ktu
+ktu
+xRS
+ikn
+wgt
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(146,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+kKd
+kKd
+fEU
+emt
+eTu
+fil
+lvT
+lvT
+ncz
+ncz
+vfq
+aHq
+ncz
+ncz
+ncz
+ncz
+gKs
+ncz
+ncz
+lvT
+lBp
+wxi
+kKd
+sem
+cyD
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+fVa
+fVa
+gPg
+ojA
+sii
+blD
+tMh
+pLX
+kLn
+gXs
+vQf
+sNH
+mdR
+rjE
+nSv
+jmy
+idy
+nIp
+vsW
+idW
+idy
+dTq
+czV
+aRI
+emW
+pmD
+aIg
+sgO
+hVa
+iGn
+tAp
+juR
+bie
+hIa
+jfX
+ikj
+bie
+rPN
+rwb
+igu
+fwE
+tYF
+qcz
+jSE
+qKs
+oRl
+qkj
+imA
+uBe
+iNm
+fnc
+eAW
+eAW
+eAW
+mqv
+kfO
+sST
+imA
+qKs
+jtd
+xJr
+lro
+wha
+hpe
+nsn
+ggy
+xKp
+ggy
+ggy
+uVx
+oPi
+cQE
+hjQ
+vfm
+xQZ
+kAp
+oPi
+qpg
+geU
+dmk
+ydX
+atZ
+ktu
+cmI
+saN
+wkl
+wTp
+oac
+ktu
+bTg
+iav
+wuT
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(147,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+kKd
+kKd
+kKd
+arV
+eTu
+eTu
+fil
+lvT
+lvT
+lvT
+lvT
+lvT
+lvT
+lvT
+lvT
+lvT
+lvT
+lvT
+lvT
+lvT
+lvT
+lBp
+gWs
+kKd
+ank
+cyD
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+cJN
+pLX
+kLn
+gXs
+czY
+sNH
+qoM
+qDn
+pmr
+dvl
+sWF
+qfx
+qfx
+qfx
+wLJ
+flu
+pEF
+xPj
+unl
+pmD
+aIg
+sgO
+hVa
+iGn
+tAp
+juR
+bie
+bQR
+jfX
+jfJ
+bie
+lPb
+wed
+owV
+owV
+owV
+pwT
+jSE
+qKs
+oRl
+qkj
+imA
+inK
+iNm
+gWG
+fyp
+kMk
+kMk
+sUH
+pcO
+uki
+imA
+qKs
+jtd
+qkj
+lro
+pkU
+bsM
+hhN
+jDv
+jDv
+jDv
+jDv
+bMo
+aVI
+ovS
+dWr
+dWr
+dWr
+iSg
+oPi
+sTM
+jLA
+tnB
+fat
+atZ
+ktu
+acl
+eJX
+bJH
+hBU
+hBU
+ktu
+vgp
+iav
+iav
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(148,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+kKd
+kKd
+kKd
+whk
+uBN
+wMF
+dMG
+baZ
+baZ
+baZ
+baZ
+baZ
+baZ
+baZ
+baZ
+baZ
+baZ
+baZ
+baZ
+baZ
+baZ
+oBQ
+eTu
+ejb
+vJo
+nFG
+rMx
+rMx
+rMx
+rMx
+rMx
+dWk
+jFJ
+jFJ
+lmx
+jFJ
+jFJ
+jFJ
+jFJ
+jFJ
+sPR
+kLn
+gXs
+vQf
+sNH
+vKd
+lcw
+nSv
+vsW
+fKY
+gNG
+vsW
+hrn
+fKY
+nGZ
+fLO
+hYX
+unl
+pmD
+aIg
+sgO
+hVa
+iGn
+tAp
+emn
+bie
+pSN
+jfX
+tRS
+bie
+vEr
+arK
+dxV
+dxV
+taQ
+leR
+jSE
+oNO
+oRl
+qkj
+imA
+hZv
+iNm
+gWG
+kMk
+kMk
+kMk
+sUH
+dnj
+bqc
+imA
+epN
+jtd
+qkj
+lro
+arw
+gaf
+lWf
+iYR
+qRd
+sgW
+sgW
+cxz
+oPi
+tui
+hmz
+aqD
+jbR
+sky
+oPi
+erS
+lMq
+dhO
+kMR
+atZ
+ktu
+dsO
+rZt
+jDV
+iHb
+vxS
+ktu
+ktu
+ktu
+ktu
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(149,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+kKd
+kKd
+kKd
+rpN
+uBN
+wMF
+eTu
+eTu
+eTu
+eTu
+gZw
+vlu
+vlu
+olS
+vlu
+vlu
+vlu
+vlu
+vlu
+kra
+vUf
+kKd
+euW
+xgL
+xgL
+xgL
+xgL
+pLx
+xgL
+sjd
+xgL
+xgL
+sjd
+xgL
+pLx
+xgL
+vLQ
+vJo
+vJo
+akr
+gXs
+vQf
+sNH
+idy
+idy
+feH
+xic
+ePO
+sTT
+vsW
+xTw
+euK
+pBa
+wey
+hVf
+xQE
+xeV
+aIg
+sgO
+hVa
+iGn
+tAp
+juR
+bie
+dHI
+iUL
+dyF
+bie
+qhi
+bWJ
+uKw
+owV
+bWJ
+ntM
+jSE
+qKs
+oRl
+qkj
+imA
+vJd
+iNm
+gWG
+hwZ
+kMk
+rNo
+sUH
+tNO
+wVk
+imA
+dzc
+jtd
+xJG
+lro
+lro
+ggX
+bvO
+lro
+lro
+lro
+lro
+lro
+oPi
+oPi
+oPi
+oPi
+oPi
+oPi
+oPi
+atZ
+sOC
+atZ
+atZ
+atZ
+ktu
+acl
+vpC
+hyo
+lwd
+jSK
+ktu
+ktu
+ktu
+ktu
+ktu
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(150,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+kKd
+kKd
+kKd
+whk
+uBN
+uBN
+wNt
+uBN
+pQI
+uBN
+uBN
+pQI
+uBN
+wNt
+uBN
+uBN
+uBN
+uBN
+kKd
+kKd
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+gXs
+cDl
+vLQ
+vJo
+kLn
+gXs
+vQf
+sNH
+pmD
+idy
+tzn
+idy
+idy
+uSR
+pzF
+tXS
+ouM
+lRz
+xwL
+wdW
+dVs
+xeV
+aIg
+sgO
+hVa
+iGn
+tAp
+juR
+bie
+bie
+bie
+bie
+bie
+quG
+iVY
+jWP
+eBB
+wsU
+oBU
+jWP
+qKs
+oRl
+qkj
+imA
+llw
+iNm
+rVJ
+gLU
+gLU
+gLU
+aSF
+imX
+mfj
+imA
+qKs
+jtd
+nkx
+lpf
+sVd
+nkx
+oRl
+nCG
+jAV
+jAV
+jAV
+jAV
+jAV
+eqj
+nBE
+jAV
+jAV
+jAV
+jAV
+hDj
+wRh
+xJG
+nBE
+jAV
+ktu
+hPP
+iHb
+sME
+sxH
+sxH
+ktu
+ktu
+ktu
+ktu
+ktu
+ktu
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(151,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+kKd
+xEV
+xEV
+xEV
+xEV
+xEV
+nQm
+nQm
+nQm
+nQm
+xEV
+xEV
+xEV
+xEV
+xEV
+gXs
+gXs
+sem
+vJo
+esf
+gXs
+jng
+sNH
+pmD
+pmD
+pmD
+idy
+idy
+ftL
+mDz
+jHm
+ouM
+fzd
+oba
+ggU
+uFV
+xeV
+aIg
+hKc
+hVa
+uBG
+tAp
+juR
+sTs
+kTN
+jXV
+juV
+eTc
+ceR
+cwu
+jWP
+mkJ
+hFQ
+mMF
+jWP
+rfp
+jxP
+qkj
+imA
+cgS
+iNm
+fnc
+eAW
+eAW
+eAW
+mqv
+imX
+lKh
+imA
+oNO
+eQM
+hIK
+gCW
+hIK
+hIK
+cjD
+hIK
+hIK
+hIK
+hIK
+hIK
+hIK
+hIK
+hIK
+hIK
+rku
+hIK
+hIK
+hIK
+xYT
+uAE
+uAE
+uAE
+iRk
+vJw
+riD
+woo
+rrE
+fhv
+ktu
+ktu
+ktu
+ktu
+ktu
+ktu
+ktu
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(152,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+nQm
+nQm
+nQm
+nQm
+xEV
+xEV
+xEV
+xEV
+xEV
+nQm
+nQm
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+gXs
+cDl
+vLQ
+vJo
+nXp
+gUm
+sNH
+pmD
+pmD
+pmD
+pmD
+idy
+tzn
+iRY
+dhb
+gBv
+idy
+nwH
+gbV
+idy
+idy
+aIg
+sgO
+hVa
+rcx
+tAp
+juR
+sTs
+lKu
+lKu
+lKu
+jyt
+ceR
+hzM
+jWP
+ygo
+oEm
+rvu
+jWP
+qKs
+oRl
+xJr
+imA
+lbq
+nBm
+iqp
+oMc
+hEI
+xKO
+bmV
+kZe
+bsc
+imA
+qKs
+oRl
+nkx
+lpf
+xpM
+iVX
+bIu
+iVX
+iVX
+iVX
+bIu
+iVX
+iVX
+npf
+iVX
+iVX
+aoY
+sxY
+bIu
+iVX
+kFq
+iVX
+iVX
+iVX
+ktu
+ktu
+ktu
+ktu
+ktu
+ktu
+ktu
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(153,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+gXs
+gXs
+gXs
+gXs
+gXs
+hAu
+hyc
+gNn
+gNn
+gNn
+gNn
+gNn
+gNn
+gNn
+gNn
+gNn
+gNn
+gNn
+gNn
+gNn
+gNn
+evT
+sgO
+hVa
+ixj
+tAp
+juR
+sTs
+mWz
+eXf
+xCA
+xsZ
+iNO
+wcU
+jWP
+eCG
+eKm
+ciy
+jWP
+dzc
+oRl
+qkj
+imA
+imA
+imA
+imf
+imA
+imA
+imA
+imA
+imA
+imA
+imA
+aoV
+cdy
+aoV
+aoV
+aoV
+aoV
+dbe
+dbe
+dbe
+dbe
+dbe
+dbe
+dbe
+dbe
+dbe
+oWe
+oWe
+oWe
+oWe
+oWe
+oWe
+oWe
+oWe
+oWe
+ktu
+ktu
+ktu
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(154,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+abg
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+gXs
+gXs
+gXs
+rdE
+rGT
+tYc
+gUm
+gUm
+gUm
+nIU
+enZ
+xtd
+xQK
+xQK
+tjX
+xQK
+xQK
+xQK
+xQK
+vHq
+sgO
+hVa
+iGn
+tAp
+pIa
+sTs
+boc
+phG
+vCw
+dUF
+ceR
+hPF
+jWP
+dfl
+mUI
+dab
+jWP
+ezs
+oRl
+qkj
+pzz
+ruQ
+tAL
+kSB
+qHg
+erv
+pzz
+eFB
+iPI
+hgy
+afR
+xLf
+ifF
+gCu
+hGa
+vDT
+xdh
+dbe
+ngg
+sUK
+ndC
+qvR
+dHz
+jUO
+iDN
+dbe
+oWe
+oWe
+oWe
+oWe
+oWe
+oWe
+oWe
+oWe
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(155,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+gXs
+hVa
+hVa
+rdE
+rGT
+rGT
+wYD
+sQQ
+tYc
+pGn
+swx
+rGT
+sQQ
+iJM
+rGT
+rGT
+rGT
+rGT
+cWB
+hVa
+iGn
+tAp
+juR
+sTs
+qSs
+fyq
+cik
+dyS
+kYd
+qmL
+jWP
+mBT
+mLA
+aeX
+jWP
+oNO
+oRl
+qkj
+pzz
+sXR
+tAL
+kSB
+cgv
+mQk
+pzz
+qaU
+qaU
+afV
+afR
+ptu
+pVo
+qzW
+rbM
+uWW
+uWW
+jpM
+iRM
+hFR
+kJE
+cIJ
+cer
+cUN
+uUX
+dbe
+oWe
+oWe
+oWe
+oWe
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(156,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+nQm
+nQm
+hVa
+hVa
+hVa
+hVa
+hVa
+hVa
+hVa
+mNp
+hVa
+hVa
+hVa
+hVa
+hVa
+hVa
+hVa
+hVa
+hVa
+hVa
+iGn
+tAp
+emn
+sTs
+rcg
+rcg
+rcg
+bos
+ceR
+ceR
+jWP
+mBT
+gvL
+wBw
+jWP
+qKs
+oRl
+qkj
+pzz
+rET
+tAL
+tfU
+xfY
+xfY
+pko
+uWW
+uWW
+uWW
+uWW
+uWW
+vRM
+heN
+afV
+afV
+afV
+sAR
+dGt
+xOk
+yeN
+ouB
+tKK
+mKl
+dbe
+dbe
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(157,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+hVa
+hVa
+hVa
+qWQ
+jbK
+pBY
+csU
+pxN
+fvC
+pxN
+gaq
+csU
+sKz
+aRw
+iln
+qWQ
+iGn
+tAp
+juR
+sTs
+dNL
+kTM
+juV
+iDa
+uRt
+ixG
+jWP
+oBS
+ckM
+wOA
+jWP
+pzz
+rlq
+pzz
+pzz
+tAL
+tAL
+sim
+qHg
+erv
+pzz
+afV
+ydk
+eBy
+eBy
+eBy
+afR
+ydk
+afV
+gaC
+afR
+dbe
+dbe
+dbe
+dbe
+dbe
+qaD
+jpm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(158,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+hVa
+qWQ
+tYC
+vVN
+mxF
+mxF
+rOq
+rOq
+rOq
+rOq
+tJR
+vxd
+vxd
+qWQ
+qWQ
+rZG
+qWQ
+sTs
+sTs
+sTs
+sTs
+sTs
+sTs
+sTs
+jWP
+jWP
+jWP
+jWP
+jWP
+tAL
+sim
+jHO
+kic
+orR
+qHg
+sim
+erv
+xpr
+pzz
+mGJ
+afV
+afV
+afV
+cXW
+bxK
+aoV
+aoV
+aoV
+aoV
+dbe
+nQm
+nQm
+xEV
+xEV
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(159,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+xEV
+xEV
+qWQ
+qWQ
+qWQ
+qWQ
+csU
+vxd
+vxd
+xku
+gyq
+sLC
+eCD
+vxd
+fNw
+hOc
+sLC
+csU
+csU
+upQ
+fLC
+nJD
+csU
+pxN
+bhh
+vxd
+pzz
+gDK
+hxp
+ruO
+tAL
+uwX
+nYX
+lMZ
+xfY
+xfY
+rqW
+erv
+sJe
+pzz
+ydk
+iJj
+aoV
+aoV
+aoV
+aoV
+aoV
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(160,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+xEV
+xEV
+nQm
+nQm
+qWQ
+qWQ
+qWQ
+jbK
+ufY
+dey
+yid
+tgu
+rOq
+rOq
+rOq
+qPA
+rOq
+rOq
+rOq
+rOq
+rOq
+rOq
+rOq
+rOq
+rOq
+pko
+xfY
+xfY
+xfY
+xfY
+rqW
+tpw
+ppU
+ppU
+cZW
+erv
+erv
+pzz
+pzz
+aoV
+aoV
+aoV
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(161,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+qWQ
+qWQ
+qWQ
+csU
+csU
+inZ
+csU
+xku
+xku
+xku
+vxd
+sxM
+csU
+csU
+xku
+xku
+vxd
+csU
+jbK
+pzz
+erv
+erv
+pMV
+ppU
+tAL
+peS
+whh
+pzz
+pzz
+pzz
+pzz
+pzz
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(162,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+qWQ
+qWQ
+qWQ
+heY
+ufY
+vxd
+vxd
+aIx
+vxd
+vxd
+sxM
+csU
+csU
+csU
+jbK
+csU
+csU
+pzz
+qHg
+rkg
+erv
+pzz
+pzz
+pzz
+pzz
+pzz
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(163,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+qWQ
+qWQ
+qWQ
+csU
+vxd
+vxd
+jbK
+vxd
+vxd
+vxd
+csU
+jbK
+jbK
+bri
+gou
+pzz
+pzz
+pzz
+pzz
+pzz
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(164,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+qWQ
+qWQ
+qWQ
+awP
+ufY
+csU
+tYC
+oUN
+jbK
+qWQ
+qWQ
+qWQ
+qWQ
+qWQ
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(165,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+qWQ
+qWQ
+qWQ
+qWQ
+qWQ
+qWQ
+qWQ
+qWQ
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(166,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+xEV
+qWQ
+qWQ
+nQm
+nQm
+xEV
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(167,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+xEV
+xEV
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(168,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+evv
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(169,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+ahC
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(170,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(171,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(172,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(173,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(174,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(175,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(176,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(177,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(178,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(179,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(180,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(181,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(182,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(183,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(184,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(185,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(186,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(187,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(188,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(189,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(190,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(191,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(192,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(193,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(194,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(195,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(196,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(197,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(198,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(199,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(200,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(201,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(202,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(203,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(204,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(205,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(206,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(207,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(208,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(209,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(210,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(211,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(212,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(213,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(214,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(215,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(216,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(217,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(218,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(219,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(220,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(221,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(222,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(223,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(224,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(225,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(226,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(227,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(228,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(229,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(230,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(231,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(232,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(233,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(234,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(235,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(236,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(237,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(238,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(239,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(240,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(241,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(242,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(243,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(244,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(245,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(246,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(247,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(248,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(249,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(250,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(251,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(252,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(253,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(254,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(255,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
+(256,1,1) = {"
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+cwA
+"}
diff --git a/modular_chomp/maps/cetus/cetus-7.dmm b/modular_chomp/maps/cetus/cetus-7.dmm
new file mode 100644
index 0000000000..c77b9f32b5
--- /dev/null
+++ b/modular_chomp/maps/cetus/cetus-7.dmm
@@ -0,0 +1,89057 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aaa" = (
+/turf/unsimulated/wall,
+/area/ninja_dojo/dojo)
+"aab" = (
+/turf/unsimulated/wall,
+/area/beach)
+"aac" = (
+/turf/unsimulated/wall,
+/area/syndicate_station)
+"aad" = (
+/turf/unsimulated/wall,
+/area/syndicate_mothership/elite_squad)
+"aae" = (
+/turf/unsimulated/mineral,
+/area/ninja_dojo/dojo)
+"aaf" = (
+/turf/unsimulated/beach/sand{
+ density = 1;
+ opacity = 1
+ },
+/area/beach)
+"aag" = (
+/turf/unsimulated/wall,
+/area/skipjack_station)
+"aah" = (
+/turf/unsimulated/wall,
+/area/prison/solitary)
+"aai" = (
+/obj/structure/table/rack,
+/obj/item/camera_film,
+/obj/item/camera_film,
+/obj/item/camera_film,
+/obj/item/camera_film,
+/obj/item/camera_film,
+/obj/item/camera_film,
+/obj/item/camera,
+/obj/item/camera,
+/obj/item/camera,
+/obj/item/camera,
+/obj/item/camera,
+/obj/item/camera,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"aak" = (
+/obj/structure/bookcase{
+ name = "bookcase (Fiction)"
+ },
+/obj/item/book/bundle/custom_library/fiction/taleoftherainbowcat,
+/obj/item/book/bundle/custom_library/fiction/silence,
+/obj/item/book/bundle/custom_library/fiction/raissue147,
+/obj/item/book/bundle/custom_library/fiction/raissue142,
+/obj/item/book/bundle/custom_library/fiction/manfromsnowyriver,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"aal" = (
+/obj/machinery/vending/cigarette{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/bar)
+"aam" = (
+/obj/machinery/vending/cigarette{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeobserve)
+"aao" = (
+/obj/machinery/vending/coffee{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeobserve)
+"aap" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"aaq" = (
+/obj/machinery/vending/snack{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeobserve)
+"aar" = (
+/obj/machinery/vending/cola{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"aas" = (
+/obj/machinery/vending/coffee{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/bar)
+"aat" = (
+/obj/machinery/vending/snack{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"aau" = (
+/obj/machinery/floor_light{
+ anchored = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/bar)
+"aav" = (
+/obj/machinery/floor_light{
+ anchored = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/bar)
+"aaw" = (
+/obj/machinery/vending/hydroseeds{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass0";
+ name = "grass"
+ },
+/area/wizard_station)
+"aax" = (
+/obj/machinery/vending/hydronutrients{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "grass0";
+ name = "grass"
+ },
+/area/wizard_station)
+"aay" = (
+/obj/machinery/floor_light{
+ anchored = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/bar)
+"aaz" = (
+/obj/machinery/computer/secure_data{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"aaA" = (
+/obj/machinery/vending/hydronutrients{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"aaB" = (
+/obj/machinery/vending/hydroseeds{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"aaC" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"aaD" = (
+/obj/machinery/computer/arcade/orion_trail{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"aaE" = (
+/obj/machinery/computer/arcade/battle{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"aaF" = (
+/obj/machinery/computer/card{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"aaG" = (
+/obj/machinery/computer/crew{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/paleblue/full,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"aaH" = (
+/obj/machinery/vending/coffee{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"aaI" = (
+/obj/machinery/vending/snack{
+ dir = 4;
+ name = "hacked Getmore Chocolate Corp";
+ prices = list()
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"aaJ" = (
+/obj/machinery/vending/cigarette{
+ dir = 4;
+ name = "hacked cigarette machine";
+ prices = list();
+ products = list(/obj/item/storage/fancy/cigarettes=10,/obj/item/storage/box/matches=10,/obj/item/flame/lighter/zippo=4,/obj/item/clothing/mask/smokable/cigarette/cigar/havana=2)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"aaK" = (
+/obj/machinery/computer/arcade/battle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"aaL" = (
+/obj/machinery/vending/assist{
+ contraband = null;
+ dir = 1;
+ name = "Old Vending Machine";
+ products = list(/obj/item/assembly/prox_sensor=5,/obj/item/assembly/signaler=4,/obj/item/assembly/infra=4,/obj/item/assembly/prox_sensor=4,/obj/item/handcuffs=8,/obj/item/flash=4,/obj/item/cartridge/signal=4,/obj/item/clothing/glasses/sunglasses=4)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"aaM" = (
+/obj/machinery/vending/sovietsoda{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"aaN" = (
+/obj/machinery/vending/boozeomat{
+ dir = 1;
+ req_access = null
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"aaO" = (
+/obj/machinery/vending/engivend{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"aaP" = (
+/obj/machinery/vending/tool{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"aaT" = (
+/obj/machinery/biogenerator,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"aaU" = (
+/obj/machinery/honey_extractor,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"aaV" = (
+/obj/machinery/seed_storage/garden{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"aaW" = (
+/obj/machinery/vending/hydronutrients{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"aaX" = (
+/obj/machinery/smartfridge,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/centcom/bar)
+"aaY" = (
+/obj/machinery/vending/boozeomat,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/centcom/bar)
+"aaZ" = (
+/obj/machinery/computer/pod{
+ dir = 4;
+ id = "thunderdomeaxe";
+ name = "Thunderdome Axe Supply"
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"aba" = (
+/obj/machinery/computer/pod{
+ dir = 4;
+ id = "thunderdomegen";
+ name = "Thunderdome General Supply"
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"abb" = (
+/obj/structure/table/rack,
+/obj/item/storage/toolbox/emergency{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/emergency{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/storage/toolbox/emergency{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/emergency{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"abc" = (
+/obj/machinery/computer/pod{
+ dir = 4;
+ id = "thunderdomehea";
+ name = "Thunderdome Heavy Supply"
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"abd" = (
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"abe" = (
+/obj/machinery/computer/med_data{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"abf" = (
+/obj/machinery/computer/pod{
+ dir = 4;
+ id = "thunderdome";
+ name = "Thunderdome Blast Door Control"
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"abg" = (
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"abh" = (
+/obj/machinery/computer/crew{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"abi" = (
+/obj/machinery/computer/communications{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"abj" = (
+/obj/machinery/computer/shuttle{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"abk" = (
+/obj/machinery/computer/shuttle_control{
+ dir = 1;
+ req_access = list(101);
+ shuttle_tag = "Centcom"
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"abl" = (
+/obj/machinery/computer/shuttle_control{
+ dir = 1;
+ req_access = list(101);
+ shuttle_tag = "Centcom"
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"abm" = (
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"abn" = (
+/obj/machinery/computer/power_monitor{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"abo" = (
+/obj/item/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Subversive Intercom";
+ pixel_x = 32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/obj/machinery/computer/station_alert/all{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"abp" = (
+/obj/machinery/computer/card{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"abq" = (
+/obj/machinery/computer/communications{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"abr" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"abs" = (
+/obj/machinery/computer/operating{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"abt" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "escape_pod_1_recovery_hatch";
+ locked = 1;
+ name = "Recovery Shuttle Dock 1";
+ req_access = list(13)
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"abu" = (
+/obj/machinery/computer/shuttle_control{
+ dir = 8;
+ name = "Beruang control console";
+ req_access = list(160);
+ shuttle_tag = "Trade"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"abv" = (
+/obj/machinery/computer/operating{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"abx" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Cockpit";
+ req_access = list(109)
+ },
+/turf/space,
+/area/centcom/evac)
+"acE" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"acF" = (
+/obj/structure/table/rack,
+/obj/item/gun/energy/plasmastun,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"acI" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/material/ashtray/bronze,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"acK" = (
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Reactor Room";
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"acP" = (
+/obj/structure/table/rack,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"ado" = (
+/obj/item/storage/toolbox/mechanical,
+/obj/structure/table/reinforced,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"adw" = (
+/obj/structure/table/rack,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = 32
+ },
+/obj/item/material/knife/tacknife/combatknife,
+/obj/item/material/knife/tacknife/combatknife,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"adF" = (
+/obj/structure/table/rack,
+/obj/item/gun/energy/ionrifle,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = 32
+ },
+/obj/item/gun/energy/ionrifle,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"aed" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport1/centcom)
+"aek" = (
+/obj/machinery/light,
+/obj/structure/table/standard,
+/obj/item/soap,
+/obj/item/towel{
+ color = "#0000FF"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"aeN" = (
+/obj/machinery/door/airlock/maintenance/engi{
+ name = "Vendor Storage";
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"afq" = (
+/obj/machinery/door/blast/regular{
+ id = "thunderdome";
+ name = "Thunderdome Blast Door"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome)
+"aga" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"agc" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_mothership/elite_squad)
+"agC" = (
+/obj/mecha/combat/marauder/mauler,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_mothership/elite_squad)
+"agQ" = (
+/obj/machinery/vending/boozeomat,
+/turf/simulated/shuttle/wall/dark,
+/area/shuttle/administration)
+"ahW" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/shadekin)
+"aib" = (
+/obj/machinery/mech_recharger,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_mothership/elite_squad)
+"aid" = (
+/obj/structure/bed/chair/bay/chair/padded/red/bignest{
+ name = "large shadekin nest"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/shadekin)
+"aij" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/item/beach_ball/holoball,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"aiC" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/storage/backpack/ert/engineer,
+/obj/item/storage/backpack/ert/engineer,
+/obj/item/storage/backpack/ert/engineer,
+/obj/item/storage/backpack/ert/engineer,
+/obj/item/storage/backpack/ert/engineer,
+/obj/item/storage/backpack/ert/engineer,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"aiR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"ajr" = (
+/turf/simulated/shuttle/wall/dark,
+/area/shuttle/syndicate_elite/mothership)
+"ajG" = (
+/obj/machinery/pipedispenser/disposal/orderable,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"akg" = (
+/obj/structure/table/rack,
+/obj/item/rig/ert/assetprotection,
+/obj/item/rig/ert/assetprotection,
+/obj/item/rig/ert/assetprotection,
+/obj/item/rig/ert/assetprotection,
+/obj/item/rig/ert/assetprotection,
+/obj/item/rig/ert/assetprotection,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"akj" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1;
+ icon_state = "propulsion_r"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/syndicate_elite/mothership)
+"akO" = (
+/obj/effect/floor_decal/sign/small_7/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"ala" = (
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"alt" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"alZ" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/stack/telecrystal,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"amV" = (
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"ank" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/syndicate_elite/mothership)
+"anI" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"aoc" = (
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape_pod1/centcom)
+"aoW" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"apr" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1;
+ icon_state = "propulsion_l"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/syndicate_elite/mothership)
+"apw" = (
+/obj/machinery/computer/scan_consolenew,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"arj" = (
+/obj/effect/floor_decal/sign/small_5/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"asc" = (
+/turf/simulated/mineral,
+/area/space)
+"asB" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Spaceport Security Airlock";
+ req_access = list(63)
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"asG" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"asI" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"aup" = (
+/obj/structure/closet,
+/obj/item/clothing/suit/wizrobe/magusred,
+/obj/item/clothing/head/wizard/magus,
+/obj/item/staff,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"aur" = (
+/turf/simulated/mineral,
+/area/ninja_dojo/dojo)
+"auL" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/under/cheongsam,
+/obj/item/clothing/under/hosformalmale,
+/obj/item/clothing/under/hosformalfem,
+/obj/item/clothing/under/harness,
+/obj/item/clothing/under/gladiator,
+/obj/item/clothing/under/ert,
+/obj/item/clothing/under/schoolgirl,
+/obj/item/clothing/under/redcoat,
+/obj/item/clothing/under/sexymime,
+/obj/item/clothing/under/sexyclown,
+/obj/item/clothing/under/soviet,
+/obj/item/clothing/under/space,
+/obj/item/clothing/under/swimsuit/stripper/mankini,
+/obj/item/clothing/under/suit_jacket/female,
+/obj/item/clothing/under/rank/psych/turtleneck,
+/obj/item/clothing/under/syndicate/combat,
+/obj/item/clothing/under/syndicate/combat,
+/obj/item/clothing/under/syndicate/tacticool,
+/obj/item/clothing/under/syndicate/tacticool,
+/obj/item/clothing/under/dress/sailordress,
+/obj/item/clothing/under/dress/redeveninggown,
+/obj/item/clothing/under/dress/dress_saloon,
+/obj/item/clothing/under/dress/blacktango,
+/obj/item/clothing/under/dress/blacktango/alt,
+/obj/item/clothing/under/dress/dress_orange,
+/obj/item/clothing/under/dress/maid/janitor,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"auV" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/obj/structure/bed/chair/holochair{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"auX" = (
+/turf/unsimulated/floor/snow_new,
+/area/ninja_dojo/dojo)
+"avb" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"avh" = (
+/obj/effect/step_trigger/teleporter/random{
+ teleport_z = 8;
+ teleport_x_offset = 127;
+ teleport_x = 60;
+ teleport_y = 191;
+ teleport_y_offset = 201;
+ teleport_z_offset = 8
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"awg" = (
+/obj/structure/table/steel_reinforced,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"awz" = (
+/obj/effect/floor_decal/asteroid,
+/turf/unsimulated/floor/snow_new,
+/area/ninja_dojo/dojo)
+"awC" = (
+/turf/unsimulated/beach/sand,
+/area/beach)
+"awS" = (
+/obj/structure/table/standard,
+/obj/item/material/knife/machete/hatchet,
+/obj/item/material/minihoe{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"awU" = (
+/obj/machinery/optable,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"axc" = (
+/obj/machinery/computer/timeclock/premade/east,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"axm" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Maintenance Access";
+ req_access = list(106)
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"axo" = (
+/obj/structure/table/marble,
+/obj/machinery/cash_register/civilian{
+ dir = 4
+ },
+/obj/machinery/door/blast/gate{
+ dir = 4;
+ name = "The Crap Shack";
+ id = "Maintfish"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"axM" = (
+/obj/structure/signpost,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"axP" = (
+/obj/structure/closet,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"axR" = (
+/obj/structure/table/marble,
+/obj/item/clothing/under/suit_jacket,
+/obj/item/clothing/accessory/wcoat,
+/obj/item/clothing/head/that{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/centcom/bar)
+"ayg" = (
+/turf/simulated/mineral,
+/area/skipjack_station)
+"ayE" = (
+/obj/effect/floor_decal/sign/small_4/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"azl" = (
+/turf/simulated/shuttle/wall/hard_corner,
+/area/shuttle/escape/centcom)
+"azA" = (
+/turf/simulated/floor/wood,
+/area/shadekin)
+"azD" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/item/gun/projectile/sec,
+/obj/item/gun/projectile/sec,
+/obj/item/gun/projectile/sec,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"azF" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/bar)
+"azJ" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"aAg" = (
+/obj/structure/bed/chair/office/light,
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -37
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"aAq" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/bananapeel,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/command)
+"aBz" = (
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"aBT" = (
+/mob/living/simple_mob/animal/passive/dog/corgi/puppy/Bockscar,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"aDx" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"aDT" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/structure/curtain/open/shower,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/specops)
+"aFi" = (
+/obj/structure/table/standard,
+/obj/random/projectile,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/skipjack_station)
+"aFt" = (
+/obj/effect/floor_decal/sign/small_3/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"aFz" = (
+/obj/structure/table/standard,
+/obj/item/paicard,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/skipjack_station)
+"aFE" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/wizard_station)
+"aFI" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch";
+ req_access = list(13)
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"aFN" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"aGv" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"aGN" = (
+/obj/machinery/smartfridge/chemistry,
+/turf/unsimulated/wall,
+/area/centcom/medical)
+"aGR" = (
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"aGU" = (
+/obj/effect/decal/cleanable/cobweb2{
+ icon_state = "cobweb1"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/skipjack_station)
+"aHc" = (
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/skipjack_station)
+"aHg" = (
+/obj/structure/bed,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/prison/solitary)
+"aHY" = (
+/obj/structure/closet/crate,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "vault"
+ },
+/area/shuttle/trade)
+"aJi" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/obj/random/maintenance/medical,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"aJs" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "tradestarshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"aJQ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/wall,
+/area/space)
+"aKa" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/centcom/specops)
+"aLe" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/book/manual/ripley_build_and_repair,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"aLm" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/old_tile/blue,
+/area/shadekin)
+"aMC" = (
+/obj/effect/landmark{
+ name = "prisonwarp"
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/prison/solitary)
+"aMH" = (
+/obj/structure/flight_right{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"aNu" = (
+/obj/structure/table/rack,
+/obj/item/megaphone,
+/obj/item/megaphone,
+/obj/item/megaphone,
+/obj/item/megaphone,
+/obj/item/megaphone,
+/obj/item/megaphone,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"aNI" = (
+/obj/structure/prop/machine/tgmc_console2/starts_on,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"aOK" = (
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/specops)
+"aPq" = (
+/obj/item/target/syndicate,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"aPM" = (
+/obj/structure/table/glass,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"aQa" = (
+/obj/structure/table/rack,
+/obj/item/gun/energy/sniperrifle,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"aQb" = (
+/obj/item/stool/padded,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/centcom/bar)
+"aQp" = (
+/obj/machinery/appliance/cooker/grill,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/light/broken/small,
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"aQu" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"aQA" = (
+/obj/machinery/vending/wallmed1{
+ name = "Emergency NanoMed";
+ pixel_x = -30
+ },
+/obj/structure/table/standard,
+/obj/item/defib_kit,
+/obj/item/defib_kit,
+/obj/machinery/recharger,
+/obj/item/tool/screwdriver,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"aQI" = (
+/obj/effect/floor_decal/sign/small_2/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"aQJ" = (
+/obj/item/stool/padded,
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"aQM" = (
+/obj/structure/toilet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/merchant)
+"aQR" = (
+/obj/structure/table/rack,
+/obj/item/gun/energy/gun,
+/obj/item/gun/energy/gun,
+/obj/item/gun/energy/gun,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"aSc" = (
+/obj/machinery/door/airlock/maintenance/common{
+ name = "Dormitory"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"aSL" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"aSP" = (
+/obj/item/toy/chess/pawn_white{
+ color = "teal"
+ },
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"aTe" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/gun/energy/ionrifle,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/gun/energy/ionrifle,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"aUa" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"aUi" = (
+/obj/structure/window/reinforced,
+/obj/structure/shuttle/engine/heater{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/shuttle/syndicate_elite/mothership)
+"aUk" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/sunnybush,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"aUC" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/shuttle/ninja)
+"aUJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/photocopier/faxmachine,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"aUQ" = (
+/obj/item/toy/chess/pawn_white{
+ color = "teal"
+ },
+/turf/simulated/floor/holofloor/bmarble{
+ color = "teal"
+ },
+/area/holodeck/source_chess)
+"aVA" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/shadekin)
+"aWB" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"aWE" = (
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/living)
+"aWP" = (
+/obj/effect/overlay/palmtree_l,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"aWW" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/organ/internal/stack,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"aYN" = (
+/obj/effect/overlay/palmtree_r,
+/obj/effect/overlay/coconut,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"aYO" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/obj/machinery/light/bigfloorlamp{
+ nightshift_enabled = 1;
+ pixel_y = 10
+ },
+/turf/simulated/floor/tiled/eris/bcircuit,
+/area/shadekin)
+"aZj" = (
+/obj/structure/inflatable,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"aZo" = (
+/obj/effect/floor_decal/sign/small_1/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"aZH" = (
+/obj/machinery/teleport/hub,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"aZK" = (
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Study Dormitory";
+ id_tag = "darkdorm1"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"baw" = (
+/obj/effect/map_effect/portal/master/side_a/retreat_west{
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/shadekin)
+"bay" = (
+/obj/machinery/vending/medical,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"baM" = (
+/obj/item/ore,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/skipjack_station)
+"bbd" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"bcg" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/medical)
+"bcy" = (
+/turf/simulated/shuttle/wall/dark,
+/area/shuttle/administration)
+"bcH" = (
+/obj/item/toy/chess/rook_white{
+ color = "teal"
+ },
+/turf/simulated/floor/holofloor/bmarble{
+ color = "teal"
+ },
+/area/holodeck/source_chess)
+"bdb" = (
+/obj/structure/bed,
+/obj/item/bedsheet/rd,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/wizard_station)
+"bdD" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/sign/dock/two,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"bdJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/mecha/working/ripley/firefighter,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"bdQ" = (
+/obj/machinery/atmospherics/unary/freezer{
+ icon_state = "freezer"
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"bew" = (
+/turf/unsimulated/wall/shuttle_bay,
+/area/centcom/evac)
+"beU" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"beV" = (
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"bft" = (
+/obj/structure/table/rack,
+/obj/item/flashlight/maglight,
+/obj/item/flashlight/maglight,
+/obj/item/flashlight/maglight,
+/obj/item/flashlight/maglight,
+/obj/item/flashlight/maglight,
+/obj/item/flashlight/maglight,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"bfD" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/condiment/enzyme,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"bge" = (
+/obj/structure/table/rack,
+/obj/item/storage/box/handcuffs{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/storage/box/flashbangs,
+/obj/item/storage/box/smokes,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"bgl" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "escape_pod_5_recovery_hatch";
+ locked = 1;
+ name = "Recovery Shuttle Dock 5";
+ req_access = list(13)
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"bgS" = (
+/obj/structure/table/sifwoodentable,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 5
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"bhX" = (
+/obj/structure/flora/mushroom,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/shadekin)
+"bjw" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"bjX" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/o2{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/o2,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"bkq" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/shuttle/trade)
+"bkF" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "trade_shuttle_bay";
+ name = "shuttle bay controller";
+ pixel_x = 25;
+ tag_door = "trade_shuttle_bay_door"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"bkO" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/o2{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/firstaid/o2,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"blg" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"blO" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"bmz" = (
+/obj/machinery/door/airlock/hatch,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"bno" = (
+/obj/structure/table/rack,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"bny" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/appliance/cooker/fryer,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"bnH" = (
+/obj/item/toy/chess/knight_white{
+ color = "teal"
+ },
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"bnU" = (
+/turf/simulated/shuttle/floor/black,
+/area/shadekin)
+"boo" = (
+/obj/item/stool/padded,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"boB" = (
+/obj/structure/table/rack,
+/obj/item/gun/energy/stunrevolver,
+/obj/item/gun/energy/stunrevolver,
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"boE" = (
+/obj/structure/table/standard,
+/obj/item/towel,
+/obj/item/towel,
+/obj/item/towel,
+/obj/item/towel,
+/obj/random/soap,
+/obj/random/soap,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/specops)
+"boQ" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape/centcom)
+"bph" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"bps" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"bpv" = (
+/obj/item/toy/chess/bishop_white{
+ color = "teal"
+ },
+/turf/simulated/floor/holofloor/bmarble{
+ color = "teal"
+ },
+/area/holodeck/source_chess)
+"bpU" = (
+/obj/machinery/suit_cycler/syndicate,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"bqa" = (
+/obj/machinery/shield_capacitor,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"bqs" = (
+/obj/machinery/button/remote/airlock{
+ id = "darkdorm1";
+ name = "Bolt Control";
+ specialfunctions = 4;
+ dir = 1;
+ pixel_y = -25
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"bqx" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"bqH" = (
+/obj/item/toy/chess/queen_white{
+ color = "teal"
+ },
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"brR" = (
+/obj/item/toy/plushie/borgplushie/drake/jani,
+/obj/item/toy/plushie/green_fox{
+ pixel_x = 14;
+ pixel_y = 9
+ },
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"bsF" = (
+/obj/machinery/door/airlock/centcom{
+ name = "General Access";
+ req_access = list(101)
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/command)
+"bsI" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/terminal)
+"bsZ" = (
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"btc" = (
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ dir = 1;
+ frequency = 1213;
+ name = "Syndicate Ops Intercom";
+ pixel_y = 26;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"btt" = (
+/obj/machinery/door/airlock/glass,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"bum" = (
+/obj/structure/table/woodentable,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"buE" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"bvt" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/specops)
+"bvJ" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Airlock";
+ req_access = list(150)
+ },
+/obj/machinery/door/blast/regular{
+ id = "syndicate_elite_mech_room";
+ name = "Mech Room Door"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_mothership/elite_squad)
+"bwq" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass2,
+/area/shadekin)
+"bws" = (
+/obj/structure/loot_pile/maint/boxfort,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"byl" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/syndicate_mothership/elite_squad)
+"byy" = (
+/obj/machinery/vending/sovietvend,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"bzh" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"bzt" = (
+/obj/structure/sink{
+ pixel_y = 10
+ },
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"bzO" = (
+/turf/simulated/shuttle/wall/dark/no_join,
+/area/shuttle/syndicate_elite/mothership)
+"bzQ" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/structure/table/standard,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/living)
+"bzT" = (
+/obj/effect/landmark{
+ name = "Syndicate-Commando-Bomb"
+ },
+/turf/simulated/shuttle/floor/skipjack,
+/area/shuttle/syndicate_elite/mothership)
+"bAn" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport1/centcom)
+"bAD" = (
+/obj/machinery/iv_drip,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"bAY" = (
+/obj/structure/table/standard,
+/obj/machinery/light/small/yellowed,
+/obj/item/seeds/random,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"bBn" = (
+/obj/machinery/computer/cloning,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"bBK" = (
+/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay,
+/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay,
+/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay,
+/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/structure/table/steel_reinforced,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"bDk" = (
+/obj/structure/flora/underwater/grass1,
+/obj/machinery/light/fluorescent{
+ dir = 1
+ },
+/turf/simulated/floor/water/indoors/station,
+/area/shadekin)
+"bDI" = (
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/shuttle/trade)
+"bEy" = (
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/living)
+"bFo" = (
+/obj/structure/table/standard,
+/obj/random/soap,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/bar)
+"bFy" = (
+/turf/unsimulated/wall/door_maint,
+/area/centcom/main_hall)
+"bFJ" = (
+/obj/machinery/light/broken{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"bFO" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/shuttle/trade)
+"bGa" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"bGq" = (
+/obj/structure/closet,
+/obj/item/clothing/shoes/sandal/marisa{
+ desc = "A set of fancy shoes that are as functional as they are comfortable.";
+ name = "Gentlemans Shoes"
+ },
+/obj/item/clothing/under/gentlesuit,
+/obj/item/clothing/suit/wizrobe/gentlecoat,
+/obj/item/clothing/head/wizard/cap,
+/obj/item/staff/gentcane,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"bGs" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"bGH" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"bGM" = (
+/obj/structure/table/reinforced,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"bHc" = (
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"bHZ" = (
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"bIz" = (
+/obj/effect/overlay/coconut,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"bIK" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"bIR" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/table/rack,
+/obj/item/storage/backpack/ert/medical,
+/obj/item/storage/backpack/ert/medical,
+/obj/item/storage/backpack/ert/medical,
+/obj/item/storage/backpack/ert/medical,
+/obj/item/storage/backpack/ert/medical,
+/obj/item/storage/backpack/ert/medical,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"bJb" = (
+/obj/structure/inflatable,
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"bJi" = (
+/obj/structure/table/marble,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/centcom/bar)
+"bJs" = (
+/obj/item/toy/chess/king_white{
+ color = "teal"
+ },
+/turf/simulated/floor/holofloor/bmarble{
+ color = "teal"
+ },
+/area/holodeck/source_chess)
+"bKg" = (
+/obj/machinery/door/airlock/hatch{
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/skipjack_station)
+"bKr" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/glasses/square{
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/skipjack_station)
+"bKC" = (
+/obj/item/tray{
+ pixel_y = 5
+ },
+/obj/structure/table/standard,
+/obj/item/material/knife/butch,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/skipjack_station)
+"bLg" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/structure/bed/padded,
+/obj/item/bedsheet/captain,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/living)
+"bLl" = (
+/obj/machinery/chem_master,
+/obj/item/reagent_containers/glass/beaker/large,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"bLs" = (
+/obj/structure/table/rack,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"bLE" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/poster,
+/obj/item/poster,
+/obj/item/poster,
+/obj/item/poster,
+/obj/item/poster,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"bMh" = (
+/obj/structure/table/rack,
+/obj/item/flashlight/flare,
+/obj/item/flashlight/flare,
+/obj/item/flashlight/flare,
+/obj/item/flashlight/flare,
+/obj/item/flashlight/flare,
+/obj/item/flashlight/flare,
+/obj/item/flashlight/flare,
+/obj/item/flashlight/flare,
+/obj/item/flashlight/flare,
+/obj/item/flashlight/flare,
+/obj/item/flashlight/flare,
+/obj/item/flashlight/flare,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"bMn" = (
+/obj/structure/table/rack,
+/obj/item/binoculars,
+/obj/item/binoculars,
+/obj/item/binoculars,
+/obj/item/binoculars,
+/obj/item/binoculars,
+/obj/item/binoculars,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"bMy" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"bOS" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/shadekin)
+"bPm" = (
+/obj/structure/table/reinforced,
+/obj/machinery/librarycomp,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"bQc" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/simulated/floor/tiled/freezer,
+/area/shadekin)
+"bQw" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"bQG" = (
+/obj/machinery/door/airlock/hatch,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"bRL" = (
+/obj/structure/table/rack,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"bRT" = (
+/obj/item/toy/chess/bishop_white{
+ color = "teal"
+ },
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"bSp" = (
+/obj/machinery/computer/security/telescreen,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeobserve)
+"bSv" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"bSN" = (
+/obj/structure/table/rack,
+/obj/item/gun/projectile/automatic/sts35,
+/obj/item/gun/projectile/automatic/sts35,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"bSS" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/flashbangs,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"bST" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"bTc" = (
+/obj/item/toy/chess/knight_white{
+ color = "teal"
+ },
+/turf/simulated/floor/holofloor/bmarble{
+ color = "teal"
+ },
+/area/holodeck/source_chess)
+"bTW" = (
+/obj/item/toy/chess/rook_white{
+ color = "teal"
+ },
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"bUI" = (
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"bUQ" = (
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "vault"
+ },
+/area/shuttle/trade)
+"bUW" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"bVc" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/book/manual/wiki/engineering_hacking,
+/obj/item/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Subversive Intercom";
+ pixel_x = 32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"bVj" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/syndicate_station)
+"bVn" = (
+/obj/item/mecha_parts/mecha_equipment/tool/extinguisher,
+/obj/item/mecha_parts/mecha_equipment/tool/rcd,
+/obj/item/pickaxe/diamonddrill,
+/obj/structure/table/steel_reinforced,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"bVp" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"bWp" = (
+/obj/machinery/telecomms/hub/preset/southerncross/centcomm,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"bWt" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"bXY" = (
+/obj/machinery/door/airlock/external{
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_mothership/elite_squad)
+"bYA" = (
+/obj/random/cutout,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"bYM" = (
+/obj/structure/sign/directions/cargo{
+ dir = 1
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = -10
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 1;
+ pixel_y = 10
+ },
+/turf/unsimulated/wall,
+/area/centcom/terminal)
+"bYO" = (
+/obj/machinery/computer/shuttle_control/multi/centcom{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport1/centcom)
+"bYQ" = (
+/obj/machinery/conveyor{
+ id = "QMLoad"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"bZb" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"bZU" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"bZX" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/response_ship)
+"cax" = (
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/syndicate_mothership/elite_squad)
+"cay" = (
+/turf/unsimulated/wall,
+/area/shuttle/trade)
+"caN" = (
+/obj/structure/closet/emcloset,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/terminal)
+"cbf" = (
+/obj/item/bedsheet/clown,
+/obj/structure/bed/padded,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/skipjack)
+"ccn" = (
+/obj/machinery/door/airlock/external{
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/syndicate_mothership/elite_squad)
+"cdI" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"cdV" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"cdW" = (
+/obj/machinery/media/jukebox,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"cen" = (
+/obj/machinery/door/airlock/external{
+ name = "Shuttle Airlock";
+ req_access = list(150)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "syndicate_elite";
+ name = "Side Hull Door";
+ opacity = 0
+ },
+/turf/simulated/shuttle/floor/skipjack,
+/area/shuttle/syndicate_elite/mothership)
+"cfm" = (
+/obj/effect/landmark/darkspawn,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/old_tile/blue,
+/area/shadekin)
+"cfJ" = (
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"cfK" = (
+/turf/simulated/shuttle/floor/skipjack,
+/area/shuttle/syndicate_elite/mothership)
+"cfM" = (
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/merchant)
+"cgE" = (
+/obj/machinery/iv_drip,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"cgL" = (
+/obj/item/target/alien,
+/turf/unsimulated/floor/wood{
+ icon_state = "wood-broken2"
+ },
+/area/ninja_dojo/dojo)
+"chd" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "tradeportshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"cht" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"cij" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/stack/material/mhydrogen,
+/obj/item/stack/material/diamond,
+/obj/item/stack/material/sandstone,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"cit" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/flame/candle,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"ckb" = (
+/obj/structure/bed/chair/wood/wings,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/bar)
+"ckp" = (
+/obj/structure/table/standard,
+/obj/random/maintenance/cargo,
+/obj/item/pda,
+/obj/random/maintenance/cargo,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"cku" = (
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/centcom/bar)
+"ckJ" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/lavendergrass,
+/turf/simulated/floor/grass2,
+/area/shadekin)
+"ckL" = (
+/obj/machinery/autolathe{
+ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however...";
+ hacked = 1;
+ name = "Unlocked Autolathe"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"cmf" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/centcom/evac)
+"cmw" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"cmS" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Ship Hatch"
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"cnm" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/material/sword/katana,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"cpo" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"cpq" = (
+/obj/machinery/space_heater,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"cqr" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/door/airlock/glass,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"crh" = (
+/obj/machinery/recharge_station,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"crR" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"crS" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_boxingcourt)
+"crV" = (
+/obj/structure/table/rack,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"csl" = (
+/obj/machinery/chemical_dispenser/ert,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"csC" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Central Access"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"csG" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport1/centcom)
+"ctj" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome)
+"cue" = (
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"cuh" = (
+/obj/effect/shuttle_landmark/southern_cross/cryostorage_offsite,
+/turf/simulated/floor/airless,
+/area/shuttle/cryo/centcom)
+"cui" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"cus" = (
+/obj/machinery/vending/hydronutrients,
+/turf/simulated/shuttle/floor/black,
+/area/shadekin)
+"cuP" = (
+/obj/effect/decal/cleanable/cobweb2{
+ icon_state = "spiderling";
+ name = "dead spider"
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"cvx" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/specops)
+"cwn" = (
+/obj/item/toy/plushie/orange_cat{
+ pixel_x = 15;
+ pixel_y = -4
+ },
+/obj/item/toy/plushie/squid{
+ pixel_x = -10;
+ pixel_y = 6
+ },
+/obj/item/toy/plushie/therapy/purple{
+ pixel_x = 19;
+ pixel_y = 7
+ },
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"cwo" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"cwv" = (
+/obj/machinery/embedded_controller/radio/docking_port_multi{
+ child_names_txt = "Airlock One;Airlock Two";
+ child_tags_txt = "arrivals_dock_north_airlock;arrivals_dock_south_airlock";
+ frequency = 1381;
+ id_tag = "arrivals_dock";
+ pixel_y = -32
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"cxI" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"cxK" = (
+/obj/structure/table/standard,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"cxW" = (
+/obj/structure/table/standard,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/skipjack_station)
+"cxZ" = (
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/skipjack_station)
+"cya" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/command)
+"cym" = (
+/turf/simulated/floor/carpet,
+/area/shadekin)
+"cyv" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/captain,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"cyR" = (
+/obj/effect/floor_decal/sign/small_a/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"czP" = (
+/obj/structure/table/reinforced,
+/obj/item/pinpointer/advpinpointer,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"cAb" = (
+/obj/item/ore,
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/skipjack_station)
+"cAw" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport1/centcom)
+"cAy" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"cAH" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"cAS" = (
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"cBW" = (
+/obj/structure/table/rack,
+/obj/item/clothing/mask/balaclava/tactical,
+/obj/item/clothing/mask/balaclava/tactical,
+/obj/item/clothing/mask/balaclava/tactical,
+/obj/item/clothing/mask/balaclava/tactical,
+/obj/item/clothing/mask/balaclava/tactical,
+/obj/item/clothing/mask/balaclava/tactical,
+/obj/item/clothing/mask/balaclava,
+/obj/item/clothing/mask/balaclava,
+/obj/item/clothing/mask/balaclava,
+/obj/item/clothing/mask/balaclava,
+/obj/item/clothing/mask/balaclava,
+/obj/item/clothing/mask/balaclava,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"cCf" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/command)
+"cDg" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/shadekin)
+"cDl" = (
+/obj/structure/table/rack,
+/obj/item/pinpointer/shuttle/merc,
+/obj/item/pinpointer/shuttle/merc,
+/obj/item/pinpointer/shuttle/merc,
+/obj/item/pinpointer/shuttle/merc,
+/obj/item/pinpointer/shuttle/merc,
+/obj/item/pinpointer/shuttle/merc,
+/obj/item/shield/energy,
+/obj/item/shield/energy,
+/obj/item/shield/energy,
+/obj/item/shield/energy,
+/obj/item/shield/energy,
+/obj/item/shield/energy,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"cDx" = (
+/obj/effect/map_effect/portal/line/side_b{
+ dir = 8
+ },
+/obj/effect/map_effect/perma_light/concentrated/incandescent,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"cDB" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"cEh" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/snacks/spesslaw,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"cEH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/closet/crate/freezer/rations,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"cES" = (
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/wizard_station)
+"cFz" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/appliance/mixer/cereal,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"cFG" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"cFL" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/misc,
+/obj/random/maintenance/misc,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"cFQ" = (
+/obj/structure/table/rack,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"cGb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/structure/largecrate/animal/cat,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"cGr" = (
+/obj/effect/floor_decal/corner/white/full{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"cHB" = (
+/obj/structure/table/rack,
+/obj/item/ammo_magazine/m10mm,
+/obj/item/ammo_magazine/m10mm,
+/obj/item/ammo_magazine/m10mm,
+/obj/item/ammo_magazine/m10mm,
+/obj/item/ammo_magazine/m10mm,
+/obj/item/ammo_magazine/m10mm,
+/obj/item/gun/projectile/automatic/c20r,
+/obj/item/gun/projectile/automatic/c20r,
+/obj/item/gun/projectile/automatic/c20r,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"cIi" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"cII" = (
+/obj/item/multitool,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/structure/table/reinforced,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"cIR" = (
+/turf/unsimulated/wall/shuttle_bay,
+/area/syndicate_mothership/elite_squad)
+"cJi" = (
+/obj/machinery/atmospherics/pipe/vent{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome)
+"cJr" = (
+/obj/structure/bed/chair/wood/wings,
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"cJs" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"cJE" = (
+/obj/structure/table/rack,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/melee/baton/loaded,
+/obj/item/melee/baton/loaded,
+/obj/item/melee/baton/loaded,
+/obj/item/melee/baton/loaded,
+/obj/item/melee/baton/loaded,
+/obj/item/melee/baton/loaded,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"cJG" = (
+/obj/item/target,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"cJI" = (
+/obj/effect/floor_decal/sign/small_8/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"cJV" = (
+/obj/machinery/the_singularitygen,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"cKg" = (
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/plain/three_quarters,
+/turf/simulated/floor/tiled/milspec/raised,
+/area/shadekin)
+"cKD" = (
+/obj/effect/landmark/start{
+ name = "wizard"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"cLh" = (
+/obj/structure/bed/chair/office/dark,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"cLn" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/ninja)
+"cMd" = (
+/obj/structure/table/reinforced,
+/obj/item/tool/crowbar,
+/obj/item/tool/screwdriver,
+/obj/item/tool/wrench,
+/obj/item/tool/crowbar,
+/obj/item/tool/screwdriver,
+/obj/item/tool/wrench,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"cMt" = (
+/obj/structure/flora/grass/both,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"cMS" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"cNE" = (
+/obj/effect/floor_decal/sign/small_b/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"cNG" = (
+/turf/simulated/shuttle/wall/voidcraft/blue,
+/area/shuttle/ninja)
+"cNW" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/shuttle/trade)
+"cOx" = (
+/obj/effect/floor_decal/sign/small_c/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"cOL" = (
+/obj/effect/overlay/palmtree_r,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"cOY" = (
+/obj/machinery/microwave{
+ pixel_x = -1;
+ pixel_y = 8
+ },
+/obj/structure/table/standard,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/skipjack_station)
+"cPQ" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/handcuffs,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"cQp" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 8
+ },
+/obj/structure/sign/warning/acid{
+ name = "\improper DANGEROUS NANITES";
+ desc = "This sign warns of the dangers of AI-controlled S10-P recycling and crowd control nanite hives in the area.";
+ pixel_y = -32
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"cQG" = (
+/obj/structure/bookcase,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"cQW" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"cQY" = (
+/obj/machinery/vending/snack,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"cSg" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"cSz" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/terminal)
+"cTy" = (
+/obj/item/ore,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"cTO" = (
+/obj/structure/urinal{
+ pixel_y = 32
+ },
+/obj/item/soap/syndie,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/skipjack_station)
+"cUQ" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/wall/dark/no_join,
+/area/shuttle/supply)
+"cVe" = (
+/obj/structure/holohoop{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"cVf" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/command)
+"cVL" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"cVU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/terminal)
+"cWy" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/shuttle/trade)
+"cWK" = (
+/obj/machinery/computer/timeclock/premade/west,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"cXr" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/snacks/stuffing,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"cXM" = (
+/obj/structure/table/rack,
+/obj/item/rig_module/mounted/taser,
+/obj/item/rig_module/mounted/taser,
+/obj/item/rig_module/mounted/taser,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"cYN" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Escape Shuttle Infirmary";
+ req_access = list(5)
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"cZO" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/centcom/evac)
+"daf" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"dag" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/transport1/centcom)
+"dah" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome)
+"daD" = (
+/obj/structure/undies_wardrobe,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/skipjack_station)
+"daZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"dbz" = (
+/turf/simulated/floor/plating,
+/area/shadekin)
+"dcc" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"dcw" = (
+/obj/structure/table/rack,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/shoes/brown,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/gun/energy/laser,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome)
+"dcJ" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"dcP" = (
+/obj/item/tape/engineering,
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"ddi" = (
+/obj/item/robot_parts/l_leg,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"ddo" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_theatre)
+"ddF" = (
+/obj/machinery/computer/operating{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"deb" = (
+/obj/structure/toilet,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/skipjack_station)
+"ded" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/obj/structure/table/holotable,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/suit/armor/tdome/green,
+/obj/item/holo/esword/green,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"deh" = (
+/obj/effect/shuttle_landmark/southern_cross/escape/offsite,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"dfN" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "Red Corner"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"dfO" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/living)
+"dgc" = (
+/obj/effect/floor_decal/sign/small_d/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"dgU" = (
+/obj/structure/table/reinforced,
+/obj/item/defib_kit,
+/obj/item/defib_kit,
+/obj/item/cell/high,
+/obj/item/cell/high,
+/obj/item/tool/screwdriver,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"dhM" = (
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"dja" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/transport1/centcom)
+"djS" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"dkR" = (
+/obj/structure/table/standard,
+/obj/item/storage/laundry_basket,
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"dlR" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"dmo" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/escape/centcom)
+"dmw" = (
+/obj/effect/floor_decal/sign/small_e/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"dmB" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/space/vox/carapace,
+/obj/item/clothing/suit/space/vox/carapace,
+/obj/item/clothing/head/helmet/space/vox/carapace,
+/obj/item/clothing/head/helmet/space/vox/carapace,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"dnv" = (
+/obj/machinery/door/airlock/maintenance/int{
+ name = "The Crap Shack"
+ },
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"dnP" = (
+/obj/structure/table/rack,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"dpS" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"dqg" = (
+/obj/effect/shuttle_landmark/southern_cross/transport1_offsite,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport1/centcom)
+"dqq" = (
+/obj/effect/floor_decal/industrial/bot_outline/blue,
+/obj/effect/floor_decal/spline/plain/cee{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/arrows/blue,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/shadekin)
+"dqA" = (
+/obj/machinery/door/airlock/glass,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"dqP" = (
+/obj/structure/railing/overhang/hazard,
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"drY" = (
+/obj/item/gun/energy/sonic,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"dsO" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport1/centcom)
+"dsR" = (
+/obj/structure/table/rack,
+/obj/item/gun/projectile/automatic/p90,
+/obj/item/gun/projectile/automatic/p90,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"dtm" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/under/vox/vox_casual,
+/obj/item/clothing/under/vox/vox_casual,
+/obj/item/clothing/under/vox/vox_casual,
+/obj/item/clothing/under/vox/vox_robes,
+/obj/item/clothing/under/vox/vox_robes,
+/obj/item/clothing/under/vox/vox_robes,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"dtq" = (
+/obj/machinery/door/airlock/centcom{
+ name = "General Access";
+ req_access = list(101)
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"dtB" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/accessory/storage/vox,
+/obj/item/clothing/accessory/storage/vox,
+/obj/item/clothing/accessory/storage/vox,
+/obj/item/clothing/accessory/storage/vox,
+/obj/item/clothing/accessory/storage/vox,
+/obj/item/clothing/accessory/storage/vox,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"dtV" = (
+/turf/unsimulated/wall,
+/area/space)
+"duU" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/gloves/vox,
+/obj/item/clothing/gloves/vox,
+/obj/item/clothing/gloves/vox,
+/obj/item/clothing/gloves/vox,
+/obj/item/clothing/gloves/vox,
+/obj/item/clothing/gloves/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/obj/item/clothing/shoes/magboots/vox,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"dxR" = (
+/obj/structure/table/standard,
+/obj/item/clipboard,
+/obj/item/pen,
+/obj/item/stamp/captain,
+/turf/simulated/shuttle/floor/black,
+/area/centcom/evac)
+"dxY" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"dyy" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"dyT" = (
+/obj/item/gun/launcher/spikethrower,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"dzl" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "";
+ name = "Spec. Ops. Monitor";
+ network = list("NETWORK_ERT");
+ pixel_y = 26
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"dzR" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "centcom_dock_airlock";
+ locked = 1;
+ name = "Arrivals Airlock";
+ req_access = list(13)
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/terminal)
+"dAb" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/space/vox/stealth,
+/obj/item/clothing/suit/space/vox/stealth,
+/obj/item/clothing/head/helmet/space/vox/stealth,
+/obj/item/clothing/head/helmet/space/vox/stealth,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"dBf" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "tradebridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"dBp" = (
+/obj/structure/table/woodentable,
+/obj/item/paicard,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"dBt" = (
+/obj/structure/toilet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/step_trigger/teleporter/randomspawn{
+ teleport_x = 200;
+ teleport_z = 3;
+ teleprob = 10;
+ teleport_y = 120;
+ destroyprob = 0
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"dBF" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dBP" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/machinery/vending/event/food/ingredients,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"dBV" = (
+/obj/machinery/vending/snlvend,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"dCb" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/storage/vest/heavy/merc{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/clothing/suit/storage/vest/heavy/merc{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/clothing/suit/storage/vest/heavy/merc,
+/obj/item/clothing/suit/storage/vest/heavy/merc,
+/obj/item/clothing/suit/storage/vest/heavy/merc,
+/obj/item/clothing/suit/storage/vest/heavy/merc,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"dCy" = (
+/obj/effect/landmark{
+ name = "Syndicate-Commando"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_mothership/elite_squad)
+"dCC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"dCZ" = (
+/obj/item/radio/intercom/specops{
+ pixel_y = -21
+ },
+/obj/machinery/computer/communications{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"dEQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/closet/crate/secure/loot,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"dFq" = (
+/obj/effect/floor_decal/sign/small_f/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"dFI" = (
+/obj/structure/table/steel_reinforced,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"dGh" = (
+/obj/structure/table/rack,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_mothership/elite_squad)
+"dGj" = (
+/obj/structure/table/standard,
+/obj/item/surgical/surgicaldrill,
+/obj/item/autopsy_scanner,
+/obj/item/reagent_containers/spray/cleaner{
+ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back.";
+ name = "Surgery Cleaner";
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/surgical/FixOVein,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"dGo" = (
+/obj/structure/closet/wardrobe/xenos,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"dGu" = (
+/obj/machinery/cryopod/robot/door/dorms,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/main_hall)
+"dGw" = (
+/obj/structure/bed,
+/obj/item/bedsheet/orange,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"dGy" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/obj/machinery/disposal{
+ pixel_y = -7
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"dGS" = (
+/obj/item/toy/plushie/borgplushie/medihound,
+/obj/item/toy/plushie/nukeplushie{
+ pixel_x = 15;
+ pixel_y = 10
+ },
+/obj/item/toy/plushie/snakeplushie{
+ pixel_x = -9;
+ pixel_y = 9
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"dGT" = (
+/obj/machinery/vending/weeb,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"dHj" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dHk" = (
+/obj/structure/reagent_dispensers/fueltank/high,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"dHC" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "cryostorage_shuttle_recovery";
+ req_one_access = list(13);
+ tag_door = "cryostorage_shuttle_recovery_hatch";
+ dir = 1;
+ pixel_y = -23
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/centcom/evac)
+"dIk" = (
+/obj/effect/floor_decal/sign/small_g/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"dIK" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/merchant)
+"dJm" = (
+/turf/simulated/floor/airless,
+/area/shuttle/cryo/centcom)
+"dJx" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/skipjack,
+/area/shuttle/syndicate_elite/mothership)
+"dJA" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/skipjack,
+/area/shuttle/syndicate_elite/mothership)
+"dJS" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig/internalaffairs,
+/obj/item/clothing/head/helmet/space/void/wizard,
+/obj/item/clothing/suit/space/void/wizard,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"dKL" = (
+/obj/effect/landmark{
+ name = "Holocarp Spawn Random"
+ },
+/turf/simulated/floor/holofloor/space,
+/area/holodeck/source_space)
+"dLG" = (
+/obj/item/target/syndicate,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"dLV" = (
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/space)
+"dNm" = (
+/obj/item/tool/wrench,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"dNw" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/rack,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"dNQ" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/ninja_dojo/dojo)
+"dOe" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "tradeportshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"dOR" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/rd,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"dPp" = (
+/obj/item/material/knife/tacknife/combatknife,
+/obj/item/material/knife/tacknife/combatknife,
+/obj/item/material/knife/tacknife/combatknife,
+/obj/item/material/knife/tacknife/combatknife,
+/obj/item/material/knife/tacknife/combatknife,
+/obj/item/material/knife/tacknife/combatknife,
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/spray/pepper,
+/obj/item/reagent_containers/spray/pepper,
+/obj/item/reagent_containers/spray/pepper,
+/obj/item/reagent_containers/spray/pepper,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"dPM" = (
+/obj/machinery/shield_gen/external,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"dQs" = (
+/turf/unsimulated/wall,
+/area/tdome/tdomeobserve)
+"dQu" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"dQA" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/ninja_dojo/dojo)
+"dRM" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dRW" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"dTr" = (
+/obj/machinery/telecomms/relay/preset/southerncross/transit,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"dUq" = (
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/centcom/evac)
+"dUJ" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ desc = "A remote control switch for port-side blast doors.";
+ id = "CentComPort";
+ name = "Security Doors";
+ pixel_x = -25;
+ pixel_y = -25;
+ req_access = list(101)
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"dVc" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/ninja_dojo/dojo)
+"dVl" = (
+/obj/structure/table/rack,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"dVn" = (
+/obj/machinery/button/remote/blast_door{
+ id = "tradeportshutters";
+ name = "remote shutter control";
+ pixel_x = 30;
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"dWe" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/ninja_dojo/dojo)
+"dWg" = (
+/obj/structure/closet/crate/hydroponics{
+ desc = "All you need to start your own honey farm.";
+ name = "beekeeping crate"
+ },
+/obj/item/beehive_assembly,
+/obj/item/bee_smoker,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/bee_pack,
+/obj/item/tool/crowbar,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"dWi" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"dWp" = (
+/obj/effect/landmark{
+ name = "endgame_exit"
+ },
+/turf/unsimulated/beach/sand,
+/area/beach)
+"dWG" = (
+/obj/item/toy/plushie/borgplushie/drake/sci{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/toy/plushie/carp/dragon{
+ pixel_x = -4;
+ pixel_y = -5
+ },
+/obj/item/toy/plushie/carp/nebula{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/toy/plushie/squid/pink{
+ pixel_y = 13
+ },
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"dWK" = (
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/ointment,
+/obj/structure/table/standard,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"dXk" = (
+/obj/machinery/door/blast/regular{
+ id = "CREED";
+ name = "Ready Room"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/command)
+"dYs" = (
+/obj/machinery/door/airlock/hatch{
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/skipjack_station)
+"dYz" = (
+/obj/effect/decal/mecha_wreckage/phazon,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"dZb" = (
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/skipjack_station)
+"dZe" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/adv{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/adv,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"dZu" = (
+/obj/structure/mirror/raider{
+ pixel_x = -32
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/skipjack_station)
+"dZw" = (
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/skipjack_station)
+"dZG" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"dZP" = (
+/obj/machinery/camera/network/thunder{
+ c_tag = "Thunderdome Arena";
+ invisibility = 101
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome)
+"dZT" = (
+/obj/machinery/seed_extractor,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"eay" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"eaF" = (
+/obj/structure/table/bench/wooden,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 5
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"ebI" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"eci" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/effect/landmark/darkspawn,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/shadekin)
+"ecF" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/specops)
+"ecS" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"edK" = (
+/obj/effect/decal/cleanable/blood,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/skipjack_station)
+"eeb" = (
+/obj/effect/floor_decal/corner/purple{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"eec" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/obj/machinery/atm{
+ pixel_x = -32
+ },
+/obj/machinery/meter,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"eev" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/space/vox/medic,
+/obj/item/clothing/suit/space/vox/medic,
+/obj/item/clothing/head/helmet/space/vox/medic,
+/obj/item/clothing/head/helmet/space/vox/medic,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"eeQ" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"efI" = (
+/obj/item/clothing/glasses/night/vox,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"efJ" = (
+/obj/structure/closet/wardrobe/white,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"efX" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/appliance/mixer/candy,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"egu" = (
+/obj/structure/table/rack,
+/obj/item/gun/energy/darkmatter,
+/obj/item/gun/energy/darkmatter,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"egw" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/coin/diamond,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"ehg" = (
+/obj/structure/flora/ausbushes,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"ehy" = (
+/obj/machinery/door/window/northright{
+ name = "Cargo Hold";
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"ejt" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/storage/briefcase,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/command)
+"ekb" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "tradebridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"eke" = (
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"eld" = (
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/plastitanium/full,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"emG" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"emH" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/energy/gun/nuclear,
+/obj/item/hand_tele,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"emV" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/syndie_kit/chameleon,
+/obj/item/storage/box/syndie_kit/clerical,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"enM" = (
+/obj/item/toy/chess/king_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"enV" = (
+/obj/structure/table/rack,
+/obj/item/gun/projectile/automatic/wt550,
+/obj/item/gun/projectile/automatic/wt550,
+/obj/item/gun/projectile/automatic/wt550,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"eos" = (
+/obj/structure/table/rack,
+/obj/item/gun/energy/taser,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/storage/backpack/ert/security,
+/obj/item/storage/belt/security/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/gun/energy/ionrifle,
+/obj/item/cell/device/weapon/empproof,
+/obj/item/cell/device/weapon/empproof,
+/obj/item/cell/device/weapon/empproof,
+/obj/item/handcuffs,
+/obj/item/handcuffs,
+/obj/item/clothing/accessory/storage/webbing,
+/obj/item/clothing/under/ert,
+/obj/item/radio/headset/alt/ert,
+/obj/item/clothing/shoes/boots/swat,
+/obj/item/clothing/gloves/swat,
+/obj/item/clothing/mask/balaclava/tactical,
+/obj/item/reagent_containers/spray/pepper,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/card/id/centcom/ERT,
+/obj/item/melee/baton,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"eoN" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"eoZ" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"epg" = (
+/obj/effect/floor_decal/asteroid,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/shadekin)
+"epW" = (
+/obj/vehicle/train/trolley,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"eqQ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Storage"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"eqX" = (
+/obj/machinery/door/airlock/centcom{
+ icon_state = "door_locked";
+ locked = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"err" = (
+/obj/machinery/teleport/hub,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/ninja_dojo/dojo)
+"erZ" = (
+/obj/structure/table/rack,
+/obj/item/storage/secure/briefcase,
+/obj/item/storage/fancy/cigarettes,
+/obj/item/flame/lighter/zippo,
+/obj/item/storage/belt/utility,
+/obj/item/storage/backpack/satchel,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"esr" = (
+/obj/machinery/teleport/station,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/ninja_dojo/dojo)
+"esM" = (
+/obj/structure/table/rack,
+/obj/item/gun/energy/laser,
+/obj/item/gun/energy/laser,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"evp" = (
+/obj/machinery/computer/teleporter{
+ dir = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/ninja_dojo/dojo)
+"evT" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad2"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"ewk" = (
+/obj/structure/prop/statue/phoron,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"ewn" = (
+/obj/item/stool/padded{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/shadekin)
+"ews" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/gloves/black,
+/obj/item/clothing/gloves/blue,
+/obj/item/clothing/gloves/brown,
+/obj/item/clothing/gloves/captain,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/gloves/green,
+/obj/item/clothing/gloves/grey,
+/obj/item/clothing/gloves/light_brown,
+/obj/item/clothing/gloves/purple,
+/obj/item/clothing/gloves/rainbow,
+/obj/item/clothing/gloves/swat,
+/obj/item/clothing/gloves/white,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"exl" = (
+/obj/structure/table/rack,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/shoes/brown,
+/obj/item/melee/energy/axe,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome)
+"eze" = (
+/obj/structure/closet/chefcloset,
+/obj/item/glass_jar,
+/obj/item/retail_scanner/civilian,
+/obj/item/soap/nanotrasen,
+/obj/item/destTagger{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/item/packageWrap,
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"eAf" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/ninja_dojo/dojo)
+"eAg" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/rack,
+/obj/item/rig/ert/security,
+/obj/item/rig/ert/security,
+/obj/item/rig/ert/security,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"eAE" = (
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/ninja_dojo/dojo)
+"eAP" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/ninja_dojo/dojo)
+"eBq" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"eBr" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"eBX" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "admin_shuttle_bay_door";
+ locked = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/command)
+"eDl" = (
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/ninja_dojo/dojo)
+"eDw" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner,
+/area/shuttle/ninja)
+"eDM" = (
+/obj/machinery/gateway{
+ dir = 5
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"eDQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/tank/air{
+ start_pressure = 740.5
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/ninja)
+"eEM" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"eEZ" = (
+/obj/machinery/computer/teleporter{
+ dir = 2
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/ninja)
+"eFX" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/plating,
+/area/shuttle/ninja)
+"eGj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"eGk" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/loading/blue,
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"eGl" = (
+/obj/effect/shuttle_landmark/southern_cross/escape_pod4/offsite,
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape_pod4/centcom)
+"eGJ" = (
+/obj/item/robot_parts/r_arm,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"eHc" = (
+/obj/machinery/computer/communications,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"eHg" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/closet/crate/secure/loot,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"eHp" = (
+/obj/machinery/teleport/hub,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/shuttle/plating,
+/area/shuttle/ninja)
+"eIq" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/ninja)
+"eJj" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/security)
+"eKh" = (
+/obj/structure/undies_wardrobe,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"eKr" = (
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape_pod4/centcom)
+"eKP" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"eKV" = (
+/obj/structure/table/glass,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"eLh" = (
+/obj/item/reagent_containers/food/snacks/cheesewedge,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"eLl" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/appliance/cooker/oven,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"eLE" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"eMB" = (
+/obj/structure/table/standard,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"eNH" = (
+/obj/structure/table/standard,
+/obj/item/clothing/under/color/rainbow,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/head/collectable/petehat{
+ pixel_y = 5
+ },
+/turf/unsimulated/beach/sand,
+/area/beach)
+"eOe" = (
+/obj/machinery/vending/cola{
+ name = "hacked Robust Softdrinks";
+ prices = list()
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/living)
+"eOs" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"eOY" = (
+/obj/machinery/door/airlock/glass{
+ name = "Dock"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"eOZ" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/item/material/fishing_net,
+/obj/machinery/alarm{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/shadekin)
+"ePl" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"ePs" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/orange,
+/turf/unsimulated/floor/wood{
+ icon_state = "wood-broken1"
+ },
+/area/skipjack_station)
+"ePF" = (
+/obj/structure/table/standard,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/skipjack_station)
+"ePG" = (
+/obj/machinery/bodyscanner{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"ePR" = (
+/obj/effect/forcefield{
+ desc = "You can't get in. Heh.";
+ layer = 1;
+ name = "Blocker"
+ },
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome)
+"eQj" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/brown,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/skipjack_station)
+"eQT" = (
+/obj/structure/closet/crate/medical,
+/obj/item/surgical/circular_saw,
+/obj/item/surgical/surgicaldrill,
+/obj/item/surgical/bonegel{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/surgical/bonesetter,
+/obj/item/surgical/scalpel,
+/obj/item/surgical/retractor{
+ pixel_y = 6
+ },
+/obj/item/surgical/hemostat{
+ pixel_y = 4
+ },
+/obj/item/surgical/cautery{
+ pixel_y = 4
+ },
+/obj/item/surgical/FixOVein{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/stack/nanopaste,
+/obj/item/tank/anesthetic,
+/obj/item/clothing/mask/breath/medical,
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/mask/surgical,
+/obj/item/autopsy_scanner,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"eQU" = (
+/obj/structure/table/rack/gun_rack/steel,
+/obj/random/thermalponcho,
+/obj/random/thermalponcho,
+/obj/random/thermalponcho,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"eRa" = (
+/obj/effect/forcefield{
+ desc = "You can't get in. Heh.";
+ layer = 1;
+ name = "Blocker"
+ },
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome)
+"eRd" = (
+/obj/structure/closet,
+/obj/item/clothing/suit/wizrobe/magusblue,
+/obj/item/clothing/head/wizard/magus,
+/obj/item/staff,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"eRl" = (
+/obj/effect/floor_decal/sign/small_h/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"eRT" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/green,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/skipjack_station)
+"eRV" = (
+/obj/structure/table/standard,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"eSU" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/shadekin)
+"eTi" = (
+/obj/structure/table/rack/gun_rack/steel,
+/obj/item/clothing/under/wedding/bride_red{
+ pixel_x = 3;
+ pixel_y = -1
+ },
+/obj/item/clothing/under/wedding/bride_purple{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/clothing/under/wedding/bride_orange{
+ pixel_x = 5;
+ pixel_y = 10
+ },
+/obj/item/clothing/under/wedding/bride_blue{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"eTC" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"eTP" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"eUz" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Bridge Access";
+ req_access = list(101)
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"eVf" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"eVq" = (
+/turf/simulated/shuttle/wall/dark,
+/area/shuttle/merchant)
+"eVH" = (
+/obj/structure/sign/warning/docking_area,
+/turf/unsimulated/wall,
+/area/centcom/command)
+"eVO" = (
+/obj/structure/kitchenspike,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/bar)
+"eWl" = (
+/obj/machinery/atmospherics/valve{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"eXs" = (
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/living)
+"eYg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"eZo" = (
+/obj/structure/table/reinforced,
+/obj/item/taperecorder,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"faN" = (
+/obj/structure/table/standard,
+/obj/effect/decal/cleanable/cobweb2,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/skipjack_station)
+"fbI" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Central Access"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"fcb" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/skipjack_station)
+"fch" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -28
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/skipjack_station)
+"fcH" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"feu" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/skipjack_station)
+"feP" = (
+/obj/effect/landmark/ai_multicam_room,
+/turf/unsimulated/ai_visible,
+/area/ai_multicam_room)
+"ffm" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/space/vox/pressure,
+/obj/item/clothing/suit/space/vox/pressure,
+/obj/item/clothing/head/helmet/space/vox/pressure,
+/obj/item/clothing/head/helmet/space/vox/pressure,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"ffE" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"ffK" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"fgA" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/shadekin)
+"fgE" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/shield_diffuser,
+/obj/item/shield_diffuser,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"fin" = (
+/obj/machinery/vending/coffee,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"fje" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/living)
+"fjC" = (
+/obj/item/gun/energy/plasmastun,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"fjX" = (
+/obj/item/gun/launcher/crossbow,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"fkm" = (
+/obj/machinery/smartfridge,
+/turf/unsimulated/wall,
+/area/centcom/bar)
+"flE" = (
+/obj/machinery/mech_recharger,
+/obj/mecha/combat/gygax/dark,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"fmg" = (
+/obj/machinery/shower{
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"fnw" = (
+/obj/structure/bed/chair/comfy/teal{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/command)
+"fny" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"fnY" = (
+/obj/structure/table/rack,
+/obj/item/melee/energy/sword,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"fps" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"fpX" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"fqr" = (
+/obj/machinery/appliance/cooker/grill,
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/shadekin)
+"fqz" = (
+/obj/machinery/vending/loadout/accessory,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"fqC" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 4;
+ frequency = 1381;
+ id_tag = "trade_shuttle";
+ pixel_x = -25;
+ req_one_access = list(101);
+ tag_door = "trade_shuttle_hatch"
+ },
+/obj/effect/shuttle_landmark/southern_cross/merchant_offsite,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"fro" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/adv,
+/obj/random/tetheraid,
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"frQ" = (
+/obj/structure/flora/underwater/plant3,
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/water/indoors/station,
+/area/shadekin)
+"fsD" = (
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Office Dormitory";
+ id_tag = "darkdorm5"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"fti" = (
+/obj/fiftyspawner/rods,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"fuD" = (
+/obj/structure/table/marble,
+/obj/item/storage/box/glasses/square,
+/obj/item/storage/box/glasses/square,
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"fuU" = (
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"fvh" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/floor_decal/corner/orange{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"fvD" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"fvI" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/clotting{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/firstaid/clotting,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"fwc" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "burst_r"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/response_ship)
+"fxD" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/palebush,
+/turf/simulated/floor/grass2,
+/area/shadekin)
+"fxL" = (
+/obj/item/clothing/mask/gas/swat/vox,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"fyE" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"fzj" = (
+/obj/structure/table/rack,
+/obj/item/clothing/mask/gas/swat/vox,
+/obj/item/clothing/mask/gas/swat/vox,
+/obj/item/clothing/mask/gas/swat/vox,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"fzo" = (
+/obj/structure/table/standard,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/syndicate_station)
+"fzw" = (
+/obj/machinery/dna_scannernew,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"fzK" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"fAw" = (
+/turf/simulated/shuttle/wall/hard_corner,
+/area/shuttle/supply)
+"fAS" = (
+/turf/unsimulated/beach/sand{
+ icon_state = "beach"
+ },
+/area/holodeck/source_beach)
+"fBu" = (
+/obj/machinery/power/emitter{
+ anchored = 1;
+ desc = "It is a heavy duty industrial laser used in a very non-industrial way.";
+ name = "teleport defender"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"fBC" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"fDl" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"fDt" = (
+/obj/structure/table/marble,
+/obj/machinery/cash_register/civilian{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"fDN" = (
+/obj/machinery/door/window/northright,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"fDU" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/broken_device,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"fDY" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/computer/supplycomp/control,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"fEF" = (
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/syndicate_station)
+"fGQ" = (
+/obj/random/cutout,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"fHO" = (
+/obj/machinery/atm{
+ pixel_x = -32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"fIh" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fIr" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"fIs" = (
+/obj/structure/reagent_dispensers/beerkeg/fakenuke{
+ desc = "Something seems off about this bomb.";
+ name = "\improper Nuclear Fission Explosive"
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/syndicate_station)
+"fIJ" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/syndicate_station)
+"fJc" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"fJh" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"fJi" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/syndicate_station)
+"fJp" = (
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/obj/item/target,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"fJt" = (
+/obj/structure/curtain/open/shower/security,
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_station)
+"fKq" = (
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"fME" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/armor/vest/ert/command,
+/obj/item/clothing/head/helmet/ert/command,
+/obj/item/storage/backpack/ert/commander,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"fMS" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/taperoll/atmos,
+/obj/item/taperoll/atmos,
+/obj/item/taperoll/atmos,
+/obj/item/pickaxe/drill,
+/obj/item/pickaxe/drill,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"fNJ" = (
+/obj/structure/undies_wardrobe,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_station)
+"fNL" = (
+/obj/effect/floor_decal/cetus/andromeda2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"fPF" = (
+/obj/structure/table/rack/gun_rack/steel,
+/obj/random/instrument,
+/obj/random/instrument,
+/obj/random/instrument,
+/obj/random/instrument,
+/obj/random/instrument,
+/obj/random/instrument,
+/obj/random/instrument,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"fQK" = (
+/obj/structure/table/reinforced,
+/obj/item/tool/crowbar,
+/obj/item/tool/crowbar,
+/obj/item/tool/crowbar,
+/obj/item/tool/crowbar,
+/obj/item/tool/crowbar,
+/obj/item/tool/crowbar,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/flashlight,
+/obj/item/flashlight,
+/obj/item/flashlight,
+/obj/item/flashlight,
+/obj/item/flashlight,
+/obj/item/flashlight,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"fRb" = (
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/window/plastitanium/full,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"fRj" = (
+/turf/unsimulated/wall,
+/area/centcom/security)
+"fRw" = (
+/obj/effect/shuttle_landmark/southern_cross/escape_pod3/offsite,
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape_pod3/centcom)
+"fRY" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fSd" = (
+/turf/simulated/shuttle/wall,
+/area/space)
+"fSf" = (
+/obj/structure/flora/tree/dead/holo,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"fSp" = (
+/obj/structure/curtain/open/shower/security,
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_station)
+"fSV" = (
+/obj/machinery/appliance/cooker/fryer,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"fSY" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/mmi/radio_enabled,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"fTy" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fVX" = (
+/turf/unsimulated/wall/door_maint,
+/area/centcom/terminal)
+"fWi" = (
+/obj/structure/bed/chair,
+/turf/simulated/shuttle/floor/skipjack,
+/area/shuttle/syndicate_elite/mothership)
+"fWz" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/snacks/amanita_pie,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"fXl" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "A plaque commemorating the construction of the cargo ship Beruang.";
+ name = "Beruang";
+ pixel_x = 32
+ },
+/mob/living/simple_mob/animal/passive/dog/tamaskan/Spice,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/merchant)
+"fXz" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"fXS" = (
+/obj/structure/sign/electricshock,
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/wizard_station)
+"fXU" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"fYp" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja_dojo/dojo)
+"fZg" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fZh" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/hos,
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"fZr" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"fZx" = (
+/obj/machinery/vending/engivend,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"gaa" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeobserve)
+"gav" = (
+/obj/machinery/door/airlock/uranium_appearance,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja_dojo/dojo)
+"gax" = (
+/obj/structure/closet/secure_closet/bar,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/bar)
+"gbx" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/random/contraband,
+/obj/item/bikehorn,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"gbB" = (
+/obj/machinery/door/airlock/uranium_appearance,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/ninja_dojo/dojo)
+"gcg" = (
+/turf/simulated/floor/grass,
+/area/shadekin)
+"gcC" = (
+/obj/machinery/pipedispenser/orderable,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"gcV" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"gdn" = (
+/turf/simulated/floor/holofloor/beach/water,
+/area/holodeck/source_beach)
+"ggh" = (
+/obj/structure/lattice,
+/turf/simulated/floor/water/indoors/station,
+/area/shadekin)
+"ggj" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_desert)
+"ggK" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"ggM" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"ggV" = (
+/obj/structure/flora/pottedplant,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/bar)
+"ghm" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/brown,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/shuttle/trade)
+"ghq" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"ghB" = (
+/obj/machinery/vending/loadout/costume,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"ghD" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/snacks/stew,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"gja" = (
+/obj/machinery/door/airlock/glass_centcom{
+ name = "Bridge Access";
+ req_access = list(101)
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"gjv" = (
+/obj/structure/flora/lily2,
+/turf/simulated/floor/water/indoors/station,
+/area/shadekin)
+"gjw" = (
+/mob/living/simple_mob/animal/passive/cat/kitten{
+ name = "Enola"
+ },
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/space)
+"gjN" = (
+/obj/machinery/airlock_sensor{
+ pixel_y = 27
+ },
+/obj/effect/shuttle_landmark{
+ base_area = /area/ninja_dojo/dojo;
+ base_turf = /turf/snow;
+ landmark_tag = "ninja_start";
+ name = "Dojo Outpost"
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/ninja)
+"gjZ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/meter,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/ninja)
+"gko" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/shadekin)
+"gld" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"glC" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black/border{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"glO" = (
+/obj/structure/table/standard,
+/obj/item/storage/toolbox/electrical,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"gmB" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/escape/centcom)
+"gmI" = (
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/structure/table/standard,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"gmT" = (
+/obj/structure/closet/wardrobe/green,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"gnJ" = (
+/obj/machinery/optable,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"goa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/ninja)
+"goE" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/ninja)
+"goW" = (
+/obj/structure/salvageable/console{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shadekin)
+"gpo" = (
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/ninja)
+"gpC" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"gpK" = (
+/turf/simulated/floor/water/indoors/station,
+/area/shadekin)
+"gqt" = (
+/obj/machinery/door/airlock/glass,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"gsl" = (
+/obj/structure/table/hardwoodtable,
+/obj/random/drinkbottle,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"guJ" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/closet/emcloset,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"guK" = (
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"gvn" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/storage/firstaid/adv{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/combat,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/ninja)
+"gwg" = (
+/obj/structure/table/reinforced,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 21;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"gwk" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/flashlight/lamp/green,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/bar)
+"gws" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/transport1/centcom)
+"gwC" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/snacks/chips,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gwE" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gwF" = (
+/obj/item/beach_ball,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"gwZ" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/bar)
+"gxT" = (
+/obj/effect/landmark{
+ name = "voxstart"
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/skipjack_station)
+"gyw" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"gyC" = (
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"gyJ" = (
+/obj/machinery/door/blast/regular{
+ id = "thunderdomeaxe";
+ name = "Axe Supply"
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome/tdome1)
+"gyK" = (
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/skipjack_station)
+"gzT" = (
+/obj/machinery/door/airlock/maintenance/medical{
+ name = "Medbay";
+ req_one_access = null
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"gAy" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"gBb" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"gBc" = (
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 8;
+ name = "Maintenance Access"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"gCg" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 32
+ },
+/obj/structure/bed/chair,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"gCB" = (
+/obj/structure/bed/chair,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gCM" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/obj/effect/map_effect/portal/line/side_a,
+/obj/effect/map_effect/perma_light/concentrated/incandescent,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"gCT" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"gCY" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/snacks/beetsoup,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"gDj" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/donkpockets,
+/obj/item/storage/box/donkpockets,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 30
+ },
+/obj/effect/floor_decal/corner/orange{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"gDm" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Ship Hatch"
+ },
+/obj/machinery/access_button{
+ dir = 1;
+ pixel_x = -27;
+ pixel_y = 7
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"gEf" = (
+/obj/machinery/washing_machine,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"gEr" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"gEP" = (
+/obj/structure/table/bench/padded,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"gFU" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_boxingcourt)
+"gFV" = (
+/obj/item/suit_cooling_unit,
+/obj/structure/table/steel_reinforced,
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"gGb" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/skipjack_station)
+"gGS" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"gHz" = (
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"gHC" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome)
+"gHH" = (
+/obj/effect/decal/cleanable/blood,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/skipjack_station)
+"gHT" = (
+/obj/structure/filingcabinet/chestdrawer{
+ desc = "A large drawer filled with autopsy reports.";
+ name = "Autopsy Reports"
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"gHV" = (
+/obj/machinery/gibber,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/skipjack_station)
+"gIe" = (
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"gIK" = (
+/obj/structure/kitchenspike,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/skipjack_station)
+"gIQ" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/extinguisher,
+/obj/item/tool/crowbar,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"gIU" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/shadekin)
+"gJV" = (
+/turf/unsimulated/wall/shuttle_bay,
+/area/skipjack_station)
+"gKE" = (
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"gKZ" = (
+/obj/structure/table/rack,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/item/ammo_magazine/m9mmt,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"gLL" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"gMu" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"gMK" = (
+/obj/structure/flora/pottedplant/stoutbush,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/main_hall)
+"gOa" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "admin_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch";
+ req_access = list(13)
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/floor/plating,
+/area/shuttle/administration)
+"gOq" = (
+/obj/effect/landmark{
+ name = "Syndicate-Uplink"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"gON" = (
+/obj/structure/bed/roller,
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"gPr" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"gPu" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/donut,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"gPT" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide{
+ pixel_x = 1
+ },
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"gQj" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Armory"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"gQz" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/glasses/square{
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/syndicate_station)
+"gQF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microwave{
+ pixel_x = -1;
+ pixel_y = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/syndicate_station)
+"gTd" = (
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_station)
+"gTx" = (
+/obj/structure/sink{
+ dir = 1;
+ pixel_y = -9
+ },
+/obj/structure/mirror{
+ pixel_y = -26;
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"gTz" = (
+/obj/effect/floor_decal/corner/white,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"gTL" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/rack,
+/obj/item/clothing/glasses/night{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/clothing/glasses/night{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/clothing/glasses/night{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/clothing/glasses/night{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/clothing/glasses/night{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/clothing/glasses/night{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/clothing/glasses/sunglasses/sechud/tactical{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/clothing/glasses/sunglasses/sechud/tactical{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/clothing/glasses/sunglasses/sechud/tactical{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/clothing/glasses/sunglasses/sechud/tactical{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/clothing/glasses/sunglasses/sechud/tactical{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/clothing/glasses/sunglasses/sechud/tactical{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"gUz" = (
+/obj/structure/closet,
+/obj/item/clothing/under/psysuit,
+/obj/item/clothing/suit/wizrobe/psypurple,
+/obj/item/clothing/head/wizard/amp,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"gUE" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"gUS" = (
+/obj/structure/closet/crate/secure/weapon,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"gVO" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_station)
+"gWd" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"gWI" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"gWP" = (
+/obj/machinery/recharge_station,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_station)
+"gXc" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"gXg" = (
+/obj/machinery/door/window/westleft{
+ name = "Storefront";
+ req_access = list(160)
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "trade";
+ name = "Shop Shutters";
+ opacity = 0
+ },
+/obj/structure/table/marble,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/merchant)
+"gYo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"gYE" = (
+/obj/machinery/vending/hydroseeds,
+/turf/simulated/shuttle/floor/black,
+/area/shadekin)
+"gZq" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"gZS" = (
+/obj/machinery/seed_storage/garden{
+ dir = 4;
+ pixel_x = -5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shadekin)
+"hbs" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"hbG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"hbJ" = (
+/obj/machinery/vending/loadout/uniform,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"hcd" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"hcn" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "supply_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch";
+ req_access = list(13)
+ },
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad2"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"hcK" = (
+/obj/machinery/door/airlock/maintenance/cargo{
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"hdj" = (
+/obj/machinery/computer/pod{
+ dir = 1;
+ id = "syndicate_elite";
+ name = "Hull Door Control"
+ },
+/turf/simulated/shuttle/floor/skipjack,
+/area/shuttle/syndicate_elite/mothership)
+"hdC" = (
+/obj/machinery/access_button{
+ pixel_x = 27;
+ pixel_y = -7
+ },
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Ship Hatch"
+ },
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"hel" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating{
+ icon_state = "dmg1"
+ },
+/area/shadekin)
+"hem" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"heI" = (
+/obj/structure/table/glass,
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/item/denecrotizer/medical{
+ charges = 999;
+ cooldown = 1;
+ name = "administrative denecrotizer";
+ pixel_x = -8;
+ revive_time = 10
+ },
+/obj/item/denecrotizer/medical{
+ charges = 999;
+ cooldown = 1;
+ name = "administrative denecrotizer";
+ revive_time = 10
+ },
+/obj/item/denecrotizer/medical{
+ charges = 999;
+ cooldown = 1;
+ name = "administrative denecrotizer";
+ pixel_x = 8;
+ revive_time = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"heO" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"heQ" = (
+/obj/item/toy/chess/bishop_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"hft" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/administration)
+"hfQ" = (
+/obj/structure/table/rack/holorack,
+/obj/item/clothing/under/dress/dress_saloon,
+/obj/item/clothing/head/pin/flower,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_theatre)
+"hfU" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/main_hall)
+"hga" = (
+/obj/machinery/computer/syndicate_elite_shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/skipjack,
+/area/shuttle/syndicate_elite/mothership)
+"hgc" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja_dojo/dojo)
+"hgF" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"hgO" = (
+/obj/machinery/vending/loadout/gadget,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"hhn" = (
+/obj/structure/table/glass,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/main_hall)
+"hhZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"hjt" = (
+/obj/effect/floor_decal/corner/yellow,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hjU" = (
+/obj/item/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = -6
+ },
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/living)
+"hkz" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 4;
+ frequency = 1381;
+ id_tag = "admin_shuttle";
+ pixel_x = -25;
+ req_one_access = list(101);
+ tag_door = "admin_shuttle_hatch"
+ },
+/obj/effect/shuttle_landmark/southern_cross/admin_offsite,
+/turf/simulated/floor/plating,
+/area/shuttle/administration)
+"hkO" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "propulsion_l"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/merchant)
+"hkQ" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/accessory/collar/shock,
+/obj/item/implanter/compliance,
+/obj/item/capture_crystal,
+/obj/random/fromList/TFGuns,
+/obj/random/fromList/TFGuns,
+/obj/item/clothing/accessory/collar/shock/bluespace/modified,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/leash/cable,
+/obj/item/clothing/mask/muzzle/ballgag/ringgag,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"hlg" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/snacks/meatsteak,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"hlq" = (
+/turf/simulated/wall/r_wall,
+/area/shadekin)
+"hlJ" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_emptycourt)
+"hlL" = (
+/obj/item/toy/plushie/carp,
+/obj/item/toy/plushie/corgi{
+ pixel_x = -7;
+ pixel_y = 6
+ },
+/obj/item/toy/plushie/robo_corgi{
+ pixel_x = 4;
+ pixel_y = 15
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"hmc" = (
+/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"hmT" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"hnj" = (
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 1;
+ frequency = 1331;
+ id_tag = "ninja_shuttle";
+ pixel_y = -27;
+ req_access = list(150)
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "blastninja";
+ name = "ship lockdown control";
+ pixel_x = -25
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/ninja)
+"hnI" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/specops)
+"hnX" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"hol" = (
+/turf/simulated/wall,
+/area/shadekin)
+"hop" = (
+/obj/machinery/vending/foodstuffing,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"hoC" = (
+/turf/simulated/floor/weird_things/dark{
+ nitrogen = 93.7835;
+ oxygen = 20.7263;
+ temperature = 243.15
+ },
+/area/space)
+"hoQ" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/machinery/door/airlock/voidcraft/vertical{
+ name = "Ship Internal Hatch"
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = 7;
+ pixel_y = 27
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/ninja)
+"hpr" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/ninja)
+"hpt" = (
+/obj/structure/table/standard,
+/obj/machinery/chemical_dispenser/bar_alc/full,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"hpU" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"hqk" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/ninja)
+"hqz" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"hqE" = (
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/space)
+"hrx" = (
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/wizard_station)
+"hrC" = (
+/turf/unsimulated/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/skipjack_station)
+"hrS" = (
+/obj/effect/landmark/darkspawn,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"hst" = (
+/obj/machinery/vending/medical,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"hsu" = (
+/obj/machinery/recharge_station,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/bar)
+"hsK" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/skipjack_station)
+"hsW" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/security)
+"hsZ" = (
+/obj/machinery/telecomms/broadcaster/preset_cent,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"hto" = (
+/obj/machinery/door/airlock/hatch{
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel_dirty"
+ },
+/area/skipjack_station)
+"huo" = (
+/obj/machinery/computer/shuttle_control/emergency,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"huK" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"huM" = (
+/turf/unsimulated/floor{
+ icon_state = "steel_dirty"
+ },
+/area/skipjack_station)
+"hvN" = (
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape_pod2/centcom)
+"hwq" = (
+/obj/item/xenos_claw,
+/obj/item/organ/internal/brain/vox,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"hwT" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"hxu" = (
+/obj/item/ore,
+/turf/unsimulated/floor{
+ icon_state = "asteroid_dug";
+ name = "plating"
+ },
+/area/skipjack_station)
+"hyl" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"hyO" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_desert)
+"hzc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/terminal)
+"hzA" = (
+/obj/effect/floor_decal/corner/red/full,
+/obj/structure/table/holotable,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"hzD" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/pill_bottle/dice,
+/obj/item/deck/cards,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"hzI" = (
+/obj/effect/landmark{
+ name = "Nuclear-Bomb"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"hAc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/largecrate/animal/cow,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"hAG" = (
+/obj/structure/table/standard,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"hAJ" = (
+/obj/structure/closet{
+ name = "custodial"
+ },
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/mop,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"hAO" = (
+/obj/structure/table/reinforced,
+/obj/item/tray{
+ pixel_y = 5
+ },
+/obj/effect/landmark{
+ name = "Nuclear-Code"
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/syndicate_station)
+"hBn" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/syndicate_station)
+"hCc" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/structure/closet/crate/solar,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"hCP" = (
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -32
+ },
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_station)
+"hDp" = (
+/obj/item/robot_parts/r_leg,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"hEP" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"hEQ" = (
+/obj/machinery/door/window/northleft{
+ name = "Cargo Hold";
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"hFp" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"hFE" = (
+/obj/item/storage/box,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"hGu" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"hGO" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"hGQ" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/condiment/small/peppermill,
+/obj/item/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/bar)
+"hGV" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/lino,
+/area/holodeck/source_meetinghall)
+"hIC" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/machinery/light/fluorescent,
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"hIM" = (
+/obj/structure/table/rack,
+/obj/item/ammo_magazine/ammo_box/b12g/pellet,
+/obj/item/ammo_magazine/ammo_box/b12g/stunshell,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"hIN" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"hIX" = (
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/shuttle/syndicate_elite/mothership)
+"hKH" = (
+/obj/machinery/door/airlock/external{
+ name = "Shuttle Airlock";
+ req_access = list(150)
+ },
+/obj/machinery/door/blast/regular{
+ id = "syndicate_elite";
+ name = "Front Hull Door"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate_elite/mothership)
+"hKM" = (
+/turf/simulated/shuttle/floor/yellow,
+/area/centcom/evac)
+"hKV" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/supply)
+"hKW" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"hLw" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/shadekin)
+"hMe" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"hMz" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"hMB" = (
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/ninja_dojo/dojo)
+"hNb" = (
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"hNi" = (
+/obj/machinery/microwave{
+ pixel_x = -1;
+ pixel_y = 8
+ },
+/obj/structure/table/marble,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/wizard_station)
+"hNs" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/simulated/shuttle/plating,
+/area/shuttle/administration)
+"hNB" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/largecrate/hoverpod,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"hOO" = (
+/turf/simulated/shuttle/wall,
+/area/centcom/evac)
+"hPo" = (
+/obj/structure/closet{
+ name = "Prisoner's Locker"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"hPZ" = (
+/obj/structure/table/standard,
+/obj/item/clothing/suit/space/void/merc,
+/obj/item/clothing/suit/space/void/merc,
+/obj/item/clothing/suit/space/void/merc,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/head/helmet/space/void/merc,
+/obj/item/clothing/head/helmet/space/void/merc,
+/obj/item/clothing/head/helmet/space/void/merc,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"hQg" = (
+/obj/effect/floor_decal/carpet,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/ninja_dojo/dojo)
+"hQh" = (
+/obj/machinery/clonepod,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"hQH" = (
+/turf/simulated/shuttle/plating,
+/area/shuttle/large_escape_pod1/centcom)
+"hQX" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/toolbox,
+/obj/random/toolbox,
+/obj/random/toolbox,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"hRa" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/ninja_dojo/dojo)
+"hRf" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ glass = 1380;
+ icon_state = "door_locked";
+ id_tag = "centcom_shuttle_bay_door";
+ locked = 1;
+ name = "Transport Airlock"
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"hRx" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/toxin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/toxin,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"hRE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/shadekin)
+"hRJ" = (
+/obj/structure/window/plastitanium/full{
+ anchored = 0
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shadekin)
+"hSz" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/computer/station_alert{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/ninja)
+"hSZ" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/storage/belt/medical,
+/obj/item/storage/belt/medical,
+/obj/item/storage/belt/medical,
+/obj/item/storage/belt/medical/emt,
+/obj/item/storage/belt/medical/emt,
+/obj/item/storage/belt/medical/emt,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"hUu" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/ninja)
+"hUC" = (
+/obj/structure/table/standard,
+/obj/item/camera,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"hUS" = (
+/obj/effect/landmark{
+ name = "voxstart"
+ },
+/turf/unsimulated/floor/wood{
+ icon_state = "wood-broken2"
+ },
+/area/skipjack_station)
+"hUU" = (
+/obj/structure/table/woodentable,
+/obj/item/flashlight/lamp/green{
+ on = 0;
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/toy/figure/ninja,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/wizard_station)
+"hVd" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"hVi" = (
+/obj/item/storage/box/glasses/coffeecup{
+ pixel_x = -6;
+ pixel_y = -3
+ },
+/obj/item/storage/box/glasses/coffeemug{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/obj/item/storage/box/glasses/square{
+ pixel_x = 9;
+ pixel_y = -3
+ },
+/obj/item/storage/box/buns{
+ pixel_x = 9;
+ pixel_y = 8
+ },
+/obj/structure/table/rack/shelf/steel,
+/obj/item/storage/box/buns{
+ pixel_x = 9;
+ pixel_y = 8
+ },
+/obj/item/storage/box/brainzsnax{
+ pixel_x = 9;
+ pixel_y = 19
+ },
+/obj/item/storage/box/brainzsnax/red{
+ pixel_x = 9;
+ pixel_y = 19
+ },
+/obj/item/storage/box/condimentbottles{
+ pixel_x = -6;
+ pixel_y = 19
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/shadekin)
+"hVL" = (
+/obj/machinery/door/airlock/medical,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"hVU" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_access = list(160)
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"hWj" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ dir = 4;
+ pixel_x = 5
+ },
+/obj/structure/window/reinforced/tinted,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/specops)
+"hWB" = (
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"hXb" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"hXA" = (
+/obj/machinery/replicator/clothing,
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"hYu" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"hYS" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/syringes{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/box/syringes,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"hZH" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/condiment/small/peppermill,
+/obj/item/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"hZO" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/mecha/working/ripley/mining,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"iai" = (
+/obj/structure/table/woodentable,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 12
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"iaB" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/skipjack_station)
+"iaK" = (
+/obj/machinery/door/airlock/hatch{
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"iaT" = (
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"iaZ" = (
+/obj/structure/table/rack,
+/obj/item/clothing/glasses/thermal/plain/monocle,
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"ica" = (
+/obj/item/toy/chess/rook_black,
+/turf/simulated/floor/holofloor/bmarble{
+ color = "teal"
+ },
+/area/holodeck/source_chess)
+"icd" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"idf" = (
+/obj/item/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Subversive Intercom";
+ pixel_x = -32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/obj/item/target,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"idg" = (
+/obj/structure/table/rack,
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"idu" = (
+/obj/effect/landmark{
+ name = "Trader"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/shuttle/trade)
+"idX" = (
+/obj/structure/table/rack,
+/obj/item/gun/launcher/spikethrower,
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"ieC" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/terminal)
+"ieX" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"ifb" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"ifp" = (
+/obj/machinery/computer/communications{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/centcom/evac)
+"ifY" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"igi" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "tradebridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"ihi" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"ihH" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"iiH" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_boxingcourt)
+"ijG" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/structure/handrail,
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/transport1/centcom)
+"ijT" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"ijW" = (
+/obj/machinery/computer/crew,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"ilA" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"ilG" = (
+/obj/item/toy/plushie/borgplushie/drake/mine,
+/obj/item/toy/plushie/carp/ice{
+ pixel_x = -7;
+ pixel_y = -5
+ },
+/obj/item/toy/plushie/coffee_fox{
+ pixel_x = 7;
+ pixel_y = 12
+ },
+/obj/effect/landmark/darkspawn,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"imM" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"inQ" = (
+/obj/effect/floor_decal/cetus/andromeda5,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"inZ" = (
+/obj/machinery/porta_turret/crescent,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"ioe" = (
+/obj/structure/table/glass,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"ion" = (
+/obj/structure/table/rack,
+/obj/item/tank/jetpack/oxygen,
+/obj/item/tank/jetpack/oxygen,
+/obj/item/tank/jetpack/oxygen,
+/obj/item/tank/jetpack/oxygen,
+/obj/item/tank/jetpack/oxygen,
+/obj/item/tank/jetpack/oxygen,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"ioF" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"ioS" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/shadekin)
+"ipT" = (
+/obj/machinery/vending/security,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"irb" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"ire" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"irq" = (
+/obj/structure/table/rack,
+/obj/item/clothing/suit/storage/vest/heavy/merc,
+/obj/item/clothing/suit/storage/vest/heavy,
+/obj/item/clothing/suit/storage/vest,
+/obj/item/clothing/head/helmet,
+/obj/item/clothing/head/helmet,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"irM" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"isj" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"iti" = (
+/obj/structure/table/rack,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/tank/jetpack/carbondioxide,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"itl" = (
+/obj/machinery/vending/loadout/clothing,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"itN" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"itW" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"iur" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 1;
+ name = "Green Corner"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"iut" = (
+/obj/structure/closet/secure_closet/freezer/kitchen{
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/syndicate_station)
+"iuw" = (
+/obj/machinery/iv_drip,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"iuK" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"ivB" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/vending/dinnerware,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"ivD" = (
+/turf/unsimulated/wall,
+/area/tdome)
+"ivK" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/food/drinks/bottle/vodka{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/reagent_containers/food/drinks/bottle/wine{
+ pixel_x = -1;
+ pixel_y = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/syndicate_station)
+"ivP" = (
+/obj/structure/table/standard,
+/obj/item/towel{
+ color = "#ff0000";
+ name = "red towel"
+ },
+/obj/item/towel{
+ color = "#ff0000";
+ name = "red towel"
+ },
+/obj/item/towel{
+ color = "#ff0000";
+ name = "red towel"
+ },
+/obj/item/towel{
+ color = "#ff0000";
+ name = "red towel"
+ },
+/obj/item/towel{
+ color = "#ff0000";
+ name = "red towel"
+ },
+/obj/item/soap/syndie,
+/obj/item/soap/syndie,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_station)
+"iwo" = (
+/obj/structure/closet/secure_closet/freezer/fridge{
+ locked = 0
+ },
+/obj/item/storage/box/donkpockets/gondola{
+ pixel_y = -7
+ },
+/obj/item/storage/box/donkpockets/gondola{
+ pixel_y = -7
+ },
+/obj/item/storage/box/donkpockets/gondola{
+ pixel_y = -7
+ },
+/obj/item/storage/box/donkpockets/berry{
+ pixel_y = -3
+ },
+/obj/item/storage/box/donkpockets/berry{
+ pixel_y = -3
+ },
+/obj/item/storage/box/donkpockets/berry{
+ pixel_y = -3
+ },
+/obj/item/storage/box/donkpockets/honk{
+ pixel_y = 1
+ },
+/obj/item/storage/box/donkpockets/honk{
+ pixel_y = 1
+ },
+/obj/item/storage/box/donkpockets/honk{
+ pixel_y = 1
+ },
+/obj/item/storage/box/donkpockets/pizza{
+ pixel_y = 5
+ },
+/obj/item/storage/box/donkpockets/pizza{
+ pixel_y = 5
+ },
+/obj/item/storage/box/donkpockets/pizza{
+ pixel_y = 5
+ },
+/obj/item/storage/box/donkpockets/spicy{
+ pixel_y = 9
+ },
+/obj/item/storage/box/donkpockets/spicy{
+ pixel_y = 9
+ },
+/obj/item/storage/box/donkpockets/spicy{
+ pixel_y = 9
+ },
+/obj/item/storage/box/donkpockets/teriyaki{
+ pixel_y = 13
+ },
+/obj/item/storage/box/donkpockets/teriyaki{
+ pixel_y = 13
+ },
+/obj/item/storage/box/donkpockets/teriyaki{
+ pixel_y = 13
+ },
+/turf/simulated/floor/tiled/freezer,
+/area/shadekin)
+"iwL" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/bodybags{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/box/bodybags,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"ixd" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/bar)
+"ixP" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"iye" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"iyB" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_station)
+"iyX" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"izl" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ req_access = list(101)
+ },
+/turf/simulated/shuttle/plating,
+/area/centcom/evac)
+"izq" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_station)
+"izM" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"izU" = (
+/obj/machinery/door/blast/regular{
+ id = "ASSAULT-W";
+ name = "Assault Weapon Storage"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"izZ" = (
+/obj/machinery/sleep_console,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"iBf" = (
+/turf/simulated/floor/airless,
+/area/shuttle/syndicate_elite/mothership)
+"iBk" = (
+/obj/structure/table/hardwoodtable,
+/obj/random/drinkbottle{
+ pixel_x = -11
+ },
+/obj/random/drinkbottle{
+ pixel_y = -4;
+ pixel_x = -9
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"iBZ" = (
+/obj/item/pizzabox/meat,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/skipjack)
+"iCl" = (
+/turf/unsimulated/floor/wood{
+ icon_state = "wood-broken1"
+ },
+/area/ninja_dojo/dojo)
+"iCF" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/rack,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"iDH" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/paicard,
+/obj/item/pda/syndicate,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/ninja)
+"iDJ" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"iDN" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"iDU" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/ninja)
+"iEF" = (
+/obj/machinery/computer/station_alert,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"iFp" = (
+/obj/machinery/sleep_console,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"iFu" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/storage/toolbox/syndicate{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "ninjawindow";
+ name = "remote shutter control";
+ pixel_y = -25;
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/ninja)
+"iFG" = (
+/obj/structure/flora/pottedplant/orientaltree,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"iFK" = (
+/obj/structure/bed/chair/sofa/corp/right,
+/obj/machinery/button/remote/airlock{
+ id = "darkdorm5";
+ name = "Bolt Control";
+ specialfunctions = 4;
+ pixel_y = 25
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"iGP" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/blue,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/skipjack_station)
+"iGQ" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"iHc" = (
+/obj/structure/bed/chair,
+/turf/simulated/shuttle/floor/yellow,
+/area/centcom/evac)
+"iHl" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/orange,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/skipjack_station)
+"iHP" = (
+/obj/structure/table/standard,
+/turf/simulated/shuttle/floor/black,
+/area/centcom/evac)
+"iHW" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/hop,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/skipjack_station)
+"iIi" = (
+/obj/structure/sign/scenery/map/left{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"iIl" = (
+/obj/machinery/button/remote/blast_door{
+ id = "tradestationshutters";
+ name = "warehouse control";
+ pixel_x = -30;
+ req_access = list(160)
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/shuttle/trade)
+"iIH" = (
+/obj/machinery/computer/arcade,
+/turf/simulated/floor/carpet/geo,
+/area/shadekin)
+"iJR" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"iJS" = (
+/turf/simulated/shuttle/wall/no_join/orange,
+/area/centcom/evac)
+"iKj" = (
+/obj/structure/morgue,
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"iKH" = (
+/obj/structure/dummystairs/hazardledge,
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"iLy" = (
+/obj/machinery/iv_drip,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"iMv" = (
+/obj/item/tool/crowbar,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"iMC" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/grass2,
+/area/shadekin)
+"iMR" = (
+/obj/item/ore,
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"iMS" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"iNt" = (
+/obj/structure/lattice,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"iOe" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/shuttle/engine/heater{
+ dir = 4
+ },
+/turf/simulated/shuttle/wall,
+/area/shuttle/supply)
+"iPB" = (
+/obj/machinery/door/airlock/centcom{
+ name = "General Access";
+ req_access = list();
+ req_one_access = list()
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/command)
+"iPX" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"iQn" = (
+/obj/item/clothing/head/xenos,
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"iQW" = (
+/obj/machinery/door/airlock/maintenance,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"iQX" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"iRn" = (
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"iSl" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "response_base";
+ name = "docking port controller";
+ pixel_y = -27;
+ req_one_access = list(103);
+ tag_door = "response_base_door"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"iSO" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"iTc" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"iTl" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"iTr" = (
+/obj/structure/bed/pillowpilefront/green,
+/turf/simulated/floor/carpet/geo,
+/area/shadekin)
+"iTJ" = (
+/obj/structure/table/standard,
+/obj/item/storage/toolbox/mechanical,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"iTM" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"iUi" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Suit Storage"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"iVg" = (
+/obj/structure/dark_portal/hub{
+ name = "Dark portal (Shadekin retreat)"
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"iVu" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Kitchen";
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/syndicate_station)
+"iVA" = (
+/obj/structure/closet/wardrobe/pink,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"iVO" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/syndicate_station)
+"iWa" = (
+/obj/structure/table/bench/wooden,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"iWn" = (
+/obj/structure/table/standard,
+/obj/machinery/microwave,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"iWs" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_theatre)
+"iXz" = (
+/obj/structure/flight_right{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/ninja)
+"iXD" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"iXO" = (
+/obj/structure/table/standard,
+/obj/item/material/kitchen/utensil/fork,
+/obj/item/material/kitchen/utensil/spoon{
+ pixel_x = 2
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/bar)
+"iXW" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"iYC" = (
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"iYS" = (
+/obj/machinery/computer/shuttle_control/multi/ninja{
+ dir = 1;
+ icon_keyboard = "flight_center_key";
+ icon_screen = "flight_center";
+ icon_state = "flightcomp_center"
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/ninja)
+"iZi" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"jai" = (
+/obj/effect/step_trigger/teleporter/randomspawn{
+ teleport_x = 92;
+ teleport_z = 1;
+ teleport_y = 138;
+ destroyprob = 0
+ },
+/turf/simulated/floor/lino,
+/area/shadekin)
+"jaP" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_x = 27
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"jcb" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"jcs" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/escape/centcom)
+"jcu" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/shadekin)
+"jee" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/bar)
+"jeh" = (
+/obj/structure/flight_left{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/ninja)
+"jev" = (
+/obj/structure/bed/chair,
+/obj/effect/landmark{
+ name = "endgame_exit"
+ },
+/obj/item/toy/plushie/mouse{
+ desc = "A plushie of a small fuzzy rodent.";
+ name = "Woodrat"
+ },
+/turf/unsimulated/beach/sand,
+/area/beach)
+"jfb" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"jfd" = (
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/merchant)
+"jfN" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/merchant)
+"jfP" = (
+/obj/item/firstaid_arm_assembly,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"jgt" = (
+/turf/unsimulated/wall/door_maint,
+/area/centcom/bar)
+"jgC" = (
+/obj/machinery/power/emitter,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"jgX" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/energy/ionrifle/pistol,
+/obj/item/gun/energy/ionrifle/pistol,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"jhj" = (
+/obj/structure/bed/chair,
+/obj/effect/landmark{
+ name = "endgame_exit"
+ },
+/turf/unsimulated/beach/sand,
+/area/beach)
+"jhH" = (
+/obj/structure/catwalk,
+/obj/random/trash,
+/obj/machinery/button/remote/airlock{
+ id = "darkdorm2";
+ name = "Bolt Control";
+ specialfunctions = 4;
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/plating,
+/area/shadekin)
+"jhV" = (
+/obj/structure/closet/secure_closet/medical_wall{
+ name = "O- Blood Locker";
+ pixel_y = -32
+ },
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"jiq" = (
+/obj/structure/table/marble,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/blast/gate{
+ dir = 4;
+ name = "The Crap Shack";
+ id = "Maintfish"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"jiP" = (
+/obj/machinery/shieldwallgen,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"jiZ" = (
+/obj/structure/bed/pillowpile/green,
+/turf/simulated/floor/carpet/geo,
+/area/shadekin)
+"jjh" = (
+/obj/machinery/vending/coffee,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"jjH" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "propulsion_r"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/merchant)
+"jkf" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/skipjack_station)
+"jkB" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"jlo" = (
+/turf/unsimulated/wall/shuttle_bay{
+ dir = 8
+ },
+/area/centcom/specops)
+"jlq" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"jlK" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"jmb" = (
+/obj/item/autopsy_scanner,
+/obj/item/surgical/scalpel,
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"jmT" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"jni" = (
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"jnw" = (
+/obj/structure/urinal{
+ pixel_y = 29
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"jog" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/paleblue/full,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"joh" = (
+/obj/effect/overlay/palmtree_l,
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"joq" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/bar)
+"joY" = (
+/obj/machinery/door/airlock/hatch{
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/skipjack_station)
+"jpJ" = (
+/obj/item/storage/box,
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"jqC" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/terminal)
+"jqH" = (
+/obj/structure/frame/computer,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"jrG" = (
+/obj/item/clothing/mask/gas/swat{
+ desc = "A close-fitting mask clearly not made for a human face.";
+ name = "\improper alien mask"
+ },
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"jss" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/void/merc,
+/obj/item/clothing/mask/gas/syndicate,
+/obj/item/clothing/head/helmet/space/void/merc,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"jsz" = (
+/turf/unsimulated/wall/fake_dark{
+ block_tele = 1;
+ blocks_nonghost_incorporeal = 1
+ },
+/area/space)
+"jsR" = (
+/obj/machinery/computer/security,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"jsX" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/syndicate/black/green,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/syndicate/black/green,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"jtr" = (
+/obj/machinery/door/airlock/command{
+ name = "Bridge";
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"jun" = (
+/obj/item/beach_ball,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"jvs" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Bay";
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"jvA" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "response_shuttle_door";
+ locked = 1;
+ name = "Forward Docking Hatch";
+ req_access = list(13)
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"jvB" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"jvE" = (
+/obj/machinery/vending/snack{
+ dir = 4;
+ name = "hacked Getmore Chocolate Corp";
+ prices = list()
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"jvF" = (
+/obj/effect/floor_decal/cetus/andromeda1,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"jvL" = (
+/obj/structure/sign/scenery/map/left{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/syndicate_station)
+"jwh" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"jwk" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/coin/uranium,
+/obj/item/coin/silver,
+/obj/item/coin/platinum,
+/obj/item/coin/phoron,
+/obj/item/coin/iron,
+/obj/item/coin/gold,
+/obj/item/coin/diamond,
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"jwC" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"jwJ" = (
+/obj/structure/table/reinforced,
+/obj/item/frame/light,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"jwY" = (
+/obj/machinery/computer/robotics,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"jxo" = (
+/obj/item/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = 32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = 32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"jxr" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/command)
+"jxJ" = (
+/obj/structure/sign/scenery/map/right{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/syndicate_station)
+"jxW" = (
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/syndicate_station)
+"jyH" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/meter,
+/obj/structure/largecrate/animal/cat,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"jzJ" = (
+/obj/machinery/gateway{
+ dir = 9
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"jAg" = (
+/obj/item/reagent_containers/food/snacks/spellburger{
+ pixel_y = 8
+ },
+/obj/structure/table/marble,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/wizard_station)
+"jAz" = (
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"jCc" = (
+/obj/item/storage/box/syndie_kit/clerical,
+/obj/structure/table/standard,
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/syndicate_station)
+"jDl" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Laundry"
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"jDB" = (
+/obj/item/toy/plushie/kitten{
+ pixel_x = -8;
+ pixel_y = -7
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"jEg" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/autoinjectors,
+/obj/item/storage/box/beakers,
+/obj/item/storage/box/gloves,
+/obj/item/storage/box/masks,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"jEt" = (
+/obj/machinery/computer/secure_data,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"jFb" = (
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/syndicate_station)
+"jFe" = (
+/obj/machinery/door/airlock/centcom{
+ name = "General Access";
+ req_access = list(101)
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/administration)
+"jFI" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"jFY" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/command)
+"jGm" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"jGv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "syndieshutters_infirmary";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"jGH" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_meetinghall)
+"jHG" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/hos,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/syndicate_station)
+"jHH" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/toxin,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"jHN" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"jIp" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"jIv" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"jJf" = (
+/obj/structure/table/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/shoes/brown,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/gun/energy/laser,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome)
+"jJl" = (
+/obj/structure/table/rack/gun_rack/steel,
+/obj/random/mech_toy,
+/obj/random/mech_toy,
+/obj/random/mech_toy,
+/obj/random/mech_toy,
+/obj/random/mech_toy,
+/obj/random/mech_toy,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"jKl" = (
+/obj/machinery/door/airlock/uranium_appearance,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"jKF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "ninjawindow";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/ninja)
+"jKL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "ninjawindow";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/ninja)
+"jLL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "ninjawindow";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/ninja)
+"jMh" = (
+/obj/machinery/light/small/fluorescent{
+ dir = 1
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"jMM" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_meetinghall)
+"jMP" = (
+/obj/item/clothing/head/collectable/paper,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"jNd" = (
+/obj/machinery/door/airlock/external,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/command)
+"jNr" = (
+/obj/structure/table/reinforced,
+/obj/item/starcaster_news{
+ pixel_x = 8
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"jNE" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"jNT" = (
+/obj/structure/catwalk,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"jOK" = (
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/skipjack_station)
+"jPi" = (
+/obj/structure/catwalk,
+/obj/structure/bed/pillowpile/teal,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"jPL" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/closet/crate/internals,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"jQy" = (
+/obj/machinery/shield_gen,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"jQU" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"jRZ" = (
+/mob/living/silicon/decoy{
+ icon_state = "ai-malf";
+ name = "GLaDOS"
+ },
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/space)
+"jSo" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"jSw" = (
+/obj/effect/decal/cleanable/cobweb2,
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/skipjack_station)
+"jSG" = (
+/obj/machinery/gateway{
+ density = 0;
+ dir = 10
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"jSQ" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"jSV" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"jTk" = (
+/obj/structure/table/standard,
+/obj/item/surgical/bonesetter,
+/obj/item/surgical/bonegel,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"jTs" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"jTw" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"jTV" = (
+/obj/structure/flora/underwater/grass1,
+/turf/simulated/floor/water/indoors/station,
+/area/shadekin)
+"jUW" = (
+/obj/machinery/suit_cycler/syndicate{
+ locked = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/skipjack_station)
+"jVf" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_theatre)
+"jVv" = (
+/obj/mecha/working/ripley/firefighter,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"jVC" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/obj/structure/bed/chair/holochair{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"jVR" = (
+/obj/effect/decal/cleanable/cobweb2{
+ icon_state = "spiderling";
+ name = "dead spider"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel_dirty"
+ },
+/area/skipjack_station)
+"jWu" = (
+/obj/structure/table/rack,
+/obj/item/tank/vox,
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"jWw" = (
+/obj/item/pizzabox/meat,
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"jWH" = (
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/pen{
+ pixel_y = 4
+ },
+/obj/machinery/light,
+/obj/structure/table/glass,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"jXp" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"jXS" = (
+/obj/structure/table/rack,
+/obj/item/storage/briefcase/inflatable,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"jYD" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"jYI" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome)
+"jZb" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_boxingcourt)
+"jZz" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/syndicate/black/blue,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/syndicate/black/blue,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"jZR" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/syndicate/black/med,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/syndicate/black/med,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"jZS" = (
+/obj/machinery/vending/cola{
+ dir = 4;
+ name = "hacked Robust Softdrinks";
+ prices = list()
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"jZY" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/browndouble,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"kaO" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"kaS" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/syndicate_station)
+"kbr" = (
+/obj/effect/landmark{
+ name = "Syndicate-Spawn"
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/syndicate_station)
+"kbL" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"kcu" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/machinery/door/window/holowindoor{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"kcX" = (
+/obj/machinery/mech_recharger,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"kdo" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/machinery/vending/foodasian,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"kdy" = (
+/obj/structure/catwalk,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/shadekin)
+"ken" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/lino,
+/area/shadekin)
+"ker" = (
+/obj/structure/sink{
+ pixel_y = 16
+ },
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/bar)
+"kgk" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/structure/bed/chair/holochair{
+ dir = 8
+ },
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"kgp" = (
+/obj/effect/floor_decal/borderfloorblack{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"khE" = (
+/obj/structure/closet/secure_closet/security,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"khJ" = (
+/obj/structure/table/standard,
+/obj/item/radio/headset/alt/syndicate,
+/obj/item/radio/headset/alt/syndicate,
+/obj/item/radio/headset/alt/syndicate,
+/obj/item/radio/headset/alt/syndicate,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/syndicate_station)
+"khT" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "syndieshutters_infirmary";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"kiA" = (
+/turf/simulated/shuttle/wall/hard_corner,
+/area/centcom/evac)
+"kiH" = (
+/obj/structure/window/plastitanium/full{
+ anchored = 0
+ },
+/turf/simulated/floor/plating,
+/area/shadekin)
+"kjC" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"kkH" = (
+/obj/effect/floor_decal/sign/small_6/decal,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"klk" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/warning,
+/obj/item/kit/paint/gygax/darkgygax,
+/obj/item/kit/paint/gygax/recitence,
+/obj/item/kit/paint/durand,
+/obj/item/kit/paint/durand/phazon,
+/obj/item/kit/paint/durand/seraph,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"klw" = (
+/obj/structure/flora/tree/pine,
+/turf/unsimulated/floor/snow_new,
+/area/ninja_dojo/dojo)
+"klP" = (
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/item/material/knife/machete/hatchet,
+/obj/item/material/knife/machete/hatchet,
+/obj/item/material/minihoe,
+/obj/item/material/minihoe,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"kmc" = (
+/obj/machinery/door/airlock/silver{
+ name = "Toilet"
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/merchant)
+"kmh" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome/tdome1)
+"kmk" = (
+/obj/structure/table/standard,
+/obj/item/flash,
+/obj/item/flash,
+/obj/item/reagent_containers/spray/pepper,
+/obj/item/reagent_containers/spray/pepper,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/glasses/sunglasses,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"kmt" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"kmA" = (
+/obj/structure/table/standard,
+/obj/item/clothing/gloves/sterile/latex,
+/obj/item/clothing/mask/surgical,
+/obj/item/surgical/retractor{
+ pixel_y = 6
+ },
+/obj/item/surgical/scalpel,
+/obj/item/surgical/surgicaldrill,
+/obj/item/surgical/circular_saw,
+/obj/item/stack/nanopaste,
+/obj/item/surgical/hemostat{
+ pixel_y = 4
+ },
+/obj/item/surgical/cautery{
+ pixel_y = 4
+ },
+/obj/item/surgical/FixOVein{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/surgical/bonesetter,
+/obj/item/surgical/bonegel{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"kmF" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/merchant)
+"knf" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"knC" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Special Operations";
+ req_access = list(103)
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"kob" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Living Quarters";
+ req_access = list(105)
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/living)
+"kof" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"kog" = (
+/obj/structure/flora/ausbushes/palebush,
+/turf/unsimulated/floor/snow_new,
+/area/ninja_dojo/dojo)
+"koh" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/rack,
+/obj/item/storage/belt/security/tactical/bandolier,
+/obj/item/storage/belt/security/tactical/bandolier,
+/obj/item/storage/belt/security/tactical/bandolier,
+/obj/item/storage/belt/security/tactical,
+/obj/item/storage/belt/security/tactical,
+/obj/item/storage/belt/security/tactical,
+/obj/item/storage/belt/security/tactical,
+/obj/item/storage/belt/security/tactical,
+/obj/item/storage/belt/security/tactical,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"kpJ" = (
+/obj/structure/table/standard,
+/turf/simulated/shuttle/floor/yellow,
+/area/centcom/evac)
+"kqm" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 6;
+ teleport_z_offset = 6
+ },
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 6;
+ teleport_z_offset = 6
+ },
+/turf/simulated/mineral,
+/area/space)
+"kqw" = (
+/obj/structure/table/standard,
+/obj/item/storage/toolbox/mechanical,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"krn" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/unsimulated/floor/snow_new,
+/area/ninja_dojo/dojo)
+"krw" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 2;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_emptycourt)
+"krD" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_emptycourt)
+"krF" = (
+/obj/structure/table/hardwoodtable,
+/obj/machinery/chemical_dispenser/bar_coffee/full{
+ dir = 4;
+ pixel_y = 35
+ },
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ dir = 4;
+ pixel_y = 16
+ },
+/obj/machinery/chemical_dispenser/bar_alc/full{
+ dir = 4;
+ pixel_y = -2
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 15;
+ pixel_x = 10
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 11;
+ pixel_x = 10
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 7;
+ pixel_x = 10
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 3;
+ pixel_x = 10
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = -1;
+ pixel_x = 10
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"krK" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/ninja_dojo/dojo)
+"ksb" = (
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/ninja_dojo/dojo)
+"kst" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"ktf" = (
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/item/stack/material/steel{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/steel{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/steel{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/steel{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stack/material/plasteel{
+ amount = 50
+ },
+/obj/item/stack/material/plasteel{
+ amount = 50
+ },
+/obj/item/stack/material/plasteel{
+ amount = 50
+ },
+/obj/item/stack/material/plasteel{
+ amount = 50
+ },
+/obj/item/stack/material/glass/reinforced{
+ amount = 50
+ },
+/obj/item/stack/material/glass/reinforced{
+ amount = 50
+ },
+/obj/item/stack/material/glass/reinforced{
+ amount = 50
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/table/steel_reinforced,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"kuC" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/ninja_dojo/dojo)
+"kvG" = (
+/obj/machinery/power/port_gen/pacman,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"kvJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ name = "Security"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"kvT" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/obj/structure/closet/emcloset,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"kvZ" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/handcuffs{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/handcuffs,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"kwv" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor/snow_new,
+/area/ninja_dojo/dojo)
+"kwC" = (
+/turf/unsimulated/floor,
+/area/beach)
+"kwP" = (
+/obj/structure/bed/chair,
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/skipjack_station)
+"kxt" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/rig/ert/engineer,
+/obj/item/rig/ert/engineer,
+/obj/item/rig/ert/engineer,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"kxV" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Escape Shuttle Cockpit";
+ req_access = list(19)
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"kyg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"kyJ" = (
+/obj/item/tank/vox,
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"kyR" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/merchant)
+"kzm" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/cell/high,
+/obj/item/cell/high,
+/obj/item/cell/hyper,
+/obj/item/cell/potato,
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"kzy" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"kzK" = (
+/obj/machinery/smartfridge/drying_rack{
+ dir = 8;
+ pixel_x = -4
+ },
+/obj/machinery/light{
+ dir = 8;
+ layer = 3
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shadekin)
+"kzN" = (
+/obj/machinery/door/airlock/multi_tile/glass,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/merchant)
+"kzR" = (
+/obj/item/clothing/glasses/hud/health{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/clothing/glasses/hud/health{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/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/table/rack,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"kBg" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_theatre)
+"kBW" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/syndicate/black/orange,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/syndicate/black/orange,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"kCu" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/syndicate/black/engie,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/syndicate/black/engie,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"kEd" = (
+/obj/machinery/vending/cigarette{
+ dir = 4;
+ name = "hacked cigarette machine";
+ prices = list();
+ products = list(/obj/item/storage/fancy/cigarettes=10,/obj/item/storage/box/matches=10,/obj/item/flame/lighter/zippo=4,/obj/item/clothing/mask/smokable/cigarette/cigar/havana=2)
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"kEg" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 17
+ },
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"kET" = (
+/obj/machinery/telecomms/relay/preset/centcom,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"kFK" = (
+/obj/machinery/computer/cryopod/dorms{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"kHv" = (
+/obj/machinery/gateway{
+ dir = 4
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"kIb" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Barracks";
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/syndicate_station)
+"kId" = (
+/obj/structure/table/woodentable,
+/obj/item/clothing/shoes/boots/workboots,
+/obj/item/clothing/under/technomancer,
+/obj/item/clothing/head/technomancer,
+/obj/item/storage/box/syndie_kit/chameleon,
+/obj/item/storage/box/syndie_kit/chameleon,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"kIh" = (
+/obj/machinery/door/airlock/centcom{
+ name = "General Access";
+ req_access = list(101)
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome)
+"kIs" = (
+/obj/structure/catwalk,
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"kJd" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/syndicate_station)
+"kJS" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/centcom/evac)
+"kKj" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/item/glass_jar/fish{
+ pixel_y = 9
+ },
+/obj/item/glass_jar/fish{
+ pixel_y = 1
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/shadekin)
+"kKz" = (
+/obj/structure/morgue,
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"kKV" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape/centcom)
+"kLN" = (
+/obj/machinery/door/blast/regular{
+ id = "thunderdomeaxe";
+ name = "Axe Supply"
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome)
+"kMF" = (
+/obj/machinery/door/airlock/centcom{
+ name = "General Access";
+ req_access = list();
+ req_one_access = list()
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"kNA" = (
+/obj/structure/table/glass,
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/syndicate_station)
+"kNE" = (
+/turf/unsimulated/wall,
+/area/centcom/creed)
+"kOm" = (
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"kOt" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "escape_pod_2_recovery";
+ pixel_x = -25;
+ pixel_y = 25;
+ req_one_access = list(13);
+ tag_door = "escape_pod_2_recovery_hatch";
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"kOE" = (
+/obj/item/toy/plushie/mouse/white{
+ pixel_x = -12;
+ pixel_y = 3
+ },
+/obj/item/toy/plushie/therapy/green{
+ pixel_x = 7;
+ pixel_y = -5
+ },
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"kOF" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/syndicate_station)
+"kOV" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "trade_shuttle_bay_door";
+ locked = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"kPe" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"kPU" = (
+/obj/structure/table/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/shoes/brown,
+/obj/item/clothing/suit/armor/tdome/red,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/melee/baton/loaded,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome)
+"kQh" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Barracks";
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/syndicate_station)
+"kQp" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/gun/energy/gun/nuclear,
+/obj/item/gun/energy/gun/nuclear,
+/obj/item/gun/energy/gun/nuclear,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"kQu" = (
+/obj/structure/table/standard,
+/obj/item/flashlight/lamp{
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/item/clothing/glasses/sunglasses/prescription,
+/obj/item/clothing/glasses/sunglasses/prescription,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/syndicate_station)
+"kQH" = (
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"kQQ" = (
+/obj/machinery/atmospherics/unary/cryo_cell{
+ layer = 3.3
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"kRC" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"kSi" = (
+/turf/unsimulated/beach/coastline{
+ density = 1;
+ opacity = 1
+ },
+/area/beach)
+"kSG" = (
+/obj/structure/table/rack,
+/obj/item/gun/projectile/automatic/z8,
+/obj/item/gun/projectile/automatic/z8,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"kTB" = (
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/shadekin)
+"kTG" = (
+/obj/item/stool/padded,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"kUQ" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/centcom/evac)
+"kVf" = (
+/turf/simulated/shuttle/wall/voidcraft/hard_corner/green,
+/area/shadekin)
+"kWs" = (
+/turf/unsimulated/beach/coastline,
+/area/beach)
+"kWS" = (
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"kXp" = (
+/obj/structure/table/standard,
+/obj/random/pizzabox{
+ pixel_y = 12
+ },
+/turf/simulated/floor/carpet/geo,
+/area/shadekin)
+"kXD" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"kXP" = (
+/obj/structure/table/reinforced,
+/obj/item/pda/ert,
+/obj/item/pda/ert,
+/obj/item/pda/ert,
+/obj/item/pda/ert,
+/obj/item/pda/ert,
+/obj/item/pda/ert,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"kYl" = (
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/obj/item/reagent_containers/food/drinks/cans/cola,
+/obj/structure/table/standard,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeobserve)
+"kYK" = (
+/obj/structure/bookcase,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"kZe" = (
+/obj/machinery/recharge_station,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"kZg" = (
+/obj/machinery/deployable/barrier,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"kZh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"kZq" = (
+/obj/structure/table/rack,
+/obj/item/gun/energy/taser,
+/obj/item/gun/energy/taser,
+/obj/item/gun/energy/taser,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"laj" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/skipjack_station)
+"lat" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/snacks/poppypretzel,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"laV" = (
+/obj/item/toy/plushie/box{
+ pixel_x = 5;
+ pixel_y = -6
+ },
+/obj/item/toy/plushie/borgplushie/drake/eng{
+ pixel_y = -8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"lbF" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/centcom/evac)
+"lbH" = (
+/obj/structure/table/steel,
+/obj/item/pda/syndicate,
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/skipjack_station)
+"lcA" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ name = "Central Access"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"lcF" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/skipjack_station)
+"ldM" = (
+/obj/item/toy/chess/rook_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"ler" = (
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/item/tank/vox,
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"lgS" = (
+/obj/item/stool/padded,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/bar)
+"lhI" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "tdomeobserve"
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeobserve)
+"liC" = (
+/obj/item/clothing/head/philosopher_wig,
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"ljk" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"ljB" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"ljE" = (
+/obj/structure/table/standard,
+/obj/item/pda,
+/obj/item/pda,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"ljH" = (
+/obj/structure/table/standard,
+/obj/item/surgical/hemostat,
+/obj/item/surgical/cautery,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"lkY" = (
+/obj/structure/closet/crate/medical,
+/obj/item/surgical/circular_saw,
+/obj/item/surgical/surgicaldrill,
+/obj/item/surgical/bonegel{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/surgical/bonesetter,
+/obj/item/surgical/scalpel,
+/obj/item/surgical/retractor{
+ pixel_y = 6
+ },
+/obj/item/surgical/hemostat{
+ pixel_y = 4
+ },
+/obj/item/surgical/cautery{
+ pixel_y = 4
+ },
+/obj/item/surgical/FixOVein{
+ pixel_x = -6;
+ pixel_y = 1
+ },
+/obj/item/stack/nanopaste,
+/obj/item/tank/anesthetic,
+/obj/item/clothing/mask/breath/medical,
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/mask/surgical,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"llz" = (
+/turf/unsimulated/wall,
+/area/centcom/living)
+"llB" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"llG" = (
+/obj/machinery/computer/communications{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"lmq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/lino,
+/area/shadekin)
+"lms" = (
+/obj/structure/table/standard,
+/obj/item/paper_bin,
+/obj/item/radio/off,
+/turf/simulated/shuttle/floor/black,
+/area/centcom/evac)
+"lmD" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/rack,
+/obj/item/rig/ert/medical,
+/obj/item/rig/ert/medical,
+/obj/item/rig/ert/medical,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"lmE" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Processing";
+ req_access = list(1)
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"lnu" = (
+/obj/machinery/door/airlock{
+ name = "Unit 2"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"lnJ" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/syndicate/black/red,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/syndicate/black/red,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"lnW" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"lnZ" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"loE" = (
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"lps" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/suit/space/syndicate/black,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/head/helmet/space/syndicate/black,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"lpt" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"lqC" = (
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"lrG" = (
+/obj/structure/table/standard,
+/obj/item/storage/lockbox,
+/turf/simulated/shuttle/floor/black,
+/area/centcom/evac)
+"lrK" = (
+/obj/structure/table/glass,
+/obj/item/paicard,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"lsk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"lsZ" = (
+/obj/structure/table/standard,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/pen{
+ pixel_y = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/syndicate_station)
+"lto" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/administration)
+"luy" = (
+/obj/machinery/vending/loadout/overwear,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"lwj" = (
+/obj/machinery/smartfridge/drying_rack,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"lwn" = (
+/obj/structure/table/holotable,
+/obj/machinery/readybutton,
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"lxc" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/bar)
+"lxe" = (
+/obj/structure/table/marble,
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/material/kitchen/rollingpin,
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"lxC" = (
+/obj/machinery/chemical_dispenser/ert,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"lxX" = (
+/turf/unsimulated/beach/water{
+ density = 1;
+ opacity = 1
+ },
+/area/beach)
+"lyw" = (
+/turf/unsimulated/beach/water,
+/area/beach)
+"lzn" = (
+/obj/structure/table/steel,
+/obj/item/radio/uplink,
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/skipjack_station)
+"lzv" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome/tdome1)
+"lzN" = (
+/obj/structure/table/wooden_reinforced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"lAl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/structure/largecrate/animal/corgi,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"lCc" = (
+/obj/item/gun/launcher/pneumatic,
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"lCk" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "tradeportshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"lCt" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/hosdouble,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"lDa" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"lDh" = (
+/obj/machinery/gateway,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"lDJ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "tradeportshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"lDV" = (
+/mob/living/simple_mob/animal/passive/mouse/gray{
+ desc = "He looks kingly.";
+ name = "Arthur"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"lEK" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/firstaid/regular,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"lES" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome/tdome2)
+"lEX" = (
+/obj/machinery/body_scanconsole{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"lFl" = (
+/turf/unsimulated/wall,
+/area/centcom/main_hall)
+"lFw" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/syndicate_station)
+"lFQ" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "escape_pod_3_recovery";
+ pixel_x = 26;
+ pixel_y = 26;
+ req_one_access = list(13);
+ tag_door = "escape_pod_3_recovery_hatch";
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"lGa" = (
+/obj/item/antag_spawner/technomancer_apprentice,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"lHy" = (
+/obj/machinery/vending/event/food,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"lHI" = (
+/obj/structure/table/standard,
+/obj/item/pda/syndicate,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/syndicate_station)
+"lHN" = (
+/obj/structure/bed/pod,
+/obj/item/bedsheet,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"lIl" = (
+/obj/machinery/door/airlock/maintenance/command{
+ req_one_access = list(18);
+ name = "Workshop"
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"lIN" = (
+/obj/structure/bookcase{
+ name = "bookcase (Fiction)"
+ },
+/obj/item/book/custom_library/fiction/blacksmithandkinglybloke,
+/obj/item/book/custom_library/fiction/irishairmanforseesdeath,
+/obj/item/book/custom_library/fiction/myrock,
+/obj/item/book/custom_library/fiction/starsandsometimesfallingones,
+/obj/item/book/custom_library/fiction/truelovehathmyheart,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"lIP" = (
+/obj/item/storage/box/syndie_kit/spy,
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/skipjack_station)
+"lIU" = (
+/obj/item/robot_parts/head,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"lJa" = (
+/obj/structure/table/steel_reinforced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"lJi" = (
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"lJw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"lJx" = (
+/obj/structure/closet/crate/medical,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"lJz" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"lKu" = (
+/obj/structure/table/standard,
+/obj/item/material/knife/machete/hatchet,
+/obj/item/material/minihoe{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shadekin)
+"lKL" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"lLo" = (
+/obj/item/stool,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"lLQ" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/living)
+"lLZ" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/handrail,
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/transport1/centcom)
+"lMb" = (
+/obj/machinery/computer/arcade/battle,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"lMA" = (
+/obj/structure/table/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/shoes/brown,
+/obj/item/melee/energy/axe,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome)
+"lMT" = (
+/obj/machinery/door/blast/regular{
+ id = "thunderdomehea";
+ name = "Heavy Supply"
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome)
+"lMY" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "cult";
+ name = "plating"
+ },
+/area/skipjack_station)
+"lNr" = (
+/obj/machinery/light/yellowed,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"lOi" = (
+/obj/structure/ore_box,
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/skipjack_station)
+"lOu" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"lOZ" = (
+/obj/item/bucket_sensor,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"lPr" = (
+/obj/structure/table/rack,
+/obj/item/suit_cooling_unit,
+/obj/item/suit_cooling_unit,
+/obj/item/suit_cooling_unit,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"lPt" = (
+/obj/structure/table/rack,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"lPx" = (
+/obj/structure/table/rack,
+/obj/item/rig/merc/empty,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"lPJ" = (
+/obj/structure/bed/chair/comfy/teal{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/command)
+"lPM" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"lRi" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"lRp" = (
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"lRq" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/shadekin)
+"lRw" = (
+/obj/structure/flora/underwater/seaweed1,
+/obj/structure/flora/underwater/grass1,
+/turf/simulated/floor/water/indoors/station,
+/area/shadekin)
+"lRH" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"lRR" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 2;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_thunderdomecourt)
+"lSl" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"lTh" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/sign/dock/one,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"lTN" = (
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0;
+ anchored = 1
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Observatory"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"lVl" = (
+/obj/machinery/suit_cycler/syndicate{
+ locked = 0
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"lVt" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"lVU" = (
+/turf/simulated/shuttle/floor/black,
+/area/centcom/evac)
+"lWz" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/space,
+/area/space)
+"lWA" = (
+/obj/machinery/door/airlock/external{
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/skipjack_station)
+"lWO" = (
+/obj/machinery/computer/message_monitor,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"lXX" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/space,
+/area/space)
+"lYm" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"lYv" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/item/ammo_magazine/ammo_box/b12g/pellet,
+/obj/item/ammo_magazine/ammo_box/b12g/pellet,
+/obj/item/ammo_magazine/ammo_box/b12g,
+/obj/item/ammo_magazine/ammo_box/b12g,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"lZs" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/webbing,
+/obj/item/clothing/accessory/storage/webbing,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/scarf/white,
+/obj/item/clothing/accessory/scarf/lightblue,
+/obj/item/clothing/accessory/scarf/red,
+/obj/item/clothing/accessory/scarf/purple,
+/obj/item/clothing/accessory/armband/science,
+/obj/item/clothing/accessory/armband/med,
+/obj/item/clothing/accessory/armband/engine,
+/obj/item/clothing/accessory/armband/cargo,
+/obj/item/clothing/accessory/armband,
+/obj/item/clothing/accessory/medal/nobel_science,
+/obj/item/clothing/accessory/medal/silver,
+/obj/item/clothing/accessory/medal/gold,
+/obj/item/clothing/accessory/medal/bronze_heart,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"lZH" = (
+/obj/effect/landmark/darkspawn,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/shadekin)
+"mas" = (
+/obj/structure/showcase,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/shadekin)
+"mbq" = (
+/obj/structure/table/rack,
+/obj/item/rig/ert,
+/obj/item/clothing/accessory/storage/black_vest,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"mbW" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"mcq" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"mcs" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"mcu" = (
+/obj/structure/closet/secure_closet/medical_wall/pills{
+ pixel_y = 32
+ },
+/obj/structure/table/glass,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"mcB" = (
+/obj/machinery/vending/cigarette{
+ name = "hacked cigarette machine";
+ prices = list();
+ products = list(/obj/item/storage/fancy/cigarettes=10,/obj/item/storage/box/matches=10,/obj/item/flame/lighter/zippo=4,/obj/item/clothing/mask/smokable/cigarette/cigar/havana=2)
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/living)
+"mcT" = (
+/obj/effect/floor_decal/corner/red/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"mdc" = (
+/obj/structure/sign/double/barsign,
+/turf/unsimulated/wall,
+/area/centcom/bar)
+"mdI" = (
+/obj/structure/sign/scenery/map/right{
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"meV" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"mff" = (
+/obj/structure/table/glass,
+/obj/item/book/codex/lore/vir,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"mfj" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1331;
+ id_tag = "merc_base_hatch";
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"mfI" = (
+/obj/machinery/computer/shuttle,
+/turf/simulated/shuttle/floor/black,
+/area/centcom/evac)
+"mfT" = (
+/obj/machinery/washing_machine,
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"mhz" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"mhJ" = (
+/obj/structure/dispenser,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"mhK" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/skipjack_station)
+"mhZ" = (
+/obj/structure/table/woodentable,
+/obj/machinery/librarycomp{
+ pixel_y = 6
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"mio" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/surgery,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"miM" = (
+/obj/machinery/door/airlock/glass{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Central Access"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"miQ" = (
+/obj/structure/closet/wardrobe/suit,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"mjU" = (
+/obj/machinery/computer/teleporter,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"mjW" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"mkh" = (
+/obj/machinery/telecomms/bus/preset_cent,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"mko" = (
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"mkB" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/skipjack_station)
+"mkI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"mkR" = (
+/obj/structure/flora/underwater/plant1,
+/turf/simulated/floor/water/indoors/station,
+/area/shadekin)
+"mlz" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "escape_pod_4_recovery_hatch";
+ locked = 1;
+ name = "Recovery Shuttle Dock 4";
+ req_access = list(13)
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"mlA" = (
+/obj/item/stool/padded,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/living)
+"mmH" = (
+/obj/item/clothing/glasses/sunglasses,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"mmJ" = (
+/turf/unsimulated/wall,
+/area/centcom/terminal)
+"moi" = (
+/obj/item/storage/box/bodybags,
+/obj/item/storage/box/bodybags,
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"moj" = (
+/obj/structure/table/bench/steel,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"moy" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"moz" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/syndicate_station)
+"moG" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/space,
+/area/space)
+"mpk" = (
+/obj/machinery/computer/card/centcom,
+/obj/item/card/id/centcom,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"mpV" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/space,
+/area/space)
+"mqj" = (
+/turf/simulated/shuttle/wall/voidcraft/red,
+/area/shuttle/syndicate)
+"mqH" = (
+/obj/item/farmbot_arm_assembly,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"mqK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"mrl" = (
+/obj/machinery/shieldgen,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"mrI" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"mrP" = (
+/obj/structure/AIcore,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"mrR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"msJ" = (
+/obj/structure/flora/underwater/seaweed3,
+/turf/simulated/floor/water/indoors/station,
+/area/shadekin)
+"mui" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/toilet/item,
+/obj/item/grenade/anti_photon/rubberducky/black,
+/obj/effect/landmark/darkspawn,
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"muC" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"muG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"muL" = (
+/obj/structure/table/rack,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"muP" = (
+/turf/simulated/wall/skipjack,
+/area/shuttle/skipjack)
+"mvA" = (
+/obj/machinery/door/window/southleft{
+ name = "Cargo Hold";
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"mvI" = (
+/obj/machinery/door/airlock/external,
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"mwb" = (
+/obj/machinery/door/airlock/hatch,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 1;
+ pixel_x = -27;
+ pixel_y = 7
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"mwv" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/shuttle/trade)
+"mxa" = (
+/obj/structure/flora/tree/jungle_small,
+/turf/simulated/floor/grass2,
+/area/shadekin)
+"mxg" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1
+ },
+/obj/effect/forcefield{
+ desc = "You can't get in. Heh.";
+ layer = 1;
+ name = "Blocker"
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/terminal)
+"mxi" = (
+/obj/structure/closet/wardrobe/ert,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"mxA" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"myh" = (
+/obj/machinery/door/airlock/hatch,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/access_button{
+ dir = 1;
+ pixel_x = 27;
+ pixel_y = 7
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"myK" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "smindicate";
+ name = "Outer Airlock";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/voidcraft,
+/obj/structure/fans/tiny,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"mzw" = (
+/obj/structure/table/steel,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"mAy" = (
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"mAM" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"mBm" = (
+/obj/machinery/autolathe{
+ hacked = 1;
+ name = "hacked autolathe"
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"mBJ" = (
+/mob/living/simple_mob/animal/passive/cat/space{
+ armor_soak = list("melee"=100,"bullet"=100,"laser"=100,"energy"=100,"bomb"=100,"bio"=100,"rad"=100);
+ desc = "They look well taken care of. There is a small scratch mark through the L of their collar that looks like it was made by a claw.";
+ description_antag = "That space suit looks like it can withstand just about any assault. You feel that you will regret hurting this one.";
+ description_fluff = "Back after a very long trip. Their suit smells of adventure!";
+ description_info = "In loving memory of a good friend.";
+ friend_name = "Blind Pilot";
+ heal_countdown = 1;
+ health = 9999;
+ maxHealth = 9999;
+ melee_attack_delay = 0;
+ melee_damage_lower = 40;
+ melee_damage_upper = 60;
+ melee_miss_chance = 0;
+ name = "Blawski";
+ named = 1;
+ resistance = 100;
+ taser_kill = 0;
+ voice_name = "Blawski"
+ },
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/centcom/main_hall)
+"mBO" = (
+/obj/machinery/turretid{
+ pixel_x = -28;
+ pixel_y = -28;
+ req_access = list(101)
+ },
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"mBX" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/plating,
+/area/centcom/evac)
+"mCA" = (
+/obj/item/stool/padded{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/shadekin)
+"mDp" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/shuttle/syndicate)
+"mDu" = (
+/obj/vehicle/train/engine,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"mDF" = (
+/obj/structure/table/woodentable,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Subversive Intercom";
+ pixel_x = -32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"mEm" = (
+/obj/structure/shuttle/engine/router{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/shuttle/syndicate)
+"mFr" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "propulsion_r"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/syndicate)
+"mFz" = (
+/obj/structure/lattice,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"mGk" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "tradebridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"mIc" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"mJI" = (
+/obj/structure/frame/computer,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"mJR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/terminal)
+"mJV" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"mKp" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"mKs" = (
+/obj/machinery/door/unpowered/shuttle,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport1/centcom)
+"mLa" = (
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ pixel_x = 27
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"mLr" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"mLw" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/obj/item/ammo_magazine/m9mmt/rubber,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"mLC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ id = "skipjackshutters";
+ name = "Skipjack Blast Shielding"
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"mLD" = (
+/obj/structure/frame/computer,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"mLJ" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"mMY" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"mNu" = (
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 2;
+ name = "Maintenance Access"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shadekin)
+"mNv" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/adv{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/firstaid/adv,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"mOb" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/item/reagent_containers/food/condiment/small/saltshaker{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/obj/item/reagent_containers/food/condiment/small/peppermill,
+/obj/item/flame/candle,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/bar)
+"mOP" = (
+/obj/machinery/computer/security/telescreen,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"mOU" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"mPV" = (
+/obj/machinery/vending/hotfood,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"mQF" = (
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/item/roller{
+ pixel_y = 16
+ },
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"mQJ" = (
+/obj/item/toy/chess/bishop_black,
+/turf/simulated/floor/holofloor/bmarble{
+ color = "teal"
+ },
+/area/holodeck/source_chess)
+"mRE" = (
+/obj/structure/urinal{
+ pixel_y = 32
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/specops)
+"mRN" = (
+/obj/machinery/chemical_dispenser/full,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"mSn" = (
+/obj/machinery/button/remote/airlock{
+ id = "darkdorm6";
+ name = "Bolt Control";
+ specialfunctions = 4;
+ pixel_y = 25
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/shadekin)
+"mSB" = (
+/obj/structure/musician/piano{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/living)
+"mSP" = (
+/turf/simulated/shuttle/wall/dark{
+ join_group = "shuttle_ert"
+ },
+/area/shuttle/response_ship)
+"mSQ" = (
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"mTk" = (
+/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
+/obj/machinery/atmospherics/portables_connector,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"mUd" = (
+/obj/machinery/light/broken{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"mUJ" = (
+/turf/unsimulated/ai_visible,
+/area/ai_multicam_room)
+"mUL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ id = "skipjackshutters";
+ name = "Skipjack Blast Shielding"
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"mVD" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"mWa" = (
+/obj/structure/closet/wardrobe/mixed,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"mWm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ id = "skipjackshutters";
+ name = "Skipjack Blast Shielding"
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"mWp" = (
+/obj/machinery/airlock_sensor{
+ dir = 4;
+ pixel_x = -27
+ },
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "skipjack_start";
+ name = "The Hideaway"
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"mWs" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"mXH" = (
+/obj/machinery/light/yellowed{
+ dir = 8
+ },
+/obj/effect/map_effect/portal/master/side_a/retreat_east,
+/obj/effect/map_effect/perma_light/concentrated/incandescent,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"mYr" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ name = "Ship External Hatch"
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 8;
+ icon_state = "pdoor0";
+ id = "blastninja";
+ name = "Outer Airlock";
+ opacity = 0
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/button/ext_button,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "exterior access button";
+ pixel_x = -7;
+ pixel_y = -26
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/ninja)
+"mZO" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/fire{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/firstaid/fire,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"naH" = (
+/turf/simulated/floor/holofloor/reinforced,
+/area/holodeck/source_wildlife)
+"nbb" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/inflatable_duck,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"nbf" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/centcom/evac)
+"nbs" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/command)
+"ncE" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6
+ },
+/turf/simulated/shuttle/wall/voidcraft/red,
+/area/shuttle/syndicate)
+"ndp" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"nec" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"neC" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "smindicate";
+ name = "ship lockdown control";
+ pixel_x = -25
+ },
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "syndie_start";
+ name = "Syndicate Station"
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"neF" = (
+/obj/machinery/computer/crew,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"neI" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor{
+ dir = 8;
+ frequency = 1331;
+ id_tag = "merc_shuttle_sensor";
+ pixel_x = 25;
+ pixel_y = 6
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ dir = 8;
+ frequency = 1331;
+ id_tag = "merc_shuttle";
+ pixel_x = 25;
+ pixel_y = -6;
+ req_access = list(150)
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"nfr" = (
+/obj/machinery/door/blast/regular{
+ id = "ASSAULT-M";
+ name = "Assault Armor Storage"
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"nfP" = (
+/obj/item/toy/plushie/blue_fox,
+/obj/item/toy/plushie/borgplushie/medihound{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/toy/plushie/slimeplushie{
+ pixel_x = 14;
+ pixel_y = 15
+ },
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"ngc" = (
+/obj/item/extinguisher,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"ngU" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/shuttle/wall/voidcraft/red,
+/area/shuttle/syndicate)
+"nhN" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/turf/simulated/shuttle/wall/voidcraft/red,
+/area/shuttle/syndicate)
+"nhS" = (
+/obj/machinery/mecha_part_fabricator_tg,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"niv" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"niD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"njq" = (
+/obj/effect/wingrille_spawn/reinforced,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"njH" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"nlG" = (
+/obj/machinery/atmospherics/pipe/tank/air,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"nlY" = (
+/obj/structure/bed/chair/holochair{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"nmA" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"nmF" = (
+/obj/effect/floor_decal/cetus/andromeda6,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"nmG" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"nmH" = (
+/obj/machinery/dna_scannernew,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"nmM" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"nmN" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/holofloor/lino,
+/area/holodeck/source_meetinghall)
+"nmV" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/bar)
+"noC" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -25
+ },
+/obj/structure/table/steel,
+/obj/item/plastique,
+/obj/item/plastique,
+/obj/item/plastique,
+/obj/item/plastique,
+/obj/item/plastique,
+/obj/item/plastique,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"npe" = (
+/obj/item/toy/plushie/vox{
+ pixel_x = -8;
+ pixel_y = -13
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"nqa" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/rack,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"nrg" = (
+/obj/effect/floor_decal/cetus/andromeda3,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"nrD" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/computer/security/telescreen{
+ name = "Spec. Ops. Monitor";
+ network = list("ERT")
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"nrJ" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = -29;
+ pixel_y = 4
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"nrW" = (
+/obj/structure/closet,
+/obj/item/clothing/suit/wizrobe/red,
+/obj/item/clothing/shoes/sandal,
+/obj/item/clothing/head/wizard/red,
+/obj/item/staff,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"nsf" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/syndicate)
+"nsF" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"ntE" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/recharger,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"ntI" = (
+/obj/machinery/door/blast/regular{
+ id = "CREED";
+ name = "Ready Room"
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"ntO" = (
+/turf/simulated/floor/holofloor/reinforced,
+/area/holodeck/source_plating)
+"ntW" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/reedbush,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/shadekin)
+"nub" = (
+/obj/machinery/computer/station_alert/all,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"nup" = (
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"nuO" = (
+/obj/structure/table/wooden_reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"nvm" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"nvB" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"nvF" = (
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ dir = 8;
+ frequency = 1331;
+ id_tag = "vox_west_control";
+ pixel_x = 27;
+ req_access = list(150)
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"nwt" = (
+/obj/machinery/porta_turret/crescent,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/command)
+"nxv" = (
+/obj/structure/table/standard,
+/obj/random/tetheraid,
+/obj/random/tetheraid,
+/obj/random/tetheraid,
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"nxE" = (
+/obj/machinery/computer/station_alert,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"nyh" = (
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "MedbayFoyer";
+ name = "Medbay";
+ req_access = list(5)
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"nyq" = (
+/obj/structure/flight_left,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"nyu" = (
+/obj/machinery/computer/shuttle_control/multi/heist{
+ icon_keyboard = "flight_center_key";
+ icon_screen = "flight_center";
+ icon_state = "flightcomp_center"
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"nyI" = (
+/obj/structure/catwalk,
+/obj/structure/lattice,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"nyS" = (
+/obj/item/stool/padded,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/bar)
+"nzu" = (
+/obj/structure/flight_right,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"nAe" = (
+/obj/machinery/door/window/westright{
+ name = "Storefront";
+ req_access = list(160)
+ },
+/obj/structure/table/marble,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "trade";
+ name = "Shop Shutters";
+ opacity = 0
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/merchant)
+"nAg" = (
+/obj/machinery/vending/radren{
+ dir = 4
+ },
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"nAn" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/snacks/bigbiteburger,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"nAP" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/command)
+"nBm" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/snacks/tofukabob,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"nBu" = (
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"nCq" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Lobby"
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/security)
+"nCs" = (
+/obj/machinery/button/remote/blast_door{
+ id = "trade";
+ name = "Shop Shutters";
+ pixel_y = -26
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/merchant)
+"nCN" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "escape_pod_6_recovery_hatch";
+ locked = 1;
+ name = "Recovery Shuttle Dock 6";
+ req_access = list(13)
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"nEp" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"nEw" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/head/pirate,
+/obj/item/clothing/glasses/thermal/plain/monocle,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"nEz" = (
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"nFd" = (
+/obj/structure/lattice,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/shadekin)
+"nFg" = (
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ dir = 4;
+ frequency = 1331;
+ id_tag = "skipjack_shuttle";
+ pixel_x = -27;
+ req_access = list(150)
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"nGr" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/structure/bed/chair/holochair{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"nGt" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"nHf" = (
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"nHq" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/transport1/centcom)
+"nHw" = (
+/obj/structure/table/standard,
+/obj/item/surgical/circular_saw{
+ pixel_y = 8
+ },
+/obj/item/surgical/scalpel,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"nHB" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/shuttle/supply)
+"nId" = (
+/obj/machinery/light/broken,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"nIu" = (
+/obj/structure/table/reinforced,
+/obj/item/material/minihoe,
+/obj/item/analyzer/plant_analyzer,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"nIR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"nIT" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"nIX" = (
+/obj/structure/table/rack/shelf,
+/obj/random/soap{
+ pixel_y = -8
+ },
+/obj/random/soap{
+ pixel_y = 1
+ },
+/obj/item/towel/random{
+ pixel_y = 13
+ },
+/obj/item/towel/random{
+ pixel_y = 17
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"nJz" = (
+/obj/item/toy/plushie/black_cat,
+/obj/item/toy/plushie/carp/electric{
+ pixel_x = 4;
+ pixel_y = 7
+ },
+/obj/item/toy/plushie/red_fox{
+ pixel_x = 9;
+ pixel_y = 14
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"nJO" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/response_ship)
+"nKn" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/obj/machinery/door/airlock/voidcraft/vertical,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/access_button{
+ dir = 8;
+ name = "interior access button";
+ pixel_x = -7;
+ pixel_y = 27
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"nKo" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"nKE" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"nMG" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"nOa" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"nOo" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"nOL" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"nPf" = (
+/obj/machinery/door/blast/regular{
+ id = "thunderdomegen";
+ name = "General Supply"
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome)
+"nPG" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"nPO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape/centcom)
+"nQx" = (
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/shadekin)
+"nQF" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"nQT" = (
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"nQU" = (
+/obj/machinery/door/airlock/voidcraft/vertical,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/map_helper/airlock/button/int_button,
+/obj/machinery/access_button{
+ dir = 4;
+ name = "interior access button";
+ pixel_x = 7;
+ pixel_y = 27
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"nRi" = (
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"nRZ" = (
+/obj/structure/table/standard,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"nSo" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "centcom_dock";
+ name = "docking port controller";
+ pixel_x = 25;
+ req_one_access = list(13);
+ tag_door = "centcom_dock_airlock"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"nSp" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"nTt" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"nUr" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"nVi" = (
+/obj/structure/table/reinforced,
+/obj/item/tool/crowbar,
+/obj/item/tool/screwdriver,
+/obj/item/tool/wrench,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"nWU" = (
+/obj/machinery/vending/loadout,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"nXc" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"nYs" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"nYC" = (
+/obj/machinery/chemical_dispenser/ert,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"nYV" = (
+/obj/structure/table/woodentable,
+/obj/item/radio/headset,
+/obj/item/spacecash/c500,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"nZv" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/structure/table/standard,
+/obj/item/melee/classic_baton,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/living)
+"nZC" = (
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/centcom/specops)
+"oal" = (
+/obj/item/toy/plushie/marble_fox{
+ pixel_x = -17;
+ pixel_y = -8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"oao" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -25
+ },
+/obj/structure/table/steel,
+/obj/item/storage/box/frags,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"oay" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"oaz" = (
+/obj/structure/bed/pillowpile/red,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"obC" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "burst_l"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/transport1/centcom)
+"ocZ" = (
+/obj/machinery/vending/sovietsoda,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"odr" = (
+/obj/item/ammo_magazine/ammo_box/b12g/flash,
+/obj/item/ammo_magazine/ammo_box/b12g/flash,
+/obj/item/ammo_magazine/ammo_box/b12g/stunshell,
+/obj/item/ammo_magazine/ammo_box/b12g/stunshell,
+/obj/item/ammo_magazine/ammo_box/b12g/beanbag,
+/obj/item/ammo_magazine/ammo_box/b12g/beanbag,
+/obj/structure/window/reinforced,
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"odI" = (
+/obj/machinery/disposal/wall{
+ dir = 1;
+ pixel_y = -35
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"odO" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/reagent_containers/food/drinks/bottle/small/beer,
+/obj/item/flame/lighter/zippo,
+/obj/item/storage/fancy/cigarettes,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeobserve)
+"oeg" = (
+/obj/machinery/door/airlock/hatch,
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"oeF" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/obj/machinery/turretid{
+ pixel_y = 28;
+ req_access = list(101)
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/command)
+"oeJ" = (
+/obj/structure/sign/directions/ai_core{
+ dir = 1
+ },
+/turf/simulated/wall/r_wall,
+/area/shadekin)
+"oeT" = (
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/command)
+"ofa" = (
+/obj/machinery/vending/wallmed1{
+ name = "Emergency NanoMed";
+ pixel_x = 30
+ },
+/obj/structure/table/standard,
+/obj/item/defib_kit,
+/obj/item/defib_kit,
+/obj/machinery/recharger,
+/obj/item/tool/screwdriver,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"ofD" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"ogP" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_boxingcourt)
+"ohA" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"ohJ" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"ohP" = (
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"oiK" = (
+/obj/structure/table/standard,
+/obj/item/storage/toolbox/emergency,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"oiL" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"ojq" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"okC" = (
+/obj/item/circuitboard/aiupload,
+/obj/item/circuitboard/borgupload,
+/obj/item/circuitboard/smes,
+/obj/item/aiModule/nanotrasen,
+/obj/item/aiModule/reset,
+/obj/item/aiModule/freeformcore,
+/obj/item/aiModule/protectStation,
+/obj/item/aiModule/quarantine,
+/obj/item/aiModule/paladin,
+/obj/item/aiModule/robocop,
+/obj/item/aiModule/safeguard,
+/obj/structure/table/steel_reinforced,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"olg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"olA" = (
+/obj/machinery/button/remote/blast_door{
+ id = "tradestationshutters";
+ name = "warehouse control";
+ pixel_x = 30;
+ req_access = list(160)
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"omn" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"omo" = (
+/obj/structure/catwalk,
+/obj/random/junk,
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"omL" = (
+/obj/structure/bookcase{
+ name = "bookcase (Fiction)"
+ },
+/obj/item/book/bundle/custom_library/fiction/poemsforarainyday,
+/obj/item/book/bundle/custom_library/fiction/metalglen,
+/obj/item/book/bundle/custom_library/fiction/ghostship,
+/obj/item/book/bundle/custom_library/fiction/coldmountain,
+/obj/item/book/bundle/custom_library/fiction/chroniclesofmargatavol1,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"omU" = (
+/obj/machinery/button/remote/blast_door{
+ id = "skipjackshutters";
+ name = "remote shutter control";
+ req_access = list(150)
+ },
+/turf/simulated/wall/skipjack,
+/area/shuttle/skipjack)
+"ooi" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/machinery/vending/foodfish,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"ooP" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"ooQ" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"oqb" = (
+/obj/structure/table/standard,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/reagent_containers/glass/beaker/large,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"orn" = (
+/obj/item/toy/chess/knight_black,
+/turf/simulated/floor/holofloor/bmarble{
+ color = "teal"
+ },
+/area/holodeck/source_chess)
+"orF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"osb" = (
+/obj/machinery/computer/cloning,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"osg" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "cryostorage_shuttle_recovery_hatch";
+ locked = 1;
+ name = "Recovery Shuttle Dock Cryostorage";
+ req_access = list(13)
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"osz" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"osC" = (
+/obj/machinery/porta_turret/ai_defense{
+ req_one_access = list(150)
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"osV" = (
+/obj/machinery/door/airlock/command{
+ name = "Thunderdome Administration";
+ req_access = list(102)
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome)
+"otA" = (
+/obj/structure/table/standard,
+/obj/item/material/kitchen/utensil/fork,
+/obj/item/material/kitchen/utensil/spoon{
+ pixel_x = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"ouL" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"ovR" = (
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"owZ" = (
+/obj/machinery/light/broken,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"oxh" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"oxi" = (
+/obj/machinery/clonepod,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"oyq" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/turf/simulated/shuttle/wall/voidcraft/red,
+/area/shuttle/syndicate)
+"oyu" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/wall,
+/area/space)
+"oyA" = (
+/obj/item/reagent_containers/food/condiment/small/peppermill{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/yellow/diagonal,
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/living)
+"oyF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced/full,
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"oAo" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"oAV" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/turf/simulated/shuttle/wall/voidcraft/red,
+/area/shuttle/syndicate)
+"oBM" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"oCd" = (
+/obj/structure/table/steel,
+/obj/effect/spawner/newbomb/timer/syndicate,
+/obj/item/tool/screwdriver,
+/obj/item/assembly/signaler{
+ pixel_y = 2
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"oCs" = (
+/obj/machinery/newscaster{
+ layer = 3.3;
+ pixel_y = 30
+ },
+/obj/structure/bedsheetbin,
+/obj/structure/table/woodentable,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/wizard_station)
+"oCx" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"oDR" = (
+/obj/item/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = 32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"oDZ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"oEq" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"oEQ" = (
+/obj/structure/frame/computer,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"oFi" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/rack,
+/obj/item/storage/backpack/ert/security,
+/obj/item/storage/backpack/ert/security,
+/obj/item/storage/backpack/ert/security,
+/obj/item/storage/backpack/ert/security,
+/obj/item/storage/backpack/ert/security,
+/obj/item/storage/backpack/ert/security,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"oIe" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"oIg" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"oJA" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 8;
+ frequency = 1381;
+ id_tag = "centcom_shuttle_bay";
+ name = "shuttle bay controller";
+ pixel_x = 27;
+ tag_door = "centcom_shuttle_bay_door"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/command)
+"oJC" = (
+/obj/effect/shuttle_landmark/southern_cross/escape_pod2/offsite,
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape_pod2/centcom)
+"oJG" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "propulsion_l"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/syndicate)
+"oJW" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/head/philosopher_wig,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"oKR" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"oLs" = (
+/turf/unsimulated/wall/fake_uranium,
+/area/ninja_dojo/dojo)
+"oLA" = (
+/obj/structure/table/glass,
+/obj/item/clothing/mask/balaclava/tactical{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/clothing/mask/balaclava,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"oMV" = (
+/obj/machinery/light/broken,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"oOc" = (
+/obj/structure/table/woodentable,
+/obj/item/reagent_containers/food/snacks/fortunecookie,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"oOn" = (
+/obj/machinery/door/airlock/freezer,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/bar)
+"oOO" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"oRy" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/yellow/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"oRM" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"oSi" = (
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/structure/flora/ausbushes/sparsegrass,
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"oSH" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"oTl" = (
+/obj/structure/table/glass,
+/obj/item/clothing/mask/balaclava,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"oTO" = (
+/obj/structure/table/standard,
+/obj/structure/bedsheetbin,
+/obj/machinery/disposal/wall{
+ dir = 8;
+ pixel_x = 35
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"oTT" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"oTY" = (
+/obj/structure/grille,
+/obj/structure/shuttle/window,
+/turf/simulated/shuttle/plating,
+/area/shuttle/transport1/centcom)
+"oUd" = (
+/obj/structure/flora/underwater/plant2,
+/turf/simulated/floor/water/indoors/station,
+/area/shadekin)
+"oUh" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/main_hall)
+"oVq" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"oVM" = (
+/obj/machinery/computer/arcade/orion_trail,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"oWN" = (
+/obj/machinery/computer/shuttle_control/multi/ert{
+ dir = 4;
+ icon_keyboard = "flight_center_key";
+ icon_screen = "flight_center";
+ icon_state = "flightcomp_center"
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"oXR" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"oYa" = (
+/obj/machinery/gear_painter{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"oYx" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"oZR" = (
+/obj/machinery/computer/arcade,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/bar)
+"paX" = (
+/obj/structure/bed/chair/comfy/brown{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"pbc" = (
+/obj/machinery/media/jukebox,
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/bar)
+"pcw" = (
+/obj/structure/table/glass,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"pcQ" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja_dojo/dojo)
+"pdr" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"pdQ" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"pdZ" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ start_pressure = 740.5
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"pen" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_boxingcourt)
+"peG" = (
+/obj/structure/table/rack,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/item/tank/emergency/oxygen/double,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"peQ" = (
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Thaler General"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shadekin)
+"peU" = (
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja_dojo/dojo)
+"pfy" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/obj/random/maintenance/engineering,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"pfG" = (
+/obj/structure/closet/emcloset,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"pfP" = (
+/obj/structure/closet/secure_closet/chemical,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"phB" = (
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -37
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"phO" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/lino,
+/area/holodeck/source_meetinghall)
+"pir" = (
+/obj/machinery/dna_scannernew,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"piQ" = (
+/obj/machinery/recharge_station,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja_dojo/dojo)
+"piU" = (
+/obj/structure/sign/greencross{
+ desc = "White cross in a green field, you can get medical aid here.";
+ name = "First-Aid"
+ },
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/centcom/specops)
+"piW" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Escape Shuttle Cell";
+ req_access = list(1)
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/escape/centcom)
+"pkz" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/access_button{
+ dir = 4;
+ pixel_x = -25;
+ pixel_y = 6
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"pkK" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"pmn" = (
+/obj/machinery/computer/shuttle_control/multi/administration{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"pmt" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"pmE" = (
+/obj/structure/table/rack,
+/obj/item/material/harpoon,
+/obj/item/tank/oxygen,
+/obj/item/tank/oxygen,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/random/rigsuit,
+/obj/random/multiple/voidsuit,
+/obj/random/multiple/voidsuit,
+/obj/random/energy,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"pmF" = (
+/turf/simulated/shuttle/plating,
+/area/centcom/evac)
+"pmG" = (
+/obj/structure/table/bench/steel,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"pnb" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "centcom_shuttle";
+ pixel_y = -27;
+ tag_door = "centcom_shuttle_hatch"
+ },
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport1/centcom)
+"pod" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"pof" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"pog" = (
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/wizard_station)
+"poR" = (
+/obj/effect/shuttle_landmark/southern_cross/escape_pod1/offsite,
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape_pod1/centcom)
+"ppq" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"ppE" = (
+/obj/structure/table/rack,
+/obj/random/rigsuit,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"ppL" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "supply_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch";
+ req_access = list(13)
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"pqj" = (
+/obj/structure/table/marble,
+/obj/item/reagent_containers/glass/beaker,
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/reagentgrinder,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"pqU" = (
+/obj/structure/table/rack,
+/obj/item/tank/oxygen,
+/obj/item/tank/oxygen,
+/obj/random/multiple/voidsuit,
+/obj/random/multiple/voidsuit,
+/obj/random/energy,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"prb" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"prS" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/access_button{
+ dir = 8;
+ pixel_x = 25;
+ pixel_y = 6
+ },
+/obj/effect/map_helper/airlock/button/int_button,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"psx" = (
+/obj/structure/frame/computer,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"psU" = (
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"ptD" = (
+/obj/machinery/computer/security/nuclear,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"ptF" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"ptH" = (
+/obj/machinery/button/remote/blast_door{
+ id = "tradestarshutters";
+ name = "remote shutter control";
+ pixel_x = 30;
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"puo" = (
+/obj/structure/bed/pillowpile/yellow,
+/turf/simulated/floor/carpet/geo,
+/area/shadekin)
+"puz" = (
+/obj/machinery/computer/cryopod/gateway{
+ pixel_x = -32
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"puP" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"pvW" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"pwU" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/toy/sword,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"pxp" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport1/centcom)
+"pxL" = (
+/obj/structure/table/rack,
+/obj/item/storage/belt/security/tactical/bandolier,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"pyc" = (
+/obj/structure/table/reinforced,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/item/pda,
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 21;
+ pixel_x = 5
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"pyj" = (
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_boxingcourt)
+"pyl" = (
+/obj/structure/table/steel,
+/obj/item/storage/toolbox/syndicate/powertools,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"pyB" = (
+/obj/machinery/chem_master,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"pyN" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"pAB" = (
+/obj/machinery/light{
+ layer = 3
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"pAF" = (
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/bar)
+"pAR" = (
+/obj/structure/table/glass,
+/obj/item/stack/material/phoron,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"pBc" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/machinery/vending/foodmeat,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"pBu" = (
+/obj/structure/table/steel,
+/obj/item/gun/projectile/pistol,
+/obj/item/ammo_magazine/m9mm,
+/obj/item/gun/projectile/pistol,
+/obj/item/ammo_magazine/m9mm,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"pBQ" = (
+/obj/structure/table/rack,
+/obj/item/storage/belt/security,
+/obj/item/storage/belt/security,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"pDb" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow/border{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"pDk" = (
+/obj/machinery/door/airlock/silver{
+ name = "Restroom"
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/merchant)
+"pDn" = (
+/obj/effect/landmark{
+ name = "Response Team"
+ },
+/obj/effect/landmark{
+ name = "Commando"
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"pDw" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"pEl" = (
+/obj/machinery/autolathe{
+ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however...";
+ hacked = 1;
+ name = "Thunderdome Autolathe"
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"pEs" = (
+/obj/machinery/suit_cycler/syndicate{
+ locked = 0
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"pFy" = (
+/obj/machinery/light,
+/obj/structure/closet/syndicate/suit{
+ name = "suit closet"
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"pFL" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/firstaid,
+/obj/random/firstaid,
+/obj/random/firstaid,
+/obj/random/firstaid,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"pGr" = (
+/obj/structure/table/reinforced,
+/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp,
+/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"pGN" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"pGP" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"pGT" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "response_base_door";
+ locked = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"pGZ" = (
+/turf/simulated/wall{
+ can_open = 1
+ },
+/area/shadekin)
+"pHc" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/unsimulated/wall,
+/area/centcom/suppy)
+"pHq" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"pHw" = (
+/obj/machinery/button/remote/blast_door{
+ id = "syndieshutters_telebay";
+ name = "remote shutter control";
+ pixel_y = -25;
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"pHA" = (
+/obj/machinery/door/blast/regular{
+ dir = 4;
+ id = "syndieshutters_telebay";
+ name = "Outer Airlock"
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"pIn" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/shadekin)
+"pIs" = (
+/obj/machinery/vending/dinnerware,
+/turf/simulated/floor/tiled/freezer,
+/area/shadekin)
+"pJj" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"pJm" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"pJB" = (
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"pJD" = (
+/obj/machinery/vending/radren,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"pJQ" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"pKi" = (
+/obj/structure/girder,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"pKo" = (
+/obj/item/reagent_containers/food/drinks/bottle/pwine{
+ pixel_x = -4;
+ pixel_y = 10
+ },
+/obj/structure/table/marble,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/wizard_station)
+"pKM" = (
+/obj/structure/table/bench/wooden,
+/obj/effect/landmark{
+ name = "ninjastart"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"pKR" = (
+/obj/effect/landmark{
+ name = "ninjastart"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"pKS" = (
+/obj/structure/dummystairs{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"pMy" = (
+/obj/structure/bed/chair/comfy/teal{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/command)
+"pNc" = (
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"pNe" = (
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"pNH" = (
+/obj/effect/floor_decal/corner/white/diagonal{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"pNW" = (
+/obj/structure/table/bench/padded,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"pOh" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/towel{
+ color = "#FF6666";
+ name = "light red towel"
+ },
+/obj/item/towel{
+ color = "#FF6666";
+ name = "light red towel"
+ },
+/obj/random/soap,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja_dojo/dojo)
+"pOq" = (
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/plain/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/loading/blue,
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"pOI" = (
+/obj/machinery/computer/timeclock/premade/south,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"pOM" = (
+/obj/structure/table/standard,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/bruise_pack,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"pQr" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "tradebridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"pQM" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/pill_bottle/tramadol,
+/obj/item/storage/pill_bottle/tramadol,
+/obj/item/storage/pill_bottle/tramadol,
+/obj/item/storage/pill_bottle/dylovene,
+/obj/item/storage/pill_bottle/dylovene,
+/obj/item/storage/pill_bottle/dylovene,
+/obj/item/storage/pill_bottle/dermaline,
+/obj/item/storage/pill_bottle/dermaline,
+/obj/item/storage/pill_bottle/dermaline,
+/obj/item/storage/pill_bottle/spaceacillin,
+/obj/item/storage/pill_bottle/dexalin_plus,
+/obj/item/storage/pill_bottle/dexalin_plus,
+/obj/item/storage/pill_bottle/dexalin_plus,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"pQU" = (
+/obj/effect/map_effect/portal/master/side_b/retreat_east{
+ dir = 1
+ },
+/obj/effect/map_effect/perma_light/concentrated/incandescent,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"pRJ" = (
+/obj/machinery/chemical_dispenser/full,
+/obj/item/reagent_containers/glass/beaker/large,
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"pTU" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"pTX" = (
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"pUN" = (
+/obj/structure/bed/pillowpilefront/yellow,
+/turf/simulated/floor/carpet/geo,
+/area/shadekin)
+"pUQ" = (
+/obj/structure/closet,
+/obj/item/clothing/suit/wizrobe/marisa,
+/obj/item/clothing/shoes/sandal/marisa,
+/obj/item/clothing/head/wizard/marisa,
+/obj/item/staff/broom,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"pVs" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"pVz" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome/tdome2)
+"pVK" = (
+/obj/effect/landmark{
+ name = "tdome2"
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome/tdome2)
+"pWb" = (
+/obj/machinery/microwave{
+ pixel_x = -1;
+ pixel_y = 8
+ },
+/obj/structure/table/steel,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"pXz" = (
+/obj/item/toy/chess/pawn_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"pZk" = (
+/obj/item/seeds/potatoseed,
+/obj/item/seeds/potatoseed,
+/obj/item/seeds/ambrosiavulgarisseed,
+/obj/item/material/minihoe,
+/obj/item/beartrap,
+/obj/structure/table/steel,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"qah" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Maintenance Dormitory";
+ id_tag = "darkdorm2"
+ },
+/turf/simulated/floor/plating,
+/area/shadekin)
+"qaR" = (
+/obj/structure/lattice,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/fernybush,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/shadekin)
+"qbl" = (
+/obj/structure/target_stake,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"qbK" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/specops)
+"qbW" = (
+/obj/machinery/vending/tool{
+ emagged = 1
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"qcH" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"qej" = (
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/shuttle/trade)
+"qel" = (
+/obj/structure/undies_wardrobe,
+/obj/item/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Subversive Intercom";
+ pixel_x = 32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"qen" = (
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"qez" = (
+/obj/machinery/robotic_fabricator,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"qeO" = (
+/obj/structure/table/reinforced,
+/obj/item/megaphone,
+/obj/item/storage/box/trackimp,
+/obj/item/storage/box/cdeathalarm_kit,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"qfl" = (
+/obj/machinery/vending/hydroseeds,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"qfC" = (
+/obj/structure/railing/overhang/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"qgG" = (
+/obj/item/stool/padded,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"qiJ" = (
+/obj/structure/table/rack,
+/obj/item/melee/energy/sword/pirate,
+/obj/item/clothing/suit/space/pirate,
+/obj/item/clothing/suit/space/pirate,
+/obj/item/tank/oxygen,
+/obj/item/pinpointer/shuttle/heist,
+/obj/item/pinpointer/shuttle/heist,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"qkf" = (
+/obj/structure/table/rack,
+/obj/item/storage/belt/utility/full,
+/obj/item/storage/belt/utility/full,
+/obj/item/multitool,
+/obj/item/multitool,
+/obj/item/clothing/shoes/magboots,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"qku" = (
+/obj/structure/window/reinforced/holowindow,
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"qkC" = (
+/obj/machinery/washing_machine,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"qkN" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/combat{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/firstaid/combat,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"qkX" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"qmj" = (
+/obj/structure/table/reinforced,
+/obj/item/megaphone,
+/obj/item/megaphone,
+/obj/item/megaphone,
+/obj/item/megaphone,
+/obj/item/megaphone,
+/obj/item/megaphone,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"qng" = (
+/obj/structure/flora/tree/jungle,
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/grass2,
+/area/shadekin)
+"qnI" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Central Access"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"qoh" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "escape_shuttle";
+ pixel_y = -25;
+ req_one_access = list(13);
+ tag_door = "escape_shuttle_hatch"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"qox" = (
+/obj/effect/landmark/costume,
+/obj/structure/table/rack/holorack,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_theatre)
+"qoK" = (
+/obj/machinery/gateway{
+ dir = 8
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"qoU" = (
+/obj/machinery/chem_master/condimaster,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"qoY" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/obj/structure/window/reinforced/holowindow,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"qpy" = (
+/obj/effect/floor_decal/borderfloorblack/corner,
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"qpG" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"qpS" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/suit/hgpirate,
+/obj/item/clothing/suit/imperium_monk,
+/obj/item/clothing/suit/leathercoat,
+/obj/item/clothing/suit/justice,
+/obj/item/clothing/suit/justice,
+/obj/item/clothing/suit/justice,
+/obj/item/clothing/suit/justice,
+/obj/item/clothing/suit/justice,
+/obj/item/clothing/suit/pirate,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"qqh" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"qqr" = (
+/obj/machinery/flasher{
+ id = "flash";
+ name = "Thunderdome Flash"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome)
+"qqK" = (
+/obj/structure/table/standard,
+/obj/item/storage/fancy/cigarettes,
+/obj/item/flame/lighter/zippo,
+/obj/item/clothing/gloves/yellow,
+/obj/item/stack/material/steel{
+ amount = 50
+ },
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/obj/item/card/emag,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"qrl" = (
+/obj/machinery/telecomms/server/presets/centcomm,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"qrw" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"qrD" = (
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ dir = 1;
+ frequency = 1443;
+ name = "Spec Ops Intercom";
+ pixel_y = 22
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/command)
+"qrL" = (
+/obj/machinery/disposal/wall{
+ pixel_y = 35
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shadekin)
+"qsF" = (
+/obj/machinery/door/airlock{
+ name = "Shower"
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"qsI" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"qvz" = (
+/obj/structure/table/marble,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/microwave,
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"qvC" = (
+/obj/structure/table/standard,
+/obj/item/stack/material/steel{
+ amount = 2
+ },
+/obj/item/stack/material/steel{
+ amount = 2
+ },
+/obj/item/stack/material/glass{
+ amount = 15
+ },
+/obj/item/stack/material/glass{
+ amount = 15
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"qwo" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/arrow/quill,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"qwr" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"qxG" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"qxH" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"qxL" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 32
+ },
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"qyq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "syndieshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"qzv" = (
+/obj/effect/floor_decal/carpet,
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"qzw" = (
+/obj/machinery/door/blast/regular/bookcase{
+ id = "gambar";
+ name = "decorational bookcase"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"qAi" = (
+/obj/machinery/telecomms/receiver/preset_cent,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"qAV" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/button/remote/blast_door{
+ id = "syndieshutters";
+ name = "remote shutter control";
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"qCf" = (
+/obj/structure/bed/chair/comfy/red{
+ dir = 1;
+ icon_state = "comfychair_preview"
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"qCw" = (
+/obj/machinery/computer/rcon,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"qCW" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/wall,
+/area/space)
+"qDH" = (
+/obj/machinery/cryopod/robot/door/gateway/quiet,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"qHa" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/command)
+"qIh" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/action_figure,
+/obj/random/action_figure,
+/obj/random/action_figure,
+/obj/random/action_figure,
+/obj/random/action_figure,
+/obj/random/action_figure,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"qJf" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"qJE" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"qJS" = (
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"qKM" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"qLu" = (
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"qNq" = (
+/obj/structure/lattice,
+/turf/space,
+/area/space)
+"qOj" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/bed/chair/comfy/red{
+ dir = 4;
+ icon_state = "comfychair_preview"
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"qOr" = (
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"qPq" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair/comfy/red{
+ dir = 8;
+ icon_state = "comfychair_preview"
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"qPX" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"qQA" = (
+/obj/machinery/door/airlock/voidcraft{
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"qQN" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/food/condiment/small/saltshaker,
+/obj/item/reagent_containers/food/condiment/small/peppermill,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/bar)
+"qRp" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/centcom/evac)
+"qRL" = (
+/obj/structure/closet/wardrobe/pjs,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"qRX" = (
+/turf/unsimulated/wall,
+/area/centcom/medical)
+"qSe" = (
+/obj/machinery/vending/cigarette{
+ name = "hacked cigarette machine";
+ prices = list();
+ products = list(/obj/item/storage/fancy/cigarettes=10,/obj/item/storage/box/matches=10,/obj/item/flame/lighter/zippo=4,/obj/item/clothing/mask/smokable/cigarette/cigar/havana=2)
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"qSQ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"qST" = (
+/obj/structure/table/reinforced,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/obj/item/cell/device/weapon,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"qTk" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/wall,
+/area/space)
+"qTL" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_thunderdomecourt)
+"qUt" = (
+/obj/structure/prop/machine/tgmc_console2/starts_on,
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"qUI" = (
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/centcom/main_hall)
+"qUY" = (
+/obj/structure/prop/statue/phoron,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"qVa" = (
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"qVb" = (
+/obj/structure/table/rack,
+/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/clothing/gloves/yellow,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"qVV" = (
+/obj/structure/table/rack,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"qXP" = (
+/obj/item/toy/plushie/lizard{
+ pixel_x = 6;
+ pixel_y = -9
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1;
+ layer = 3
+ },
+/obj/item/toy/plushie/carp/void,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"qXR" = (
+/turf/simulated/floor/carpet/bcarpet,
+/area/shadekin)
+"qYa" = (
+/obj/structure/table/rack,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"qYP" = (
+/obj/effect/floor_decal/carpet,
+/obj/structure/bed/chair/holochair{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"qZO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"qZR" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-08"
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"rae" = (
+/obj/machinery/recharger,
+/obj/structure/table/steel_reinforced,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"rag" = (
+/obj/machinery/vending/hydronutrients{
+ dir = 4;
+ pixel_x = -5
+ },
+/obj/item/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shadekin)
+"ras" = (
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"raJ" = (
+/obj/structure/lattice,
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/shadekin)
+"rbF" = (
+/obj/item/toy/plushie/basset{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/toy/plushie/spider{
+ pixel_x = 14;
+ pixel_y = 21
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"rbV" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/radio/uplink,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"rdH" = (
+/obj/machinery/computer/timeclock/premade/east,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"reG" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"reH" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja_dojo/dojo)
+"rfz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"rgl" = (
+/obj/structure/sign/directions/medical{
+ dir = 1;
+ pixel_y = -10
+ },
+/obj/structure/sign/directions/science{
+ dir = 1
+ },
+/turf/unsimulated/wall,
+/area/centcom/terminal)
+"rgA" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/structure/bed/chair/holochair{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"rgG" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/bar)
+"rgL" = (
+/obj/structure/table/woodentable,
+/obj/item/paper_bin,
+/obj/item/pen/fountain6{
+ pixel_y = 7
+ },
+/obj/item/pen/fountain5,
+/obj/item/pen/multi{
+ pixel_y = -7
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "gambar";
+ name = "Bar";
+ pixel_x = 4;
+ layer = 2.7
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"rht" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 6;
+ teleport_z_offset = 6
+ },
+/turf/simulated/mineral,
+/area/space)
+"riW" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/skills,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"rjH" = (
+/obj/effect/map_effect/portal/master/side_b/retreat_west{
+ dir = 8
+ },
+/turf/simulated/wall,
+/area/shadekin)
+"rjI" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"rkf" = (
+/obj/machinery/vending/medical,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"rkG" = (
+/turf/unsimulated/wall/shuttle_bay{
+ dir = 8
+ },
+/area/centcom/evac)
+"rmR" = (
+/obj/structure/flora/ausbushes/stalkybush,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"rmU" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"rnf" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"rnC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ id = "skipjackshutters";
+ name = "Skipjack Blast Shielding"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"rnK" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "tradestarshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"rnX" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/fire{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"rob" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "tradebridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"rol" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ id = "skipjackshutters";
+ name = "Skipjack Blast Shielding"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"rov" = (
+/obj/item/toy/plushie/borgplushie/drake/mine,
+/obj/item/toy/plushie/carp/gold{
+ pixel_x = -6;
+ pixel_y = -1
+ },
+/obj/item/toy/plushie/crimson_fox{
+ pixel_x = -9;
+ pixel_y = -11
+ },
+/obj/item/toy/plushie/siamese_cat{
+ pixel_x = 5;
+ pixel_y = 11
+ },
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"roS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular{
+ id = "skipjackshutters";
+ name = "Skipjack Blast Shielding"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"roV" = (
+/obj/structure/table/reinforced,
+/obj/item/shield_diffuser,
+/obj/item/shield_diffuser,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"rpn" = (
+/obj/machinery/microwave,
+/obj/structure/table/reinforced,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"rpy" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/lipstick/black,
+/obj/item/lipstick/jade,
+/obj/item/lipstick/purple,
+/obj/item/lipstick,
+/obj/item/lipstick/random,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"rpC" = (
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"rqK" = (
+/obj/machinery/computer/cloning{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"rqY" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -37
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"rry" = (
+/obj/structure/undies_wardrobe,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/shuttle/trade)
+"rso" = (
+/obj/structure/table/standard,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/clothing/gloves/yellow,
+/obj/item/clothing/gloves/yellow,
+/obj/item/clothing/gloves/yellow,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"rsy" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"rti" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"rtJ" = (
+/turf/simulated/floor/tiled/old_tile/blue,
+/area/shadekin)
+"rtM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape/centcom)
+"rtW" = (
+/obj/effect/floor_decal/corner/white,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"rud" = (
+/obj/machinery/door/airlock/hatch{
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"rvm" = (
+/obj/structure/table/rack,
+/obj/item/rig_module/device/rcd,
+/obj/item/rig_module/device/rcd,
+/obj/item/rig_module/device/plasmacutter,
+/obj/item/rig_module/device/plasmacutter,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"rvp" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"rvN" = (
+/obj/structure/flora/grass/brown,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"rwa" = (
+/obj/structure/table/standard,
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/surgical/retractor,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"rwu" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/bar)
+"rwv" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/merchant)
+"rxe" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/bed/padded,
+/obj/item/bedsheet/hos,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"rxS" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5;
+ pixel_y = -7
+ },
+/obj/structure/window/basic{
+ dir = 1
+ },
+/obj/structure/curtain/open/shower,
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"rze" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"rzn" = (
+/obj/item/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/table/marble,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/wizard_station)
+"rzz" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"rzA" = (
+/obj/structure/table/rack,
+/obj/item/clothing/mask/breath,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/random/multiple/voidsuit,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"rAs" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"rAB" = (
+/obj/item/robot_parts/head,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"rAL" = (
+/obj/machinery/igniter,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome)
+"rBj" = (
+/obj/structure/table/standard,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 32
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"rBp" = (
+/obj/machinery/vending/engineering,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"rBC" = (
+/obj/machinery/door/airlock,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"rBO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "syndieshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"rCx" = (
+/obj/item/stool/padded,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"rCL" = (
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/command)
+"rDC" = (
+/obj/mecha/working/hoverpod,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"rEm" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/icecream_vat,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"rFr" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"rGg" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/snacks/slice/orangecake/filled,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"rGE" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_containers/food/snacks/meat/syntiflesh,
+/obj/item/reagent_containers/food/snacks/meat/syntiflesh,
+/obj/item/reagent_containers/food/snacks/meat/syntiflesh,
+/obj/item/reagent_containers/food/snacks/meat/syntiflesh,
+/obj/item/reagent_containers/food/snacks/meat/syntiflesh,
+/obj/item/reagent_containers/food/snacks/meat/syntiflesh,
+/obj/item/reagent_containers/food/snacks/meat/syntiflesh,
+/obj/item/reagent_containers/food/snacks/meat/syntiflesh,
+/obj/item/reagent_containers/food/snacks/meat/syntiflesh,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"rGM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"rHh" = (
+/obj/structure/flight_right{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"rIg" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"rIq" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"rIA" = (
+/obj/machinery/light/small/yellowed{
+ dir = 8
+ },
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -35;
+ pixel_y = 6
+ },
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"rIX" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "response_shuttle";
+ pixel_y = -27;
+ tag_door = "response_shuttle_door"
+ },
+/obj/effect/shuttle_landmark{
+ base_area = /area/centcom/specops;
+ base_turf = /turf/simulated/floor/plating;
+ docking_controller = "response_base";
+ landmark_tag = "response_ship_start";
+ name = "ERT Shuttle Bay"
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"rJt" = (
+/turf/simulated/shuttle/wall/dark/no_join,
+/area/centcom/specops)
+"rJN" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/pda/captain,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"rJW" = (
+/obj/effect/floor_decal/borderfloorblack/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"rKQ" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"rKZ" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/largecrate/animal/corgi,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"rLa" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/gun/energy/laser/practice,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"rLm" = (
+/obj/structure/table/reinforced,
+/obj/item/cell/high,
+/obj/item/cell/high,
+/obj/item/cell/high,
+/obj/item/cell/high,
+/obj/item/cell/high,
+/obj/item/cell/high,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"rLv" = (
+/obj/structure/closet/secure_closet/guncabinet,
+/obj/item/gun/energy/gun/burst,
+/obj/item/gun/energy/gun/burst,
+/obj/item/gun/energy/ionrifle/pistol,
+/obj/item/gun/projectile/shotgun/pump/combat,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"rLA" = (
+/obj/structure/table,
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"rLR" = (
+/obj/machinery/computer/pod{
+ id = "NTrasen";
+ name = "Hull Door Control"
+ },
+/obj/item/radio/intercom/specops{
+ pixel_y = -21
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"rMD" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/shadekin)
+"rMY" = (
+/obj/structure/bed/chair,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"rNJ" = (
+/obj/machinery/teleport/station,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"rNN" = (
+/obj/machinery/vending/snack{
+ name = "hacked Getmore Chocolate Corp";
+ prices = list()
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"rOh" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-04"
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"rOj" = (
+/obj/machinery/turretid{
+ pixel_x = 32;
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"rOy" = (
+/obj/structure/table/rack,
+/obj/item/gun/launcher/rocket,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"rOR" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"rOX" = (
+/obj/structure/table/hardwoodtable,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"rPA" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/mecha_parts/mecha_equipment/tool/passenger,
+/obj/item/mecha_parts/mecha_equipment/tool/passenger,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"rPJ" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"rRo" = (
+/obj/structure/closet/secure_closet/brig,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"rSl" = (
+/obj/structure/showcase,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/shadekin)
+"rSL" = (
+/obj/machinery/vending/wallmed1{
+ pixel_y = -30
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"rSP" = (
+/obj/machinery/button/remote/airlock{
+ id = "darkdorm3";
+ name = "Bolt Control";
+ specialfunctions = 4;
+ pixel_y = 25
+ },
+/obj/machinery/button/windowtint{
+ id = "darkdormtint";
+ pixel_x = -9;
+ pixel_y = 24
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"rTt" = (
+/turf/unsimulated/wall/dark,
+/area/shadekin)
+"rTw" = (
+/obj/structure/closet/crate/hydroponics/prespawned,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"rUb" = (
+/obj/structure/table/standard,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"rUp" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"rVH" = (
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/shadekin)
+"rWb" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"rWi" = (
+/obj/structure/bed/chair/comfy/red{
+ dir = 4;
+ icon_state = "comfychair_preview"
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"rWU" = (
+/obj/machinery/light/bigfloorlamp{
+ nightshift_enabled = 1;
+ pixel_y = 10
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/eris/bcircuit,
+/area/shadekin)
+"rXa" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Administrative Office";
+ req_access = list(108)
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"rXq" = (
+/obj/structure/bed/chair/comfy/red{
+ dir = 8;
+ icon_state = "comfychair_preview"
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"rXu" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/medical,
+/obj/random/medical,
+/obj/random/medical,
+/obj/random/medical,
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"rXM" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/book/manual/robotics_cyborgs,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"rYb" = (
+/obj/machinery/embedded_controller/radio/docking_port_multi{
+ child_names_txt = "Airlock One;Airlock Two;Airlock Three;Airlock Four";
+ child_tags_txt = "escape_dock_north_airlock;escape_dock_south_airlock;escape_dock_snorth_airlock;escape_dock_ssouth_airlock";
+ frequency = 1381;
+ id_tag = "escape_dock";
+ pixel_y = -32;
+ req_one_access = list(13)
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"rYr" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"rZf" = (
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/plastitanium/full,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"rZh" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"rZW" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove{
+ icon_state = "boxinggreen";
+ item_state = "boxinggreen"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"rZY" = (
+/turf/unsimulated/wall,
+/area/ai_multicam_room)
+"sar" = (
+/obj/machinery/turretid{
+ pixel_y = 32;
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"saE" = (
+/obj/structure/table/rack,
+/obj/item/aicard,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"saX" = (
+/obj/machinery/door/window/northright{
+ dir = 2
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"saZ" = (
+/obj/item/rig/light/stealth,
+/obj/structure/table/rack,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja_dojo/dojo)
+"sbk" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"sbo" = (
+/obj/item/storage/firstaid/regular{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = 5
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = 5
+ },
+/obj/item/storage/firstaid/o2{
+ layer = 2.8;
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/storage/box/masks,
+/obj/item/storage/box/gloves{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/toxin,
+/obj/item/storage/firstaid/fire{
+ layer = 2.9;
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/storage/firstaid/adv{
+ pixel_x = -2
+ },
+/obj/item/reagent_containers/blood/empty,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/structure/closet/medical_wall{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"sbx" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"sbB" = (
+/obj/machinery/door/window/brigdoor{
+ name = "Security"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"sbM" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 1;
+ layer = 3
+ },
+/obj/item/toy/plushie/borgplushie/drake/med,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"scG" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/administration)
+"sdB" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"ses" = (
+/obj/machinery/light/broken{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/shadekin)
+"seQ" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/centcom/bar)
+"sfc" = (
+/obj/machinery/floodlight,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"sfB" = (
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod{
+ opacity = 1
+ },
+/obj/structure/window/reinforced/survival_pod{
+ dir = 4;
+ opacity = 1
+ },
+/turf/simulated/floor/plating,
+/area/shadekin)
+"sgn" = (
+/obj/item/suit_cooling_unit,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja_dojo/dojo)
+"shC" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/stock_parts/matter_bin/super,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"shJ" = (
+/obj/machinery/door/airlock/uranium_appearance,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ninja_dojo/dojo)
+"shL" = (
+/obj/structure/table/rack,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"shS" = (
+/obj/item/frame/light,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"sid" = (
+/obj/machinery/door/morgue,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/ninja_dojo/dojo)
+"siB" = (
+/obj/structure/table/reinforced,
+/obj/item/paicard,
+/obj/item/paicard,
+/obj/item/paicard,
+/obj/item/paicard,
+/obj/item/paicard,
+/obj/item/paicard,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"siV" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 6;
+ teleport_z_offset = 6
+ },
+/turf/space,
+/area/space)
+"sjD" = (
+/obj/structure/table/standard,
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/item/roller{
+ pixel_y = 16
+ },
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"sjO" = (
+/obj/machinery/door/blast/shutters{
+ dir = 8;
+ id = "tradestationshutters";
+ name = "Warehouse Shutters"
+ },
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "vault"
+ },
+/area/shuttle/trade)
+"sjZ" = (
+/obj/structure/table/marble,
+/obj/item/book/manual/barman_recipes,
+/obj/item/reagent_containers/glass/rag,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/centcom/bar)
+"skk" = (
+/obj/machinery/door/airlock/maintenance/common{
+ name = "Kitchen"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/shadekin)
+"skB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ id = "skipjackshutters";
+ name = "Skipjack Blast Shielding"
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"slw" = (
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Stark Dormitory";
+ id_tag = "darkdorm4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"slD" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "escape_pod_3_recovery_hatch";
+ locked = 1;
+ name = "Recovery Shuttle Dock 3";
+ req_access = list(13)
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"slP" = (
+/obj/item/robot_parts/l_leg,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"smh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"smF" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"smQ" = (
+/obj/item/flame/lighter/zippo,
+/obj/structure/table/reinforced,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"snf" = (
+/obj/machinery/computer/shuttle_control/multi/syndicate{
+ dir = 8;
+ icon_keyboard = "flight_center_key";
+ icon_screen = "flight_center";
+ icon_state = "flightcomp_center"
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"snr" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"snC" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/structure/curtain/open/shower,
+/obj/structure/window/reinforced/tinted,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/specops)
+"sou" = (
+/turf/simulated/floor/tiled/freezer,
+/area/shadekin)
+"soR" = (
+/obj/effect/step_trigger/teleporter/random{
+ teleport_z = 8;
+ teleport_x_offset = 127;
+ teleport_x = 60;
+ teleport_y = 191;
+ teleport_y_offset = 201
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"spc" = (
+/turf/unsimulated/wall,
+/area/centcom/command)
+"spo" = (
+/obj/machinery/chem_master/condimaster,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/bar)
+"sqk" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "escape_pod_4_recovery";
+ pixel_x = -26;
+ pixel_y = 26;
+ req_one_access = list(13);
+ tag_door = "escape_pod_4_recovery_hatch";
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"sqP" = (
+/turf/simulated/floor/lino,
+/area/shadekin)
+"srg" = (
+/obj/structure/bed/chair/comfy/red{
+ dir = 8;
+ icon_state = "comfychair_preview"
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"ssk" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"ssX" = (
+/obj/structure/table/rack,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"sto" = (
+/obj/structure/table/reinforced,
+/obj/item/handcuffs,
+/obj/item/flash,
+/obj/item/melee/baton/loaded,
+/obj/item/storage/belt/security/tactical,
+/obj/item/gun/energy/stunrevolver,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/material/knife/tacknife/combatknife,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"stN" = (
+/obj/structure/table/rack/gun_rack/steel,
+/obj/random/miniature,
+/obj/random/miniature,
+/obj/random/miniature,
+/obj/random/miniature,
+/obj/random/miniature,
+/obj/random/miniature,
+/obj/random/miniature,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"suM" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/paleblue/full,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"svq" = (
+/obj/machinery/door/airlock/voidcraft/vertical{
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"svA" = (
+/obj/structure/table/reinforced,
+/obj/item/pda/ert,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"swq" = (
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_alc/full,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/centcom/bar)
+"sws" = (
+/obj/machinery/recharge_station,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"swU" = (
+/obj/machinery/door/airlock/glass{
+ name = "Bar"
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/bar)
+"sxd" = (
+/obj/item/stool/padded,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"sxT" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"syS" = (
+/obj/item/toy/chess/knight_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"syY" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "admin_shuttle_bay";
+ name = "shuttle bay controller";
+ pixel_y = -27;
+ tag_door = "admin_shuttle_bay_door"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/command)
+"szr" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/escape/centcom)
+"szC" = (
+/obj/structure/closet/crate,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja_dojo/dojo)
+"szP" = (
+/obj/machinery/photocopier,
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"szV" = (
+/obj/structure/table/rack,
+/obj/item/gun/energy/stunrevolver,
+/obj/item/gun/energy/stunrevolver,
+/obj/item/flash,
+/obj/item/flash,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"sAo" = (
+/obj/machinery/computer/power_monitor,
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"sAG" = (
+/obj/machinery/vending/giftvendor,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"sAP" = (
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Cave Dormitory";
+ id_tag = "darkdorm6"
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/shadekin)
+"sBo" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/grass2,
+/area/shadekin)
+"sBy" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/obj/machinery/vending/bepis,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"sBF" = (
+/obj/item/broken_device,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja_dojo/dojo)
+"sBT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"sCn" = (
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ninja_dojo/dojo)
+"sCy" = (
+/obj/machinery/door/morgue,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja_dojo/dojo)
+"sDC" = (
+/obj/machinery/vending/assist,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"sEM" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 8
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"sEU" = (
+/obj/machinery/door/airlock/centcom{
+ name = "General Access";
+ req_one_access = list()
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"sFk" = (
+/obj/machinery/button/remote/blast_door{
+ id = "crescent_thunderdome";
+ name = "Thunderdome Access";
+ pixel_x = 6;
+ pixel_y = -24;
+ req_access = list(101)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "crescent_vip_shuttle";
+ name = "VIP Shuttle Access";
+ pixel_x = 6;
+ pixel_y = -34;
+ req_access = list(101)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "crescent_checkpoint_access";
+ name = "Crescent Checkpoint Access";
+ pixel_x = -6;
+ pixel_y = -24;
+ req_access = list(101)
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/command)
+"sFr" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"sFQ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"sFS" = (
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"sGE" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/centcom/evac)
+"sHF" = (
+/obj/structure/table/rack,
+/obj/item/rig_module/device/drill,
+/obj/item/rig_module/device/drill,
+/obj/item/rig_module/maneuvering_jets,
+/obj/item/rig_module/maneuvering_jets,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"sIZ" = (
+/obj/structure/flora/tree/pine/holo,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"sJc" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_l"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/administration)
+"sJf" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"sKa" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"sKM" = (
+/obj/structure/table/rack,
+/obj/item/storage/box/flashbangs,
+/obj/item/storage/box/flashbangs,
+/obj/item/storage/box/emps{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/storage/box/frags,
+/obj/item/storage/box/smokes,
+/obj/item/storage/box/smokes,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"sLr" = (
+/obj/structure/bed/pillowpile/green,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"sLw" = (
+/obj/structure/table/rack,
+/obj/item/gun/energy/stunrevolver,
+/obj/item/gun/energy/stunrevolver,
+/obj/item/gun/energy/stunrevolver,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"sLJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ id = "skipjackshutters";
+ name = "Skipjack Blast Shielding"
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"sLV" = (
+/obj/machinery/door/airlock/command{
+ name = "Captain's Quarters";
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"sMC" = (
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"sMH" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/supply)
+"sMQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"sNe" = (
+/obj/item/stool/padded{
+ dir = 1
+ },
+/obj/effect/landmark/darkspawn,
+/turf/simulated/floor/carpet/geo,
+/area/shadekin)
+"sNs" = (
+/obj/machinery/door/airlock/highsecurity{
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"sOh" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = -32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"sOu" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"sPk" = (
+/obj/machinery/floodlight,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"sQM" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"sRg" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"sRA" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "large_escape_pod_1_recovery_hatch";
+ locked = 1;
+ name = "Recovery Shuttle Dock 01";
+ req_access = list(13)
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"sTx" = (
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 8
+ },
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/shadekin)
+"sTI" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/centcom/evac)
+"sUq" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"sUz" = (
+/obj/machinery/door/airlock/centcom{
+ name = "General Access";
+ req_access = list(101)
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome)
+"sUX" = (
+/obj/structure/bed/chair/comfy/brown,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"sVf" = (
+/obj/structure/closet/wardrobe/pjs,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"sWg" = (
+/obj/machinery/cell_charger,
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"sWL" = (
+/obj/structure/closet/secure_closet/hos,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"sXv" = (
+/obj/item/pda,
+/obj/item/pda,
+/obj/structure/table/rack/gun_rack/steel,
+/obj/item/pda,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"sXZ" = (
+/obj/item/suit_cooling_unit,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"sYg" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/tool,
+/obj/random/tool,
+/obj/random/tool,
+/obj/random/tool,
+/obj/random/tool,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"sYo" = (
+/obj/structure/table/rack,
+/obj/item/storage/backpack/security,
+/obj/item/clothing/under/syndicate/combat,
+/obj/item/clothing/shoes/galoshes,
+/obj/item/clothing/head/bio_hood/janitor,
+/obj/item/clothing/suit/bio_suit/janitor,
+/obj/item/clothing/gloves/purple,
+/obj/item/clothing/glasses/science,
+/obj/item/storage/backpack/security,
+/obj/item/clothing/under/syndicate/combat,
+/obj/item/clothing/shoes/galoshes,
+/obj/item/clothing/head/bio_hood/janitor,
+/obj/item/clothing/suit/bio_suit/janitor,
+/obj/item/clothing/gloves/purple,
+/obj/item/clothing/glasses/science,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/spray/plantbgone,
+/obj/item/reagent_containers/spray/plantbgone,
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/grenade/chem_grenade/cleaner,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"sYR" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"sYX" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"sZp" = (
+/obj/structure/table/bench/padded,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/security)
+"sZs" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 2;
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"sZW" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"tau" = (
+/obj/structure/table/rack,
+/obj/item/gun/launcher/crossbow,
+/obj/item/stack/rods{
+ amount = 10
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/beartrap,
+/obj/item/beartrap,
+/obj/item/beartrap,
+/obj/item/beartrap,
+/obj/item/beartrap,
+/obj/item/beartrap,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"tbQ" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"tbY" = (
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"tcF" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"tcW" = (
+/obj/effect/step_trigger/teleporter/randomspawn{
+ teleport_x = 130;
+ teleport_z = 3;
+ teleprob = 5;
+ teleport_y = 146;
+ destroyprob = 0
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"tdL" = (
+/obj/structure/bed/padded,
+/obj/item/bedsheet/medical,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"tef" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"tel" = (
+/obj/item/stack/material/glass{
+ amount = 50
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"teU" = (
+/obj/structure/table/rack,
+/obj/item/grenade/empgrenade,
+/obj/item/grenade/flashbang,
+/obj/item/grenade/spawnergrenade/manhacks,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"tfg" = (
+/turf/simulated/mineral/cetus,
+/area/shadekin)
+"tfr" = (
+/obj/structure/table/standard,
+/obj/item/clothing/accessory/permit,
+/obj/item/clothing/accessory/permit,
+/obj/item/clothing/accessory/permit,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"tfB" = (
+/obj/machinery/light/yellowed,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"tgB" = (
+/obj/machinery/door/airlock/highsecurity{
+ req_one_access = null
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/shadekin)
+"tgP" = (
+/obj/structure/table/rack,
+/obj/item/plastique,
+/obj/item/plastique,
+/obj/item/plastique,
+/obj/item/plastique,
+/obj/item/plastique,
+/obj/item/plastique,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"tgQ" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"thj" = (
+/obj/effect/wingrille_spawn/reinforced/polarized{
+ id = "darkdormtint"
+ },
+/turf/simulated/floor/plating,
+/area/shadekin)
+"thq" = (
+/obj/structure/sign/directions/medical{
+ dir = 4
+ },
+/obj/structure/sign/directions/evac{
+ pixel_y = 10
+ },
+/turf/unsimulated/wall,
+/area/centcom/main_hall)
+"thC" = (
+/obj/structure/table/steel,
+/obj/machinery/recharger,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"thE" = (
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/centcom/command)
+"thO" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Thunderdome";
+ req_access = list(101)
+ },
+/obj/machinery/door/blast/regular{
+ id = "crescent_thunderdome";
+ name = "Thunderdome"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/tdome)
+"tiU" = (
+/obj/structure/table/marble,
+/obj/item/material/knife/butch,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/item/material/kitchen/rollingpin,
+/obj/item/material/knife{
+ pixel_x = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"tjr" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"tjE" = (
+/obj/item/robot_parts/robot_suit,
+/obj/item/robot_parts/r_leg,
+/obj/item/robot_parts/r_arm,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"tkj" = (
+/obj/machinery/computer/rdservercontrol{
+ badmin = 1;
+ name = "Master R&D Server Controller"
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"tmh" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"tmU" = (
+/obj/structure/closet/wardrobe/white,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"tnm" = (
+/obj/structure/table/standard,
+/obj/item/soap/deluxe,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/shuttle/trade)
+"tnB" = (
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/command)
+"tnE" = (
+/obj/machinery/door/window/southright{
+ name = "Cargo Hold";
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"tnP" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"toj" = (
+/obj/structure/flight_left{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"tpf" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-03"
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Subversive Intercom";
+ pixel_x = -32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"tpk" = (
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/mob/living/silicon/decoy{
+ name = "A.L.I.C.E."
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/command)
+"tpm" = (
+/obj/item/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = 32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"tpr" = (
+/obj/item/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = -32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"tpx" = (
+/obj/machinery/recharge_station,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"tpB" = (
+/obj/item/toy/plushie/white_cat{
+ pixel_x = 26;
+ pixel_y = 11
+ },
+/obj/structure/railing/overhang/hazard,
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"tpI" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/chem_dispenser/ninja,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja_dojo/dojo)
+"tpT" = (
+/obj/structure/table/holotable,
+/obj/machinery/readybutton,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"tqy" = (
+/obj/structure/table/standard,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"tre" = (
+/obj/structure/bed/chair/office/dark,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja_dojo/dojo)
+"trW" = (
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/obj/structure/table/marble,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/wizard_station)
+"trY" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/storage/toolbox/syndicate{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/random/tech_supply,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja_dojo/dojo)
+"tsG" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_theatre)
+"tsY" = (
+/obj/machinery/door/airlock/glass{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Arrivals Processing"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"ttf" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/effect/floor_decal/corner/orange/full{
+ dir = 8
+ },
+/obj/item/reagent_containers/glass/bucket,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"ttq" = (
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/drinks/glass2/square,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/centcom/bar)
+"ttr" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/unsimulated/wall,
+/area/centcom/suppy)
+"ttG" = (
+/obj/structure/undies_wardrobe,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja_dojo/dojo)
+"tuj" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/escape/centcom)
+"tuy" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/pen{
+ pixel_y = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"tvl" = (
+/obj/structure/closet/emcloset,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"two" = (
+/obj/item/bikehorn/rubberducky,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/specops)
+"twG" = (
+/obj/effect/landmark/darkspawn,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"txl" = (
+/obj/structure/table/rack,
+/obj/item/gun/energy/xray,
+/obj/item/gun/energy/xray,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"txA" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"txB" = (
+/obj/machinery/door/airlock/glass{
+ name = "Dock"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"txU" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/bookcase,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"txV" = (
+/obj/machinery/shower{
+ dir = 8;
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/structure/curtain/open/shower/medical,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ninja_dojo/dojo)
+"tyg" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"tyq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ id = "skipjackshutters";
+ name = "Skipjack Blast Shielding"
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"tyC" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/unsimulated/floor{
+ icon_state = "grass0";
+ name = "grass"
+ },
+/area/wizard_station)
+"tBg" = (
+/obj/machinery/door/airlock/multi_tile/metal/mait{
+ dir = 2;
+ name = "Maintenance Access"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"tBo" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"tCi" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/shadekin)
+"tCn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"tCw" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"tDj" = (
+/obj/machinery/door/airlock/hatch{
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/skipjack)
+"tDo" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "trade_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch";
+ req_access = list(13)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"tDu" = (
+/obj/structure/table/standard,
+/obj/item/roller,
+/obj/item/roller{
+ pixel_y = 8
+ },
+/obj/item/roller{
+ pixel_y = 16
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"tDz" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"tDA" = (
+/obj/structure/closet/wardrobe/black,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"tDN" = (
+/obj/structure/table/steel,
+/obj/item/clothing/glasses/regular,
+/obj/item/clothing/glasses/regular,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"tEd" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"tEF" = (
+/obj/machinery/door/airlock/hatch{
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/skipjack)
+"tEY" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"tFW" = (
+/obj/structure/table/standard,
+/obj/machinery/cash_register/civilian{
+ dir = 8
+ },
+/turf/simulated/floor/lino,
+/area/shadekin)
+"tGu" = (
+/obj/item/toy/plushie/mouse{
+ pixel_x = 10;
+ pixel_y = -4
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1;
+ layer = 3
+ },
+/obj/item/toy/plushie/deer,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"tIw" = (
+/obj/structure/closet/secure_closet/bar,
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/centcom/bar)
+"tIG" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"tJN" = (
+/obj/item/extinguisher,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"tKV" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"tLx" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"tMa" = (
+/obj/effect/forcefield{
+ desc = "You can't get in. Heh.";
+ invisibility = 60;
+ layer = 1;
+ name = "Blocker"
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/main_hall)
+"tMh" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"tMV" = (
+/obj/item/tool/wrench,
+/obj/item/mop,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"tMW" = (
+/obj/structure/grille/rustic{
+ health = 25;
+ name = "reinforced grille"
+ },
+/obj/structure/window/reinforced/survival_pod,
+/obj/structure/window/reinforced/survival_pod{
+ dir = 1
+ },
+/obj/structure/window/plastitanium/full,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"tNc" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"tNf" = (
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/wizard_station)
+"tOU" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"tOX" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/item/tool/crowbar,
+/obj/item/suit_cooling_unit,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"tPY" = (
+/obj/machinery/vending/fishing,
+/obj/effect/floor_decal/corner/green/diagonal,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/shadekin)
+"tRy" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "syndieshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"tRR" = (
+/obj/structure/morgue{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"tSi" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/terminal)
+"tTO" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"tTY" = (
+/turf/simulated/shuttle/wall/voidcraft/green,
+/area/shadekin)
+"tUe" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/item/storage/box/wormcan,
+/obj/item/storage/box/wormcan,
+/obj/item/storage/box/wormcan/sickly,
+/obj/item/storage/box/wormcan/sickly,
+/obj/item/storage/box/wormcan/deluxe,
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/shadekin)
+"tUH" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Dock"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"tVg" = (
+/obj/machinery/gibber,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/bar)
+"tVq" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/bar)
+"tVX" = (
+/obj/structure/sign/directions/ai_core{
+ dir = 4;
+ pixel_y = -5
+ },
+/turf/simulated/wall/r_wall,
+/area/shadekin)
+"tWr" = (
+/obj/machinery/door/airlock/hatch{
+ req_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/shuttle/trade)
+"tXH" = (
+/obj/structure/bed/chair,
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport1/centcom)
+"tXK" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"tYa" = (
+/obj/structure/closet/wardrobe/grey,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"tZi" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ pixel_y = 3
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/shuttle/trade)
+"tZu" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome)
+"tZS" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/structure/table/holotable,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/suit/armor/tdome/red,
+/obj/item/holo/esword/red,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"tZT" = (
+/obj/structure/bed/chair/comfy/red,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"uaj" = (
+/obj/structure/catwalk,
+/obj/random/trash,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"uam" = (
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"uas" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/item/ammo_magazine/m45/flash,
+/obj/item/ammo_magazine/m45/flash,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"uaO" = (
+/obj/machinery/porta_turret{
+ anchored = 0;
+ check_records = 0;
+ enabled = 0;
+ req_one_access = list(103);
+ use_power = 0
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"ubv" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "supply_shuttle";
+ req_one_access = list(13,31);
+ tag_door = "supply_shuttle_hatch";
+ pixel_y = 20
+ },
+/obj/effect/shuttle_landmark/southern_cross/supply_offsite,
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"uct" = (
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"udo" = (
+/obj/item/toy/chess/queen_black,
+/turf/simulated/floor/holofloor/bmarble{
+ color = "teal"
+ },
+/area/holodeck/source_chess)
+"ueJ" = (
+/obj/machinery/biogenerator,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"ufm" = (
+/obj/structure/flora/ausbushes/leafybush,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/shadekin)
+"ufx" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 2;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_basketball)
+"ugr" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Special Operations";
+ req_access = list(103)
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/specops)
+"ugt" = (
+/obj/structure/flora/grass/green,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"uhi" = (
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/bar)
+"uhT" = (
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"uiw" = (
+/obj/structure/table/standard,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = -32
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"uiI" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"uiU" = (
+/obj/machinery/button/remote/airlock{
+ id = "darkdorm4";
+ name = "Bolt Control";
+ specialfunctions = 4;
+ pixel_y = 25
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"uiY" = (
+/obj/machinery/vending/assist{
+ contraband = null;
+ name = "AntagCorpVend";
+ products = list(/obj/item/assembly/prox_sensor=5,/obj/item/assembly/signaler=4,/obj/item/assembly/infra=4,/obj/item/assembly/prox_sensor=4,/obj/item/handcuffs=8,/obj/item/flash=4,/obj/item/cartridge/signal=4,/obj/item/clothing/glasses/sunglasses=4)
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"uju" = (
+/obj/structure/table/rack,
+/obj/item/gun/projectile/automatic/l6_saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"ujv" = (
+/obj/structure/closet/crate/medical,
+/obj/item/storage/firstaid/regular{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = 5
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = 5
+ },
+/obj/item/storage/firstaid/o2{
+ layer = 2.8;
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/storage/box/masks,
+/obj/item/storage/box/gloves{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/toxin,
+/obj/item/storage/firstaid/fire{
+ layer = 2.9;
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/storage/firstaid/adv{
+ pixel_x = -2
+ },
+/obj/item/reagent_containers/blood/empty,
+/obj/item/reagent_containers/blood/empty,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"ujw" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/wall,
+/area/space)
+"ujD" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"ukg" = (
+/obj/structure/table/rack,
+/obj/item/storage/toolbox/syndicate{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"uku" = (
+/obj/structure/table/rack,
+/obj/item/storage/belt/utility/full,
+/obj/item/multitool,
+/obj/machinery/light/small,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"ukZ" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"ulb" = (
+/obj/structure/table/rack,
+/obj/item/storage/belt/utility/full,
+/obj/item/multitool,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"unf" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/obj/random/powercell,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja_dojo/dojo)
+"unu" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/mounted/energy_blade,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja_dojo/dojo)
+"unx" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"unA" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/fabricator/energy_net,
+/obj/item/rig_module/vision/multi,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ninja_dojo/dojo)
+"unY" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ninja_dojo/dojo)
+"uoc" = (
+/obj/structure/table/steel,
+/obj/item/flashlight/lamp,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"uoS" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"upM" = (
+/turf/unsimulated/floor{
+ icon_state = "asteroid"
+ },
+/area/centcom/terminal)
+"uqI" = (
+/obj/machinery/sleep_console,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ninja_dojo/dojo)
+"uqP" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"urp" = (
+/obj/structure/table/rack,
+/obj/item/rig_module/grenade_launcher,
+/obj/item/rig_module/grenade_launcher,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"ury" = (
+/obj/machinery/gateway{
+ density = 0;
+ dir = 6
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"use" = (
+/obj/structure/table/woodentable,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/pen{
+ pixel_y = 4
+ },
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"usK" = (
+/obj/item/stool/padded,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"usZ" = (
+/turf/unsimulated/wall,
+/area/centcom/bar)
+"utc" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"uvq" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/obj/structure/handrail{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/shuttle/transport1/centcom)
+"uvs" = (
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/shuttle/merchant)
+"uvR" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/adv{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/adv,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ninja_dojo/dojo)
+"uvZ" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/table/rack,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"uwa" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"uwo" = (
+/obj/machinery/space_heater,
+/turf/unsimulated/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/ninja_dojo/dojo)
+"uxc" = (
+/obj/structure/undies_wardrobe,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"uxd" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "escape_pod_1_recovery";
+ pixel_x = -25;
+ pixel_y = 25;
+ req_one_access = list(13);
+ tag_door = "escape_pod_1_recovery_hatch";
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"uxu" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/terminal)
+"uxC" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"uyy" = (
+/obj/machinery/atmospherics/unary/freezer{
+ icon_state = "freezer"
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"uAf" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 1;
+ start_pressure = 740
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"uBb" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"uCB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"uCG" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microwave,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"uCQ" = (
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/centcom/evac)
+"uEh" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/turf/simulated/shuttle/plating,
+/area/centcom/evac)
+"uEv" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"uEH" = (
+/obj/effect/forcefield{
+ desc = "You can't get in. Heh.";
+ invisibility = 60;
+ layer = 1;
+ name = "Blocker"
+ },
+/obj/machinery/light,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/main_hall)
+"uEJ" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"uFo" = (
+/obj/structure/table/wooden_reinforced,
+/obj/item/card/id/gold/captain/spare,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"uGt" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"uHg" = (
+/obj/machinery/door/airlock/command{
+ name = "Thunderdome Administration";
+ req_access = list(102)
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome)
+"uHn" = (
+/obj/machinery/gateway{
+ dir = 1
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"uIe" = (
+/obj/effect/shuttle_landmark/southern_cross/large_escape_pod1/offsite,
+/turf/simulated/shuttle/plating,
+/area/shuttle/large_escape_pod1/centcom)
+"uIW" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"uJG" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"uKl" = (
+/obj/structure/table/reinforced,
+/obj/item/tool/crowbar,
+/obj/item/tool/screwdriver,
+/obj/item/tool/wrench,
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"uKv" = (
+/obj/structure/sign/warning/docking_area,
+/turf/unsimulated/wall,
+/area/centcom/terminal)
+"uKP" = (
+/obj/item/storage/box/evidence,
+/obj/item/folder/red,
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"uLx" = (
+/obj/machinery/door/window{
+ dir = 2;
+ name = "AI Core Door";
+ req_access = list(109)
+ },
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/command)
+"uLR" = (
+/obj/machinery/vending/snack,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"uMq" = (
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/skipjack)
+"uMw" = (
+/obj/machinery/door/airlock/hatch{
+ req_one_access = null;
+ name = "T--s-il Stor-g-";
+ desc = "The label on the airlock appears extensively damaged"
+ },
+/obj/item/tape/engineering,
+/turf/simulated/shuttle/floor/black,
+/area/shadekin)
+"uNb" = (
+/obj/machinery/vending/snix,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"uNs" = (
+/obj/machinery/petrification{
+ dir = 1;
+ pixel_y = 23
+ },
+/obj/machinery/light/broken{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"uNQ" = (
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"uNS" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_basketball)
+"uOk" = (
+/obj/structure/flora/ausbushes/genericbush,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"uOw" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"uOy" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Special Operations";
+ req_access = list(103)
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"uOU" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"uPy" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/skipjack)
+"uPC" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/storage/box,
+/obj/item/storage/box,
+/obj/item/storage/box,
+/obj/item/storage/box,
+/obj/item/storage/box,
+/obj/item/storage/box,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"uPL" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/terminal)
+"uQa" = (
+/obj/machinery/recharge_station,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"uQS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ id = "skipjackshutters";
+ name = "Skipjack Blast Shielding"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"uQV" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"uRl" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"uRs" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"uSf" = (
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/escape/centcom)
+"uSG" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/machinery/appliance/cooker/grill,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"uTg" = (
+/obj/structure/table/steel,
+/obj/item/deck/cards,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"uTl" = (
+/turf/simulated/shuttle/wall/no_join,
+/area/shuttle/escape/centcom)
+"uTu" = (
+/obj/structure/bed/chair/comfy/teal,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/command)
+"uTB" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"uTV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/structure/largecrate/hoverpod,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"uUs" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"uUP" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/skipjack)
+"uUT" = (
+/obj/structure/table/standard{
+ name = "plastic table frame"
+ },
+/obj/item/reagent_containers/glass/bucket,
+/obj/item/reagent_containers/glass/bucket,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"uWe" = (
+/obj/machinery/door/airlock/maintenance/int{
+ name = "Comfortable Dormitory";
+ id_tag = "darkdorm3"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/wood,
+/area/shadekin)
+"uXa" = (
+/obj/structure/table/rack,
+/obj/item/lightreplacer,
+/obj/item/lightreplacer,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"uXj" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "large_escape_pod_1_recovery";
+ pixel_x = -25;
+ pixel_y = -25;
+ req_one_access = list(13);
+ tag_door = "large_escape_pod_1_recovery_hatch";
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"uXk" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"uXF" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"uXT" = (
+/obj/machinery/vending/cigarette{
+ name = "hacked cigarette machine";
+ prices = list();
+ products = list(/obj/item/storage/fancy/cigarettes=10,/obj/item/storage/box/matches=10,/obj/item/flame/lighter/zippo=4,/obj/item/clothing/mask/smokable/cigarette/cigar/havana=2)
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"uXV" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/body_scanconsole,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/skipjack)
+"uYq" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/glasses/square,
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"uYt" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"uYD" = (
+/obj/effect/floor_decal/corner/green/diagonal,
+/obj/structure/table/rack,
+/obj/item/material/fishing_rod/modern/cheap{
+ pixel_y = 10
+ },
+/obj/item/material/fishing_rod/modern/cheap{
+ pixel_y = 5
+ },
+/obj/item/material/fishing_rod/modern/cheap,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 11;
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -27
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "Maintfish";
+ name = "Bait and Tackle Gate";
+ pixel_x = -25;
+ dir = 4;
+ pixel_y = -14
+ },
+/turf/simulated/floor/tiled/old_tile/yellow,
+/area/shadekin)
+"uZf" = (
+/obj/machinery/light/small/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/lino,
+/area/shadekin)
+"uZA" = (
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"var" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/reagent_containers/glass/bucket{
+ amount_per_transfer_from_this = 50
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"vaF" = (
+/mob/living/simple_mob/animal/passive/tindalos,
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/space)
+"vaG" = (
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/skipjack)
+"vaR" = (
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"vco" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"vcz" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"vcZ" = (
+/obj/item/mecha_parts/mecha_equipment/teleporter,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/structure/table/steel_reinforced,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"vda" = (
+/obj/item/toy/plushie/face_hugger,
+/obj/item/toy/plushie/moth{
+ pixel_x = -15;
+ pixel_y = 9
+ },
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"vde" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/fire{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/storage/firstaid/fire,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"vdG" = (
+/obj/effect/floor_decal/corner/red/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"vdJ" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/item/tank/nitrogen,
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"vej" = (
+/obj/machinery/computer/station_alert,
+/turf/simulated/shuttle/floor/black,
+/area/centcom/evac)
+"veN" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"veQ" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"veR" = (
+/obj/machinery/optable,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"vfc" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"vfs" = (
+/obj/machinery/sleep_console,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"vfE" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 1;
+ start_pressure = 740
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"vfK" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"vfS" = (
+/obj/structure/table/wooden_reinforced,
+/obj/machinery/button/remote/blast_door{
+ id = "CREED";
+ name = "Spec Ops Ready Room";
+ pixel_y = 15;
+ req_access = list(11)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "ASSAULT-M";
+ name = "Mech Storage";
+ pixel_x = -5;
+ req_access = list(11)
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "ASSAULT-W";
+ name = "Weapon Storage";
+ pixel_x = 5;
+ req_access = list(11)
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/creed)
+"vgS" = (
+/obj/structure/frame/computer,
+/obj/machinery/light,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"vhz" = (
+/obj/item/camera{
+ desc = "A one use - polaroid camera. 30 photos left.";
+ name = "detectives camera";
+ pictures_left = 30;
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"vhN" = (
+/obj/item/toy/plushie/orange_cat{
+ pixel_x = 15;
+ pixel_y = -4
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1;
+ layer = 3
+ },
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"viA" = (
+/obj/machinery/body_scanconsole,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"viF" = (
+/obj/machinery/atmospherics/unary/cryo_cell{
+ layer = 3.3
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"vju" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"vjT" = (
+/obj/machinery/vending/donksoft,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"vkl" = (
+/obj/structure/frame/computer,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"vkA" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/snacks/soylenviridians,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"vkZ" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"vlF" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/head/bearpelt,
+/obj/item/clothing/head/bowler,
+/obj/item/clothing/head/caphat/cap,
+/obj/item/clothing/head/beaverhat,
+/obj/item/clothing/head/beret/centcom,
+/obj/item/clothing/head/beret/sec,
+/obj/item/clothing/head/collectable/kitty,
+/obj/item/clothing/head/collectable/kitty,
+/obj/item/clothing/head/collectable/kitty,
+/obj/item/clothing/head/collectable/rabbitears,
+/obj/item/clothing/head/collectable/rabbitears,
+/obj/item/clothing/head/collectable/rabbitears,
+/obj/item/clothing/head/collectable/petehat,
+/obj/item/clothing/head/collectable/pirate,
+/obj/item/clothing/head/collectable/wizard,
+/obj/item/clothing/head/collectable/xenom,
+/obj/item/clothing/head/cowboy,
+/obj/item/clothing/head/pin/flower/violet,
+/obj/item/clothing/head/pin/flower/blue,
+/obj/item/clothing/head/pin/flower/orange,
+/obj/item/clothing/head/pin/flower/pink,
+/obj/item/clothing/head/philosopher_wig,
+/obj/item/clothing/head/plaguedoctorhat,
+/obj/item/clothing/head/xenos,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"vmA" = (
+/obj/item/toy/plushie/girly_corgi{
+ pixel_x = -12;
+ pixel_y = 7
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"vne" = (
+/obj/effect/step_trigger/teleporter/random{
+ teleport_z = 8;
+ teleport_x_offset = 127;
+ teleport_x = 60;
+ teleport_y = 191;
+ teleport_y_offset = 201;
+ teleport_z_offset = 8
+ },
+/turf/simulated/floor/outdoors/rocks/cetus,
+/area/shadekin)
+"vny" = (
+/obj/structure/closet/crate/freezer/rations,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"voc" = (
+/obj/effect/floor_decal/carpet,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/living)
+"vpa" = (
+/obj/item/trash/cigbutt,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"vpj" = (
+/obj/item/mecha_parts/mecha_equipment/tool/sleeper,
+/obj/item/mecha_parts/mecha_equipment/tool/sleeper,
+/obj/item/mecha_parts/mecha_equipment/tool/syringe_gun,
+/obj/structure/table/steel_reinforced,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"vpu" = (
+/obj/machinery/crystal,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"vpy" = (
+/obj/machinery/vending/medical{
+ pixel_y = -32;
+ req_access = null
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"vpA" = (
+/obj/structure/closet/crate/internals{
+ name = "Mask Crate"
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"vpQ" = (
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"vpV" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"vpY" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"vpZ" = (
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/structure/closet/secure_closet/personal,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/living)
+"vqc" = (
+/obj/mecha/medical/odysseus/loaded,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"vqL" = (
+/obj/structure/closet,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"vqV" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/steel,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/roller,
+/obj/item/defib_kit/compact/combat/loaded,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"vrr" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"vrD" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/material/knife/ritual,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"vsc" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/command)
+"vsn" = (
+/obj/item/inflatable_duck,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"vsC" = (
+/obj/effect/map_effect/portal/line/side_a{
+ dir = 4
+ },
+/obj/effect/map_effect/perma_light/concentrated/incandescent,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"vsI" = (
+/obj/structure/closet/secure_closet/medical_wall{
+ pixel_y = 32;
+ req_access = list(150)
+ },
+/obj/item/bodybag,
+/obj/item/reagent_containers/syringe/antiviral,
+/obj/item/reagent_containers/syringe/antiviral,
+/obj/item/reagent_containers/syringe/antiviral,
+/obj/item/reagent_containers/glass/bottle/antitoxin{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/glass/bottle/inaprovaline{
+ pixel_x = 4;
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/syringe,
+/obj/item/storage/firstaid/combat,
+/obj/item/storage/firstaid/clotting,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"vtq" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"vtu" = (
+/obj/machinery/door/airlock/glass{
+ name = "Arrivals Processing"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/medical)
+"vtR" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/escape/centcom)
+"vum" = (
+/obj/structure/table/standard,
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"vut" = (
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"vvv" = (
+/obj/structure/table/rack,
+/obj/item/shield/energy,
+/obj/item/shield/energy,
+/obj/item/shield/energy,
+/obj/item/shield/energy,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"vvC" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/obj/item/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = 32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"vvF" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/light/small,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/merchant)
+"vvJ" = (
+/obj/machinery/door/window/westleft{
+ name = "Storefront";
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"vvO" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"vvS" = (
+/obj/machinery/vending/event/food/safe,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"vwm" = (
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_desert)
+"vwu" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"vxa" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Courthouse"
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/centcom/command)
+"vxz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"vxG" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/gun/launcher/grenade,
+/obj/item/gun/launcher/grenade,
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"vxJ" = (
+/obj/effect/floor_decal/corner/blue/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_boxingcourt)
+"vyw" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/skipjack)
+"vyK" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "burst_l"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/response_ship)
+"vyW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"vzH" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"vBi" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop,
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"vBE" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/obj/structure/table/holotable,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"vBG" = (
+/obj/machinery/seed_storage/garden,
+/turf/simulated/shuttle/floor/black,
+/area/shadekin)
+"vCt" = (
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/main_hall)
+"vDy" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ id = "skipjackshutters";
+ name = "Skipjack Blast Shielding"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"vDC" = (
+/obj/machinery/vending/cola,
+/turf/simulated/floor/lino,
+/area/shadekin)
+"vDE" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-24"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"vDP" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"vEf" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06"
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_meetinghall)
+"vEq" = (
+/obj/machinery/portable_atmospherics/hydroponics,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"vFi" = (
+/turf/space,
+/area/space)
+"vFp" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "tdomeadmin"
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeadmin)
+"vGb" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"vHC" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"vIs" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"vIG" = (
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/shadekin)
+"vJB" = (
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"vJX" = (
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"vKc" = (
+/obj/item/storage/fancy/cigarettes,
+/obj/structure/table/reinforced,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"vKr" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"vKO" = (
+/obj/structure/table/steel,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"vLN" = (
+/obj/machinery/vending/tool,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"vMV" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_boxingcourt)
+"vNs" = (
+/obj/structure/lattice,
+/obj/structure/flora/lily1,
+/turf/simulated/floor/water/indoors/station,
+/area/shadekin)
+"vNt" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "supply_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch";
+ req_access = list(13)
+ },
+/obj/machinery/conveyor{
+ id = "QMLoad"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"vNF" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/shuttle/escape/centcom)
+"vOq" = (
+/obj/structure/table/bench/steel,
+/obj/effect/landmark{
+ name = "Trader"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/shuttle/trade)
+"vRh" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/item/stool/padded,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"vRr" = (
+/obj/structure/flora/ausbushes/genericbush,
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"vRu" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "centcom_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch";
+ req_access = list(13)
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport1/centcom)
+"vRF" = (
+/obj/machinery/computer/arcade/clawmachine,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"vRK" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"vRO" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/light/small/yellowed,
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"vSG" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/item/kit/paint/ripley/death,
+/obj/item/kit/paint/ripley/flames_blue,
+/obj/item/kit/paint/ripley/flames_red,
+/obj/item/kit/paint/ripley,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"vTs" = (
+/obj/machinery/light,
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"vTu" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"vTw" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"vUe" = (
+/obj/structure/catwalk,
+/obj/machinery/light/small/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/shadekin)
+"vUq" = (
+/obj/machinery/appliance/cooker/oven,
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"vUT" = (
+/obj/structure/table/rack,
+/obj/item/rig_module/mounted/egun,
+/obj/item/rig_module/mounted/egun,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"vUZ" = (
+/obj/item/robot_parts/l_arm,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"vVS" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"vVT" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/skipjack)
+"vWw" = (
+/obj/structure/table/glass,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"vXb" = (
+/obj/structure/holohoop{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"vXY" = (
+/obj/machinery/teleport/station,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"vYh" = (
+/obj/effect/landmark{
+ name = "Holocarp Spawn"
+ },
+/turf/simulated/floor/holofloor/reinforced,
+/area/holodeck/source_wildlife)
+"vYr" = (
+/obj/structure/table/reinforced,
+/obj/item/stamp/centcomm,
+/obj/item/pen,
+/obj/item/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"vYY" = (
+/obj/machinery/body_scanconsole,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"vZs" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"waO" = (
+/obj/structure/table/standard,
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/shuttle/trade)
+"waY" = (
+/obj/machinery/light/yellowed{
+ dir = 4
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"wbJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ layer = 3;
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"wbS" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/firstaid/toxin,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"wcp" = (
+/obj/machinery/account_database{
+ name = "CentComm Accounts database"
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"wcE" = (
+/obj/structure/bed/double/padded,
+/obj/item/bedsheet/double,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"wda" = (
+/obj/machinery/door/airlock/voidcraft{
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"wdG" = (
+/obj/machinery/door/airlock,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/specops)
+"wer" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/snacks/bloodsoup,
+/obj/item/material/kitchen/utensil/fork,
+/obj/item/material/kitchen/utensil/spoon{
+ pixel_x = 2
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"wes" = (
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Cell";
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"weC" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"weG" = (
+/obj/machinery/sleep_console,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"weS" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/regular{
+ pixel_x = 2
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"wfq" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"wfz" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"wfM" = (
+/obj/machinery/door/airlock/silver{
+ name = "Sleeping"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"wgd" = (
+/obj/structure/table/steel,
+/obj/item/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/firstaid/regular,
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/item/storage/firstaid/fire,
+/obj/item/storage/firstaid/toxin,
+/obj/item/storage/firstaid/adv,
+/obj/item/storage/firstaid/clotting,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"wgp" = (
+/obj/machinery/atmospherics/unary/freezer{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"wgu" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"wgy" = (
+/obj/structure/prop/statue/phoron,
+/turf/simulated/floor/outdoors/ice/dark_smooth{
+ can_atmos_pass = 0;
+ nitrogen = 82.1472;
+ oxygen = 21.8366;
+ temperature = 293.15
+ },
+/area/shadekin)
+"whJ" = (
+/obj/effect/floor_decal/corner/green/full,
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"wjl" = (
+/obj/machinery/telecomms/processor/preset_cent,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"wjB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"wkn" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/skipjack)
+"wkF" = (
+/obj/structure/bed/chair,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"wly" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"wlF" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"wlL" = (
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/terminal)
+"wmu" = (
+/obj/item/toy/chess/pawn_black,
+/turf/simulated/floor/holofloor/bmarble{
+ color = "teal"
+ },
+/area/holodeck/source_chess)
+"wmy" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"wmP" = (
+/obj/structure/window/reinforced,
+/turf/unsimulated/wall,
+/area/space)
+"wnz" = (
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"woh" = (
+/obj/machinery/light{
+ dir = 1;
+ layer = 3
+ },
+/obj/machinery/portable_atmospherics/hydroponics/soil,
+/turf/simulated/floor/grass,
+/area/shadekin)
+"woi" = (
+/obj/structure/table/standard,
+/obj/item/handcuffs/legcuffs,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/skipjack)
+"wpf" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"wpF" = (
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"wpP" = (
+/obj/machinery/vending/cola/soft,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"wqS" = (
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"wrf" = (
+/obj/item/toy/plushie/nymph{
+ pixel_x = -14;
+ pixel_y = -13
+ },
+/obj/structure/railing/overhang/hazard{
+ dir = 1;
+ layer = 3
+ },
+/obj/item/toy/plushie/borgplushie/scrubpuppy,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"wrv" = (
+/obj/machinery/sleep_console,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"wrY" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = -4
+ },
+/obj/item/tool/wrench,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"wsh" = (
+/obj/machinery/teleport/hub,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"wss" = (
+/obj/machinery/body_scanconsole,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"wto" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ pixel_y = -32
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/escape/centcom)
+"wtW" = (
+/obj/structure/railing/overhang/hazard{
+ dir = 8
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"wuk" = (
+/obj/structure/table/rack,
+/obj/item/gun/energy/gun,
+/obj/item/gun/energy/gun,
+/obj/item/gun/energy/gun,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"wum" = (
+/obj/machinery/vending/loadout/loadout_misc,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"wuy" = (
+/obj/structure/table/standard,
+/obj/item/deck/cards,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/skipjack)
+"wvj" = (
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/suppy)
+"wvJ" = (
+/obj/machinery/computer/shuttle_control/multi/merchant{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"wwb" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"wwv" = (
+/obj/effect/landmark{
+ name = "tdome1"
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome/tdome1)
+"wwz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ id = "skipjackshutters";
+ name = "Skipjack Blast Shielding"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/skipjack)
+"wxk" = (
+/obj/machinery/computer/timeclock/premade/south,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/terminal)
+"wxm" = (
+/obj/machinery/door/airlock{
+ name = "Unit 1"
+ },
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"wxC" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_basketball)
+"wys" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "tradestarshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"wzi" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/wall,
+/area/space)
+"wAh" = (
+/obj/machinery/light/small,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/skipjack)
+"wAJ" = (
+/obj/structure/table/standard,
+/obj/item/surgical/circular_saw{
+ pixel_y = 8
+ },
+/obj/item/surgical/hemostat,
+/obj/item/surgical/scalpel,
+/obj/item/stack/medical/advanced/bruise_pack,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/skipjack)
+"wBd" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/flasher{
+ id = "syndieflash";
+ pixel_x = -28
+ },
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"wBp" = (
+/obj/machinery/chem_master,
+/obj/effect/floor_decal/corner/paleblue{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"wBv" = (
+/obj/machinery/door/airlock/maintenance/command{
+ req_one_access = null;
+ name = "Bridge"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"wCz" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/random/tech_supply,
+/obj/item/weldpack,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"wCB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"wDE" = (
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/main_hall)
+"wDN" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "tradestarshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"wEZ" = (
+/obj/item/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = -32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"wFA" = (
+/obj/structure/window/reinforced/holowindow,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"wFC" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/button/flasher{
+ id = "syndieflash";
+ name = "Flasher";
+ pixel_x = 27
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"wGt" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Surgery";
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"wGY" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "wood"
+ },
+/area/centcom/bar)
+"wHJ" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"wIz" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"wJB" = (
+/obj/structure/table/rack,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/shoes/brown,
+/obj/item/clothing/suit/armor/tdome/green,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/melee/baton/loaded,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/tdome)
+"wKx" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"wKW" = (
+/turf/simulated/floor/outdoors/mud/cetus,
+/area/shadekin)
+"wLc" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"wLq" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "tradeportshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"wLx" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/shadekin)
+"wLB" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "carpet"
+ },
+/area/centcom/command)
+"wMc" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"wMf" = (
+/obj/machinery/autolathe{
+ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however...";
+ hacked = 1;
+ name = "Unlocked Autolathe"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/specops)
+"wMr" = (
+/obj/machinery/vending/emergencyfood/filled,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"wMD" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/lino,
+/area/holodeck/source_meetinghall)
+"wMF" = (
+/turf/simulated/floor/holofloor/lino,
+/area/holodeck/source_meetinghall)
+"wMM" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_boxingcourt)
+"wNh" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/steel,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"wNF" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/command)
+"wNO" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/item/gun/projectile/shotgun/pump/combat,
+/obj/item/gun/projectile/shotgun/pump/combat,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"wOe" = (
+/obj/structure/morgue{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/full{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"wOf" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/cell_charger,
+/obj/item/cell/high,
+/obj/item/cell/high,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"wOr" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/wizard_station)
+"wOF" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"wOJ" = (
+/obj/item/bedsheet/rd,
+/obj/structure/bed/padded,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/skipjack)
+"wOK" = (
+/obj/machinery/door/airlock/hatch{
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/skipjack)
+"wPf" = (
+/obj/machinery/vending/blood{
+ req_access = null
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"wPA" = (
+/obj/structure/table/reinforced,
+/obj/item/aicard,
+/obj/item/stamp/centcomm,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"wPR" = (
+/turf/simulated/floor/holofloor/space,
+/area/holodeck/source_space)
+"wQZ" = (
+/obj/random/pottedplant,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"wRt" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"wRX" = (
+/obj/machinery/clonepod,
+/turf/simulated/shuttle/floor/white,
+/area/centcom/evac)
+"wRY" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/simulated/floor/tiled/freezer,
+/area/shadekin)
+"wSi" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/closet/secure_closet/hydroponics{
+ locked = 0
+ },
+/turf/simulated/floor/plating{
+ icon_state = "dmg1"
+ },
+/area/shadekin)
+"wSo" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/specops)
+"wSv" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/bar)
+"wSE" = (
+/obj/structure/sign/directions/cargo{
+ dir = 8
+ },
+/obj/structure/sign/directions/security{
+ dir = 8;
+ pixel_y = -10
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 8;
+ pixel_y = 10
+ },
+/turf/unsimulated/wall,
+/area/centcom/main_hall)
+"wSI" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"wSS" = (
+/obj/machinery/optable,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/skipjack)
+"wTM" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"wTT" = (
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"wTX" = (
+/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill,
+/obj/item/mecha_parts/mecha_equipment/tool/cable_layer,
+/obj/structure/table/steel_reinforced,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/specops)
+"wVn" = (
+/obj/machinery/door/airlock/silver{
+ name = "Toilet"
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/shuttle/trade)
+"wVE" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-10"
+ },
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"wWS" = (
+/obj/effect/floor_decal/corner/paleblue,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"wXN" = (
+/obj/structure/table/woodentable,
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/obj/item/ore/slag{
+ desc = "Well at least Arthur doesn't have to share now...";
+ name = "pet rock"
+ },
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/wizard_station)
+"wXW" = (
+/obj/structure/table/rack,
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/grenade/chem_grenade/metalfoam,
+/obj/item/grenade/chem_grenade/metalfoam,
+/obj/item/grenade/chem_grenade/metalfoam,
+/obj/item/grenade/chem_grenade/metalfoam,
+/obj/item/grenade/chem_grenade/metalfoam,
+/obj/item/grenade/chem_grenade/metalfoam,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"wYl" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/head/greenbandana,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/security)
+"wZw" = (
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"wZL" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/response_ship)
+"xbe" = (
+/obj/item/toy/plushie/goose,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"xbZ" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"xcM" = (
+/obj/structure/window/reinforced/holowindow,
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"xdo" = (
+/obj/machinery/seed_extractor,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"xdD" = (
+/obj/structure/table/standard,
+/obj/item/surgical/cautery,
+/obj/item/surgical/retractor,
+/obj/item/reagent_containers/glass/bottle/stoxin,
+/obj/item/reagent_containers/glass/bottle/stoxin,
+/obj/item/reagent_containers/syringe,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/skipjack)
+"xdP" = (
+/obj/machinery/door/airlock/glass{
+ name = "Arrivals Processing"
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"xeq" = (
+/obj/machinery/door/airlock/maintenance/common{
+ name = "Lockers"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"xew" = (
+/turf/simulated/floor/holofloor/bmarble{
+ color = "teal"
+ },
+/area/holodeck/source_chess)
+"xfB" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/machinery/door/airlock/freezer,
+/turf/simulated/floor/tiled/freezer,
+/area/shadekin)
+"xfJ" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ name = "Dormitories"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"xfW" = (
+/obj/machinery/disposal/wall{
+ dir = 4;
+ pixel_x = -37
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/shadekin)
+"xgL" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/lino,
+/area/holodeck/source_meetinghall)
+"xgQ" = (
+/obj/structure/salvageable/console{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"xiw" = (
+/obj/structure/closet/wardrobe/captain,
+/obj/item/gun/projectile/revolver/mateba,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"xiE" = (
+/obj/structure/closet{
+ name = "custodial"
+ },
+/obj/item/mop,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/reagent_containers/glass/bucket,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"xjH" = (
+/obj/structure/table/rack,
+/obj/item/storage/toolbox/mechanical,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"xkM" = (
+/obj/structure/mopbucket,
+/turf/simulated/shuttle/floor/voidcraft/dark,
+/area/shuttle/syndicate)
+"xlm" = (
+/obj/machinery/optable,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"xls" = (
+/obj/effect/wingrille_spawn/reinforced,
+/turf/simulated/floor/plating,
+/area/shadekin)
+"xmx" = (
+/turf/simulated/shuttle/plating,
+/area/shuttle/escape_pod3/centcom)
+"xne" = (
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/main_hall)
+"xnG" = (
+/obj/structure/bed/chair/sofa/corp/left,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"xoq" = (
+/obj/structure/table/steel,
+/obj/item/material/knife{
+ pixel_x = -6
+ },
+/obj/item/reagent_containers/syringe/drugs{
+ pixel_x = 3;
+ pixel_y = 9
+ },
+/obj/item/reagent_containers/syringe/drugs{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/syringe/drugs{
+ pixel_x = 3;
+ pixel_y = -1
+ },
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"xoz" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/donkpockets,
+/turf/simulated/floor/carpet,
+/area/shuttle/merchant)
+"xoZ" = (
+/obj/item/radio/electropack,
+/obj/structure/table/steel,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/shuttle/syndicate)
+"xpG" = (
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"xpW" = (
+/obj/structure/table/reinforced,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"xqV" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/kafel_full,
+/area/shadekin)
+"xqZ" = (
+/obj/structure/closet/crate/hydroponics/exotic,
+/turf/simulated/shuttle/floor/black,
+/area/shadekin)
+"xrG" = (
+/obj/machinery/button/remote/blast_door{
+ id = "syndieshutters_infirmary";
+ name = "remote shutter control";
+ pixel_x = -25
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"xsn" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/steel,
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/stack/nanopaste,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"xsR" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/closet/secure_closet/medical_wall{
+ pixel_x = 32;
+ req_access = list(150)
+ },
+/obj/item/tank/anesthetic,
+/obj/item/clothing/mask/breath/medical,
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/gloves/sterile/latex,
+/obj/item/reagent_containers/syringe,
+/obj/item/reagent_containers/glass/bottle/stoxin,
+/obj/item/reagent_containers/glass/bottle/stoxin,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"xsW" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "escape_pod_2_recovery_hatch";
+ locked = 1;
+ name = "Recovery Shuttle Dock 2";
+ req_access = list(13)
+ },
+/turf/simulated/shuttle/floor,
+/area/centcom/evac)
+"xsZ" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/skipjack)
+"xtA" = (
+/obj/structure/dummystairs/hazardledge{
+ dir = 4
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"xtD" = (
+/obj/item/bedsheet/rainbow,
+/obj/structure/bed/padded,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/skipjack)
+"xvH" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 32
+ },
+/obj/machinery/vending/wallmed1{
+ layer = 3.3;
+ name = "Emergency NanoMed";
+ pixel_x = 28
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/bed/chair,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"xwn" = (
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"xxL" = (
+/obj/machinery/light/yellowed{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"xxT" = (
+/obj/structure/curtain/black{
+ icon_state = "open";
+ layer = 2;
+ name = "privacy curtain";
+ opacity = 0;
+ anchored = 1
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Observatory"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"xyj" = (
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/skipjack)
+"xyk" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "tradestarshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/merchant)
+"xys" = (
+/obj/effect/floor_decal/corner/grey/diagonal{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/white,
+/area/shadekin)
+"xyF" = (
+/obj/structure/prop/machine/biosyphon,
+/turf/simulated/floor/tiled/old_tile,
+/area/shadekin)
+"xyK" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "burst_r"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/transport1/centcom)
+"xzt" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/hypospray,
+/obj/item/reagent_containers/hypospray,
+/obj/item/reagent_containers/hypospray,
+/obj/item/reagent_containers/hypospray,
+/obj/item/reagent_containers/hypospray,
+/obj/item/reagent_containers/hypospray,
+/obj/item/storage/box/pillbottles,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"xzB" = (
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"xzH" = (
+/obj/machinery/light/yellowed,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"xzI" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_boxingcourt)
+"xzN" = (
+/obj/item/toy/chewtoy/tall,
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"xzQ" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-20"
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"xAK" = (
+/obj/effect/floor_decal/corner/white/diagonal,
+/obj/structure/table/marble,
+/obj/item/reagent_containers/food/snacks/candiedapple,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"xBh" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/xenos_claw,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/wizard_station)
+"xBl" = (
+/obj/effect/floor_decal/borderfloorblack,
+/obj/effect/floor_decal/corner/black/border,
+/obj/effect/floor_decal/corner/blue/bordercorner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/blue/bordercorner,
+/turf/simulated/floor/tiled/techfloor,
+/area/shadekin)
+"xBr" = (
+/obj/structure/table/rack,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"xCj" = (
+/obj/item/bedsheet/hos,
+/obj/structure/bed/padded,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/skipjack)
+"xCw" = (
+/obj/structure/window/reinforced/holowindow,
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"xDc" = (
+/obj/machinery/autolathe,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"xDR" = (
+/obj/structure/table/standard,
+/obj/item/surgical/bonesetter,
+/obj/item/surgical/bonegel,
+/obj/item/surgical/FixOVein,
+/obj/item/stack/nanopaste,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/skipjack)
+"xER" = (
+/obj/structure/sign/warning/secure_area/armory,
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/centcom/specops)
+"xGF" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"xHd" = (
+/obj/item/camera{
+ name = "Autopsy Camera";
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/paper_bin{
+ pixel_y = -6
+ },
+/obj/item/pen/red{
+ pixel_x = -1;
+ pixel_y = -9
+ },
+/obj/item/pen/blue{
+ pixel_x = 3;
+ pixel_y = -5
+ },
+/obj/structure/table/standard,
+/obj/effect/floor_decal/corner/blue{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"xHf" = (
+/obj/structure/closet/wardrobe/yellow,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"xHC" = (
+/obj/machinery/body_scanconsole,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"xHG" = (
+/obj/structure/table/steel,
+/obj/item/stack/medical/splint,
+/obj/item/stack/medical/splint,
+/obj/item/storage/belt/medical/emt,
+/obj/item/storage/belt/medical/emt,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"xHO" = (
+/obj/structure/table/rack,
+/obj/item/rig_module/chem_dispenser/combat,
+/obj/item/rig_module/chem_dispenser/combat,
+/obj/item/rig_module/chem_dispenser/injector,
+/obj/item/rig_module/chem_dispenser/injector,
+/obj/item/rig_module/device/healthscanner,
+/obj/item/rig_module/device/healthscanner,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"xHX" = (
+/obj/structure/handrail{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/yellow,
+/area/centcom/evac)
+"xHY" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"xIy" = (
+/obj/machinery/computer/shuttle_control{
+ req_access = list(101);
+ shuttle_tag = "Centcom"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport1/centcom)
+"xII" = (
+/obj/structure/bed/pillowpile/teal,
+/turf/simulated/floor/carpet/geo,
+/area/shadekin)
+"xIQ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/steel,
+/obj/item/storage/firstaid/surgery,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"xJi" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/clothing/accessory/stethoscope,
+/obj/item/packageWrap,
+/obj/item/hand_labeler,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/reagent_containers/spray/sterilizine,
+/obj/item/reagent_containers/spray/sterilizine,
+/obj/item/flashlight/pen,
+/obj/item/flashlight/pen,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"xJn" = (
+/obj/machinery/vending/assist,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+"xJr" = (
+/turf/unsimulated/wall/shuttle_bay{
+ dir = 8;
+ name = "Blast Door"
+ },
+/area/centcom/main_hall)
+"xJA" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ health = 1e+006
+ },
+/obj/effect/floor_decal/corner/blue/diagonal{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/centcom/command)
+"xJI" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_thunderdomecourt)
+"xJZ" = (
+/obj/machinery/door/airlock/glass{
+ name = "Bar"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"xLl" = (
+/obj/machinery/optable,
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"xLw" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/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/clothing/gloves/yellow,
+/obj/item/storage/belt/utility/full,
+/obj/item/storage/belt/utility/full,
+/obj/item/storage/belt/utility/full,
+/obj/item/storage/belt/utility/full,
+/obj/item/storage/belt/utility/full,
+/obj/item/storage/belt/utility/full,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"xMb" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"xMO" = (
+/obj/machinery/iv_drip,
+/obj/item/radio/intercom{
+ desc = "Talk through this. Evilly";
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = 32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/simulated/shuttle/floor/voidcraft/light,
+/area/shuttle/syndicate)
+"xNh" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/skipjack)
+"xNJ" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"xNW" = (
+/obj/effect/landmark{
+ name = "Commando"
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"xOK" = (
+/obj/structure/table/steel_reinforced,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/random/plushie,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"xOR" = (
+/turf/unsimulated/wall/shuttle_bay{
+ dir = 8
+ },
+/area/centcom/command)
+"xPh" = (
+/obj/effect/floor_decal/carpet,
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"xPs" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"xPC" = (
+/obj/item/bedsheet/orange,
+/obj/structure/bed/padded,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/skipjack)
+"xQS" = (
+/obj/item/bedsheet/green,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/bed/padded,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/skipjack)
+"xRn" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"xRx" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/button/remote/blast_door{
+ id = "tradebridgeshutters";
+ name = "remote shutter control";
+ pixel_x = 30;
+ req_access = list(150)
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-09";
+ name = "Esteban";
+ pixel_y = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"xSn" = (
+/obj/item/robot_parts/chest,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"xST" = (
+/obj/structure/bed/chair,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/transport1/centcom)
+"xUf" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/item/reagent_containers/glass/bucket,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/bar)
+"xVy" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"xVZ" = (
+/obj/structure/table/standard,
+/obj/item/reagent_containers/syringe/antiviral,
+/obj/item/reagent_containers/syringe/antiviral,
+/obj/item/storage/firstaid/clotting,
+/obj/item/stack/medical/splint,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/skipjack)
+"xWt" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"xWR" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_y = 32
+ },
+/turf/unsimulated/floor{
+ dir = 8;
+ icon_state = "wood"
+ },
+/area/wizard_station)
+"xXm" = (
+/obj/structure/table/rack,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"xYj" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Ship Hatch"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"xYt" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/wizard_station)
+"xYA" = (
+/obj/structure/table/reinforced,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/command)
+"xZe" = (
+/obj/item/toy/plushie/carp/silent,
+/obj/item/toy/plushie/crab{
+ pixel_x = -11;
+ pixel_y = 5
+ },
+/obj/structure/railing/overhang/hazard,
+/turf/simulated/floor/reinforced,
+/area/shadekin)
+"xZf" = (
+/obj/machinery/cell_charger,
+/obj/structure/table/reinforced,
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/administration)
+"yah" = (
+/turf/unsimulated/wall,
+/area/centcom/suppy)
+"yap" = (
+/obj/machinery/light/yellowed,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"yaG" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"yaW" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"ybT" = (
+/turf/simulated/shuttle/wall/dark{
+ hard_corner = 1;
+ join_group = "shuttle_ert"
+ },
+/area/shuttle/response_ship)
+"ycK" = (
+/obj/structure/AIcore/deactivated,
+/turf/simulated/shuttle/floor,
+/area/shuttle/escape/centcom)
+"ydh" = (
+/turf/unsimulated/floor/dark,
+/area/shadekin)
+"ydX" = (
+/obj/machinery/door/airlock/maintenance/common{
+ name = "Cafeteria"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/shadekin)
+"yeg" = (
+/obj/effect/floor_decal/corner/paleblue/full{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/centcom/medical)
+"yfr" = (
+/obj/structure/table/standard,
+/obj/item/storage/box/handcuffs,
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/shuttle/trade)
+"yfA" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/red,
+/area/shuttle/response_ship)
+"yfG" = (
+/obj/structure/table/standard,
+/obj/item/storage/firstaid/adv{
+ pixel_x = 1
+ },
+/obj/item/storage/firstaid/toxin{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/medical_wall{
+ pixel_x = 32;
+ req_access = list(150)
+ },
+/obj/item/storage/firstaid/fire{
+ pixel_x = 1
+ },
+/obj/item/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/firstaid/regular,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/skipjack)
+"yga" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/creed)
+"ygd" = (
+/obj/machinery/vending/cola{
+ name = "hacked Robust Softdrinks";
+ prices = list()
+ },
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"ygl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "syndieshutters_infirmary";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced/full,
+/turf/simulated/shuttle/plating,
+/area/shuttle/syndicate)
+"yhb" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ dir = 4;
+ frequency = 1331;
+ id_tag = "trade2_control";
+ pixel_x = -25;
+ req_access = list(150)
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/merchant)
+"yib" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"yie" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/tdome)
+"yiH" = (
+/turf/unsimulated/floor{
+ icon_state = "lino"
+ },
+/area/tdome/tdomeobserve)
+"yiO" = (
+/obj/structure/table/hardwoodtable,
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 15;
+ pixel_x = 10
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 11;
+ pixel_x = 10
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 7;
+ pixel_x = 10
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = 3;
+ pixel_x = 10
+ },
+/obj/item/reagent_containers/food/drinks/drinkingglass{
+ pixel_y = -1;
+ pixel_x = 10
+ },
+/turf/simulated/floor/lino,
+/area/shadekin)
+"yku" = (
+/obj/item/mop,
+/obj/structure/mopbucket,
+/turf/unsimulated/floor{
+ dir = 5;
+ icon_state = "vault"
+ },
+/area/centcom/specops)
+"ykB" = (
+/obj/structure/closet/crate/medical,
+/obj/item/storage/firstaid/regular{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/regular{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = 5
+ },
+/obj/item/bodybag/cryobag{
+ pixel_x = 5
+ },
+/obj/item/storage/firstaid/o2{
+ layer = 2.8;
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/storage/box/masks,
+/obj/item/storage/box/gloves{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/storage/firstaid/toxin,
+/obj/item/storage/firstaid/fire{
+ layer = 2.9;
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/storage/firstaid/adv{
+ pixel_x = -2
+ },
+/obj/item/reagent_containers/blood/empty,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/obj/item/reagent_containers/blood/OMinus,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/escape/centcom)
+"ykD" = (
+/obj/effect/floor_decal/cetus/andromeda4,
+/turf/simulated/floor/tiled/neutral,
+/area/shadekin)
+"ykN" = (
+/obj/effect/map_effect/portal/line/side_b{
+ dir = 1
+ },
+/obj/effect/map_effect/perma_light/concentrated/incandescent,
+/turf/simulated/floor/carpet/graycarpet,
+/area/shadekin)
+"ykT" = (
+/obj/machinery/vending/sol,
+/turf/simulated/floor/tiled/milspec,
+/area/shadekin)
+
+(1,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+oLs
+oLs
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(2,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+aaa
+err
+fYp
+hgc
+aaa
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+cht
+cht
+dWe
+saZ
+szC
+tpI
+unf
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(3,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+aaa
+esr
+fYp
+hgc
+aaa
+auX
+auX
+auX
+klw
+auX
+auX
+awz
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+cht
+cht
+gav
+hgc
+hgc
+tre
+unu
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+iDJ
+iDJ
+iDJ
+gmI
+aaZ
+aba
+abc
+uct
+abf
+dWK
+pOM
+cPQ
+tqy
+glO
+kqw
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(4,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+aaa
+evp
+fYp
+hgc
+aaa
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+cht
+cht
+dWe
+sgn
+sBF
+trY
+unA
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+jYI
+jYI
+jYI
+jYI
+jYI
+jYI
+sUz
+uct
+uct
+uct
+uct
+uct
+uct
+uct
+uct
+uct
+uct
+uct
+uct
+uct
+uct
+uct
+sUz
+jYI
+jYI
+jYI
+jYI
+jYI
+jYI
+jYI
+ivD
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(5,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+aaa
+aaa
+gav
+aaa
+aaa
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+klw
+auX
+auX
+dWe
+cht
+cht
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+ivD
+ivD
+jYI
+jYI
+jYI
+jYI
+jYI
+jYI
+jYI
+ivD
+uct
+uct
+mOP
+uct
+mOP
+uct
+dNm
+gPT
+uct
+uct
+mOP
+uct
+mOP
+uct
+uct
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+jYI
+ivD
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(6,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+aaa
+aaa
+aaa
+aaa
+cht
+cht
+cht
+aaa
+aaa
+aaa
+aaa
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+dWe
+cht
+cht
+rae
+dWe
+sCn
+sCn
+unY
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+jYI
+jYI
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+uct
+vFp
+vFp
+vFp
+vFp
+vFp
+uct
+eWl
+ngc
+vFp
+vFp
+vFp
+vFp
+vFp
+uct
+ivD
+dcw
+dcw
+dcw
+dcw
+dcw
+ivD
+jYI
+ivD
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(7,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+aaa
+cgL
+cJG
+dLG
+cht
+cht
+cht
+cht
+cht
+iWa
+aaa
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+dWe
+cht
+cht
+cht
+shJ
+sCn
+sCn
+uqI
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+jYI
+jYI
+ivD
+jJf
+jJf
+jJf
+jJf
+jJf
+ivD
+ivD
+ePR
+ePR
+ePR
+ePR
+ePR
+osV
+eRa
+osV
+ePR
+ePR
+ePR
+ePR
+ePR
+ivD
+ivD
+lMT
+lMT
+lMT
+lMT
+lMT
+ivD
+jYI
+ivD
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(8,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+aaa
+cht
+cht
+cht
+cht
+cht
+cht
+cht
+cht
+iWa
+aaa
+kog
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+dWe
+cht
+cht
+cht
+dWe
+sCn
+sCn
+uvR
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+ivD
+uHg
+ivD
+lMT
+lMT
+lMT
+lMT
+lMT
+ivD
+rAL
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+dah
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+rAL
+ivD
+jYI
+jYI
+jYI
+jYI
+jYI
+ivD
+uHg
+ivD
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(9,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+aaa
+cht
+cht
+dNQ
+eAf
+eAf
+eAf
+hMB
+cht
+iWa
+aaa
+krn
+krn
+krn
+krn
+krn
+krn
+krn
+krn
+krn
+krn
+aaa
+cht
+cht
+cht
+aaa
+aaa
+aaa
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+ivD
+jYI
+ivD
+pVz
+pVz
+pVz
+pVz
+pVz
+ivD
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+dah
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+ivD
+lzv
+lzv
+wwv
+wwv
+lzv
+nPf
+jYI
+ivD
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(10,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+aaa
+cit
+cht
+dQA
+eAE
+eAE
+eAE
+hQg
+cht
+cht
+dWe
+krK
+krK
+krK
+krK
+krK
+krK
+krK
+krK
+krK
+krK
+dWe
+cht
+cht
+cht
+cht
+cht
+cht
+oLs
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+ivD
+jYI
+nPf
+pVz
+pVK
+pVK
+pVz
+pVz
+afq
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+dah
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+afq
+lzv
+lzv
+wwv
+wwv
+lzv
+nPf
+jYI
+ivD
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(11,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+aaa
+cnm
+cht
+dQA
+eAE
+eAE
+eAE
+hQg
+cht
+cht
+jKl
+ksb
+ksb
+ksb
+ksb
+ksb
+ksb
+ksb
+ksb
+ksb
+ksb
+jKl
+cht
+cht
+cht
+cht
+cht
+cht
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+ivD
+kPU
+nPf
+pVz
+pVK
+pVK
+pVz
+pVz
+afq
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+yie
+ctj
+tZu
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+afq
+wwv
+wwv
+kmh
+kmh
+wwv
+nPf
+wJB
+ivD
+vFi
+vFi
+fRj
+fRj
+fRj
+fRj
+fRj
+fRj
+fRj
+fRj
+fRj
+fRj
+fRj
+fRj
+fRj
+fRj
+fRj
+mmJ
+mmJ
+mmJ
+mmJ
+mmJ
+mmJ
+mmJ
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(12,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+aaa
+cit
+cht
+dQA
+eAE
+eAE
+eAE
+hQg
+cht
+cht
+dWe
+kuC
+kuC
+kuC
+kuC
+kuC
+kuC
+kuC
+kuC
+ksb
+ksb
+dWe
+oLA
+cht
+cht
+cht
+cht
+cht
+oLs
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+hqE
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+ivD
+kPU
+nPf
+pVK
+lES
+lES
+pVK
+pVK
+afq
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+cJi
+dZP
+cJi
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+afq
+wwv
+wwv
+kmh
+kmh
+wwv
+nPf
+wJB
+ivD
+vFi
+vFi
+fRj
+dGw
+hPo
+dGw
+hsW
+fzK
+fzK
+fzK
+fzK
+fzK
+hsW
+dGw
+hPo
+dGw
+fRj
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+uKv
+vFi
+vFi
+vFi
+vFi
+vFi
+uKv
+vFi
+vFi
+vFi
+vFi
+vFi
+uKv
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(13,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+aaa
+cht
+cht
+dVc
+eAP
+eAP
+eAP
+hRa
+cht
+iWa
+aaa
+kwv
+kwv
+kwv
+kwv
+kwv
+kwv
+kwv
+kwv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cht
+cht
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+ivD
+kPU
+nPf
+pVK
+lES
+lES
+pVK
+pVK
+afq
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+qqr
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+afq
+lzv
+lzv
+wwv
+wwv
+lzv
+nPf
+wJB
+ivD
+vFi
+vFi
+fRj
+fzK
+fzK
+fzK
+fzK
+fzK
+pmG
+eZo
+pmG
+fzK
+fzK
+fzK
+fzK
+fzK
+fRj
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(14,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+aaa
+cht
+cht
+cht
+cht
+cht
+cht
+cht
+iCl
+iWa
+aaa
+kog
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+ntE
+cht
+cht
+cht
+rbV
+dWe
+cht
+cht
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+ivD
+kPU
+nPf
+pVz
+pVK
+pVK
+pVz
+pVz
+afq
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+afq
+lzv
+lzv
+wwv
+wwv
+lzv
+nPf
+wJB
+ivD
+vFi
+vFi
+fRj
+dGw
+hPo
+dGw
+hsW
+fzK
+pmG
+gHz
+pmG
+fzK
+hsW
+dGw
+hPo
+dGw
+fRj
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(15,1,1) = {"
+vFi
+vFi
+vFi
+vFi
+aaa
+cpq
+cht
+cht
+cht
+cht
+cht
+cht
+cht
+iWa
+aaa
+auX
+auX
+auX
+auX
+auX
+klw
+auX
+auX
+dWe
+cht
+cht
+iWa
+cht
+cht
+aaa
+cht
+cht
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+ivD
+kPU
+nPf
+pVz
+pVK
+pVK
+pVz
+pVz
+afq
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+afq
+lzv
+lzv
+lzv
+lzv
+lzv
+ivD
+wJB
+ivD
+vFi
+vFi
+fRj
+fRj
+fRj
+fRj
+fRj
+fzK
+pmG
+hzD
+pmG
+fzK
+fRj
+fRj
+fRj
+fRj
+fRj
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(16,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cht
+cht
+cht
+aaa
+aaa
+aaa
+aaa
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+dWe
+cht
+iWa
+oOc
+pKM
+cht
+sid
+cht
+cht
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+ivD
+jYI
+ivD
+pVz
+pVz
+pVz
+pVz
+pVz
+ivD
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+ivD
+gyJ
+gyJ
+gyJ
+gyJ
+gyJ
+ivD
+jYI
+ivD
+vFi
+vFi
+fRj
+ttf
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+kZe
+aaE
+fRj
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(17,1,1) = {"
+aaa
+aae
+aae
+aae
+aur
+auX
+auX
+aaa
+aaa
+gbB
+aaa
+aaa
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+dWe
+cht
+cht
+iWa
+cht
+cht
+aaa
+cht
+cht
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+ivD
+ivD
+ivD
+kLN
+kLN
+kLN
+kLN
+kLN
+ivD
+rAL
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+gHC
+rAL
+ivD
+exl
+exl
+exl
+exl
+exl
+ivD
+ivD
+ivD
+vFi
+vFi
+fRj
+nIu
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+usK
+fRj
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(18,1,1) = {"
+aaa
+aae
+aur
+aur
+auX
+awz
+auX
+dWe
+eDl
+eDl
+eDl
+dWe
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+nuO
+cht
+cht
+cht
+nuO
+dWe
+cht
+cht
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+jYI
+jYI
+ivD
+lMA
+lMA
+lMA
+lMA
+lMA
+ivD
+ivD
+ePR
+ePR
+ePR
+ePR
+ePR
+ePR
+ePR
+ePR
+ePR
+ePR
+ePR
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+lFl
+lFl
+lFl
+lFl
+vFi
+fRj
+hpU
+fzK
+fzK
+aaA
+fRj
+hsW
+asB
+asB
+fRj
+fzK
+fzK
+fzK
+fzK
+fRj
+upM
+upM
+upM
+mmJ
+iaT
+iaT
+rYb
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(19,1,1) = {"
+aaa
+aae
+aur
+auX
+auX
+auX
+auX
+dWe
+eDl
+eDl
+eDl
+dWe
+auX
+awz
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cht
+cht
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+jYI
+jYI
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+yiH
+lhI
+lhI
+lhI
+lhI
+lhI
+yiH
+yiH
+yiH
+lhI
+lhI
+lhI
+dQs
+pNc
+pNc
+pNc
+lFl
+ioe
+pNc
+pNc
+pNc
+vut
+vut
+vut
+lFl
+lFl
+fRj
+hpU
+fzK
+fzK
+aaB
+hsW
+rRo
+fzK
+fzK
+hsW
+fzK
+fzK
+fzK
+fvh
+fRj
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+cSz
+jqC
+cSz
+vFi
+mmJ
+vFi
+cSz
+jqC
+cSz
+vFi
+mmJ
+vFi
+cSz
+jqC
+cSz
+vFi
+mmJ
+vFi
+cSz
+jqC
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(20,1,1) = {"
+aaa
+aae
+aur
+auX
+awz
+auX
+auX
+aaa
+aaa
+gbB
+gbB
+aaa
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+dWe
+oTl
+cht
+cht
+aaa
+cht
+cht
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+ivD
+ivD
+jYI
+jYI
+jYI
+jYI
+jYI
+jYI
+jYI
+ivD
+yiH
+yiH
+bSp
+yiH
+bSp
+yiH
+yiH
+yiH
+yiH
+yiH
+bSp
+yiH
+dQs
+pNc
+pNc
+pNc
+oUh
+pNc
+pNc
+pNc
+pNc
+vut
+vut
+vut
+vut
+lFl
+fRj
+hpU
+fzK
+fzK
+wYl
+hsW
+rRo
+fzK
+fzK
+hsW
+usK
+aaD
+gDj
+uCG
+fRj
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+cSz
+bsI
+cSz
+vFi
+mmJ
+vFi
+cSz
+bsI
+cSz
+vFi
+mmJ
+vFi
+cSz
+bsI
+cSz
+vFi
+mmJ
+vFi
+cSz
+bsI
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(21,1,1) = {"
+aaa
+aae
+auX
+auX
+auX
+auX
+auX
+auX
+aUC
+mYr
+aUC
+aUC
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+oTT
+pKR
+cht
+sid
+cht
+cht
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+jYI
+jYI
+jYI
+jYI
+jYI
+jYI
+jYI
+kIh
+yiH
+yiH
+yiH
+yiH
+yiH
+yiH
+yiH
+yiH
+yiH
+yiH
+yiH
+yiH
+dQs
+pNc
+pNc
+pNc
+oUh
+pNc
+kFK
+lFl
+lFl
+lFl
+lFl
+vut
+vut
+lFl
+fRj
+fRj
+hsW
+hsW
+fRj
+fRj
+hsW
+asB
+asB
+fRj
+fRj
+fRj
+fRj
+fRj
+fRj
+upM
+upM
+upM
+mmJ
+tsY
+mmJ
+tsY
+mmJ
+cSz
+cSz
+cSz
+wlL
+cSz
+cSz
+mmJ
+cSz
+cSz
+wlL
+cSz
+cSz
+mmJ
+cSz
+cSz
+wlL
+cSz
+cSz
+mmJ
+cSz
+cSz
+wlL
+cSz
+cSz
+cSz
+mmJ
+vFi
+vFi
+vFi
+vFi
+"}
+(22,1,1) = {"
+aaa
+aae
+awz
+auX
+auX
+auX
+auX
+aUC
+aUC
+gjN
+hnj
+eDw
+aUC
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+aaa
+aaa
+aaa
+aaa
+cht
+cht
+cht
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+aam
+aao
+aaq
+odO
+gaa
+yiH
+yiH
+yiH
+yiH
+gaa
+odO
+kYl
+dQs
+pNc
+pNc
+pNc
+oUh
+pNc
+pNc
+dGu
+tMa
+uEH
+lFl
+vut
+vut
+lFl
+fRj
+gHz
+gHz
+fzK
+fzK
+usK
+gHz
+fzK
+fzK
+hsW
+fzK
+fzK
+fzK
+vhz
+fRj
+upM
+upM
+mmJ
+mmJ
+iaT
+iaT
+iaT
+mmJ
+iaT
+pfG
+cSz
+mxg
+cSz
+pfG
+cWK
+pfG
+cSz
+mxg
+cSz
+pfG
+iaT
+pfG
+cSz
+mxg
+cSz
+pfG
+iaT
+pfG
+cSz
+mxg
+cSz
+pfG
+iaT
+mmJ
+cSz
+cSz
+cSz
+vFi
+"}
+(23,1,1) = {"
+aaa
+aae
+auX
+auX
+auX
+auX
+auX
+cLn
+eDw
+aUC
+hoQ
+eDw
+eDw
+aUC
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+oTT
+pKR
+cht
+sid
+cht
+cht
+cht
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+ivD
+thO
+ivD
+thO
+ivD
+ivD
+ivD
+ivD
+pNc
+pNc
+pNc
+nBu
+pNc
+pNc
+lFl
+lFl
+lFl
+lFl
+vut
+vut
+lFl
+fRj
+usK
+gHz
+fzK
+aaC
+gHz
+gHz
+fzK
+fzK
+hsW
+fzK
+fzK
+vfK
+uKP
+fRj
+upM
+upM
+mmJ
+ieC
+iaT
+iaT
+iaT
+eOY
+iaT
+iaT
+rUp
+kZh
+qSQ
+iaT
+iaT
+iaT
+rUp
+kZh
+qSQ
+iaT
+iaT
+iaT
+rUp
+kZh
+qSQ
+iaT
+iaT
+iaT
+rUp
+kZh
+qSQ
+iaT
+iZi
+cSz
+cVU
+hzc
+cSz
+vFi
+"}
+(24,1,1) = {"
+aaa
+aae
+auX
+aUC
+aUC
+aUC
+aUC
+aUC
+eDQ
+gjZ
+hpr
+hSz
+iDH
+aUC
+aUC
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+awz
+auX
+auX
+dWe
+pcw
+cht
+cht
+aaa
+cht
+cht
+cpq
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+xJr
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+pNc
+pNc
+dGu
+tMa
+uEH
+lFl
+vut
+vut
+lFl
+fRj
+fzK
+aaz
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+lmE
+fzK
+gHz
+gHz
+cfJ
+fRj
+upM
+upM
+fVX
+ieC
+iaT
+iaT
+iaT
+eOY
+iaT
+iaT
+cGr
+wgu
+vrr
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+lTh
+mxg
+uPL
+uxu
+jqC
+vFi
+"}
+(25,1,1) = {"
+aaa
+aae
+auX
+auX
+auX
+auX
+cLn
+aUC
+eEZ
+goa
+gpo
+gpo
+gpo
+iXz
+jKF
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+aaa
+aaa
+aaa
+aaa
+cht
+cht
+uwo
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+xJr
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+pNc
+kFK
+lFl
+lFl
+lFl
+lFl
+vut
+vut
+lFl
+fRj
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+hsW
+fzK
+fzK
+mLr
+eZo
+fRj
+mmJ
+mmJ
+mmJ
+caN
+iaT
+iaT
+iaT
+eOY
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iZi
+eTP
+eTP
+dZG
+iaT
+iaT
+iaT
+iZi
+eTP
+eTP
+dZG
+iaT
+iaT
+iaT
+iaT
+hgF
+mxg
+mJR
+tSi
+jqC
+vFi
+"}
+(26,1,1) = {"
+aaa
+aae
+auX
+auX
+auX
+auX
+cNG
+aUC
+eFX
+goa
+gpo
+gpo
+iDU
+iYS
+jKL
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+pcQ
+pOh
+reH
+aaa
+sCy
+aaa
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+xJr
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+pNc
+pNc
+pNc
+pNc
+vut
+vut
+vut
+vut
+lFl
+fRj
+fzK
+fzK
+fzK
+fzK
+fzK
+fzK
+gEP
+fzK
+hsW
+fzK
+fzK
+fzK
+djS
+fRj
+upM
+upM
+mmJ
+mmJ
+iaT
+iaT
+iaT
+mmJ
+eRV
+sRg
+iaT
+sRg
+iaT
+sRg
+iaT
+sRg
+eRV
+cSz
+dzR
+dzR
+cSz
+pfG
+nSo
+pfG
+cSz
+dzR
+dzR
+cSz
+eRV
+sRg
+iaT
+sRg
+itN
+uKv
+cSz
+cSz
+cSz
+vFi
+"}
+(27,1,1) = {"
+aaa
+aae
+auX
+auX
+auX
+auX
+cLn
+aUC
+eHp
+goa
+gpo
+gpo
+gpo
+jeh
+jLL
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+peU
+peU
+peU
+peU
+peU
+ttG
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+xJr
+qUI
+oUh
+pNc
+pNc
+pNc
+lFl
+mff
+pNc
+pNc
+pNc
+vut
+vut
+vut
+lFl
+lFl
+fRj
+fRj
+fzK
+fRj
+fRj
+sbB
+gMu
+gHz
+iTl
+hsW
+fRj
+fRj
+lmE
+fRj
+fRj
+upM
+upM
+upM
+mmJ
+iaT
+iaT
+iaT
+mmJ
+cSz
+cSz
+mmJ
+cSz
+cSz
+cSz
+mmJ
+cSz
+cSz
+cSz
+iaT
+dlR
+cSz
+cSz
+mmJ
+cSz
+cSz
+iaT
+dlR
+cSz
+cSz
+cSz
+mmJ
+cSz
+cSz
+mmJ
+vFi
+vFi
+vFi
+vFi
+"}
+(28,1,1) = {"
+aaa
+aae
+auX
+aUC
+aUC
+aUC
+aUC
+aUC
+eIq
+goE
+gpo
+hUu
+iFu
+aUC
+aUC
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+piQ
+peU
+peU
+peU
+peU
+txV
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+qUI
+lFl
+pNc
+pNc
+pNc
+lFl
+lFl
+lFl
+oUh
+oUh
+oUh
+oUh
+lFl
+lFl
+qUI
+fRj
+khE
+fzK
+fzK
+fRj
+eJj
+eJj
+eJj
+eJj
+sZp
+fRj
+fzK
+fzK
+fzK
+fRj
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+cSz
+tOU
+iaT
+cSz
+vFi
+vFi
+vFi
+cSz
+tOU
+iaT
+cSz
+vFi
+qNq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(29,1,1) = {"
+aaa
+aae
+auX
+auX
+auX
+auX
+auX
+cLn
+eDw
+gpo
+gpo
+eDw
+eDw
+aUC
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+fRj
+khE
+fzK
+fzK
+fRj
+eJj
+eJj
+eJj
+eJj
+sZp
+hsW
+fzK
+fzK
+fzK
+fRj
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+cSz
+dzR
+dzR
+cSz
+vFi
+vFi
+vFi
+cSz
+dzR
+dzR
+cSz
+vFi
+qNq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(30,1,1) = {"
+aaa
+aae
+auX
+auX
+auX
+auX
+auX
+aUC
+aUC
+gvn
+hqk
+eDw
+aUC
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+lFl
+lFl
+eUz
+lFl
+lFl
+lFl
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+fRj
+pod
+fzK
+fzK
+fRj
+eJj
+eJj
+eJj
+eJj
+sZp
+hsW
+fzK
+fzK
+aaF
+fRj
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+qNq
+qNq
+qNq
+qNq
+qNq
+qNq
+qNq
+vFi
+dmo
+uTl
+aFI
+aFI
+uTl
+boQ
+boQ
+boQ
+uTl
+aFI
+aFI
+uTl
+dmo
+dmo
+dmo
+dmo
+dmo
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(31,1,1) = {"
+aaa
+aae
+aur
+aur
+auX
+auX
+auX
+auX
+aUC
+aUC
+aUC
+aUC
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+klw
+auX
+auX
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+dWi
+dWi
+dWi
+lFl
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+fRj
+hcd
+fzK
+fzK
+fRj
+eJj
+eJj
+eJj
+eJj
+eJj
+hsW
+fzK
+qwr
+aaz
+fRj
+upM
+upM
+upM
+mmJ
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+dmo
+dmo
+boQ
+dmo
+azl
+gIQ
+deh
+uEv
+lPM
+bSv
+bSv
+bSv
+guJ
+uEv
+uEv
+kKV
+vtR
+vtR
+vtR
+vNF
+szr
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(32,1,1) = {"
+aaa
+aae
+aur
+aur
+aur
+auX
+auX
+awz
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+oUh
+gja
+oUh
+lFl
+qUI
+lFl
+lFl
+pNc
+pNc
+pNc
+lFl
+lFl
+qUI
+qUI
+oUh
+oUh
+lFl
+oUh
+oUh
+qUI
+fRj
+fRj
+fRj
+fRj
+fRj
+fRj
+nCq
+hsW
+nCq
+fRj
+fRj
+gMu
+kvJ
+hsW
+fRj
+cSz
+cSz
+cSz
+bYM
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+dmo
+azl
+jsR
+uEv
+aGR
+kxV
+uEv
+uEv
+uEv
+uEv
+uEv
+uEv
+uEv
+uEv
+uEv
+uEv
+piW
+uSf
+uSf
+tuj
+vNF
+szr
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(33,1,1) = {"
+aaa
+aae
+aur
+aur
+aur
+aur
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+lFl
+sKa
+sKa
+sKa
+lFl
+oUh
+wSE
+hfU
+pNc
+pNc
+pNc
+hfU
+lFl
+lFl
+oUh
+oUh
+pNc
+pNc
+pNc
+oUh
+oUh
+lFl
+inZ
+pNc
+pNc
+lFl
+lFl
+pNc
+inZ
+pNc
+pNc
+vut
+pNc
+pNc
+pNc
+lFl
+hfU
+inZ
+hfU
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+boQ
+uiw
+lpt
+uEv
+uEv
+kKV
+uEv
+uEv
+uEv
+fpX
+fpX
+fpX
+fpX
+fpX
+uEv
+uEv
+kKV
+jcs
+jcs
+wto
+azl
+dmo
+dmo
+vFi
+vFi
+vFi
+vFi
+"}
+(34,1,1) = {"
+aaa
+aae
+aur
+aur
+aur
+aur
+aur
+auX
+auX
+auX
+auX
+awz
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+auX
+aaa
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+feP
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+hfU
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+nBu
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+txB
+pNc
+pNc
+pNc
+pNc
+pNc
+vut
+pNc
+vut
+pNc
+txB
+pNc
+pNc
+pNc
+iaT
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+boQ
+iEF
+qPX
+qoh
+azl
+azl
+tvl
+uEv
+uEv
+tCw
+tCw
+tCw
+tCw
+tCw
+uEv
+bsZ
+dmo
+dmo
+dmo
+dmo
+dmo
+gmB
+szr
+vFi
+vFi
+vFi
+vFi
+"}
+(35,1,1) = {"
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+bFy
+hfU
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+hfU
+hfU
+hfU
+pNc
+nBu
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+oUh
+pNc
+pNc
+pNc
+pNc
+pNc
+vut
+pNc
+vut
+pNc
+txB
+pNc
+pNc
+pNc
+iaT
+iaT
+iaT
+wxk
+mmJ
+vFi
+vFi
+vFi
+boQ
+huo
+uEv
+oKR
+ycK
+dmo
+vum
+uEv
+uEv
+uEv
+uEv
+oKR
+uEv
+uEv
+uEv
+uEv
+rtM
+kQQ
+rOR
+wly
+dmo
+gmB
+szr
+vFi
+vFi
+vFi
+vFi
+"}
+(36,1,1) = {"
+aab
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+kSi
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+vFi
+vFi
+usZ
+usZ
+usZ
+usZ
+usZ
+usZ
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+hfU
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+nBu
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+txB
+pNc
+pNc
+pNc
+pNc
+pNc
+vut
+pNc
+vut
+pNc
+txB
+pNc
+pNc
+pNc
+iaT
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+boQ
+eHc
+qPX
+bGa
+azl
+azl
+tvl
+uEv
+uEv
+fpX
+fpX
+fpX
+fpX
+fpX
+uEv
+uEv
+nPO
+ePl
+daf
+vfs
+dmo
+gmB
+szr
+vFi
+vFi
+vFi
+vFi
+"}
+(37,1,1) = {"
+aab
+aaf
+awC
+aWP
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+vFi
+usZ
+usZ
+vaR
+xUf
+kTG
+klP
+usZ
+vFi
+vFi
+vFi
+usZ
+usZ
+usZ
+usZ
+usZ
+usZ
+usZ
+pNc
+pNc
+pOI
+lFl
+lFl
+thq
+hfU
+pNc
+pNc
+pNc
+hfU
+lFl
+lFl
+oUh
+oUh
+pNc
+pNc
+pNc
+oUh
+oUh
+lFl
+inZ
+pNc
+pNc
+lFl
+lFl
+pNc
+inZ
+pNc
+rdH
+pNc
+pNc
+vut
+pNc
+lFl
+hfU
+inZ
+hfU
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+boQ
+rBj
+uBb
+uEv
+uEv
+kKV
+uEv
+uEv
+uEv
+tCw
+tCw
+tCw
+tCw
+tCw
+uEv
+uEv
+cYN
+qLu
+qLu
+wpf
+azl
+dmo
+dmo
+vFi
+vFi
+vFi
+vFi
+"}
+(38,1,1) = {"
+aab
+aaf
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+usZ
+usZ
+oXR
+vaR
+vaR
+vaR
+uUT
+usZ
+vFi
+vFi
+vFi
+usZ
+aaX
+aaY
+tIw
+sjZ
+axR
+usZ
+swU
+lxc
+swU
+usZ
+qUI
+lFl
+lFl
+pNc
+pNc
+pNc
+lFl
+lFl
+qUI
+qUI
+oUh
+oUh
+lFl
+oUh
+oUh
+qUI
+qRX
+bcg
+bcg
+bcg
+qRX
+qRX
+vtu
+bcg
+vtu
+qRX
+qRX
+bcg
+bcg
+bcg
+qRX
+cSz
+cSz
+cSz
+rgl
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+dmo
+azl
+neF
+uEv
+jYD
+kxV
+uEv
+uEv
+uEv
+uEv
+uEv
+uEv
+uEv
+uEv
+uEv
+uEv
+rtM
+wrY
+qLu
+xwn
+vNF
+szr
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(39,1,1) = {"
+aab
+aaf
+axM
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+bIz
+cOL
+awC
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+usZ
+uwa
+vaR
+vEq
+vEq
+vaR
+lwj
+usZ
+vFi
+vFi
+vFi
+usZ
+cku
+cku
+cku
+cku
+cku
+uhi
+uhi
+uhi
+uhi
+usZ
+qUI
+qUI
+lFl
+pNc
+pNc
+pNc
+oUh
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qRX
+wBp
+jAz
+ras
+qRX
+iFG
+jAz
+jAz
+jAz
+kXD
+vJB
+acE
+sjD
+suM
+qRX
+upM
+upM
+upM
+mmJ
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+dmo
+dmo
+boQ
+dmo
+azl
+gIQ
+uEv
+uEv
+bGs
+uOU
+uOU
+uOU
+kvT
+uEv
+uEv
+nPO
+ykB
+kPe
+bjw
+vNF
+szr
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(40,1,1) = {"
+aab
+aaf
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+bIz
+awC
+jMP
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+usZ
+uwa
+vaR
+vEq
+vEq
+vaR
+aaU
+usZ
+vFi
+vFi
+vFi
+usZ
+cku
+swq
+seQ
+cku
+ttq
+lgS
+uhi
+uhi
+wGY
+lxc
+qUI
+qUI
+lFl
+pNc
+pNc
+pNc
+oUh
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qRX
+pRJ
+jAz
+pAR
+bcg
+ifY
+jAz
+jAz
+jAz
+jAz
+jAz
+jAz
+jAz
+uGt
+qRX
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+qNq
+qNq
+qNq
+qNq
+qNq
+qNq
+qNq
+vFi
+dmo
+uTl
+aFI
+aFI
+uTl
+boQ
+boQ
+boQ
+uTl
+aFI
+aFI
+uTl
+dmo
+dmo
+dmo
+dmo
+dmo
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(41,1,1) = {"
+aab
+aaf
+awC
+awC
+awC
+awC
+cOL
+awC
+dWp
+dWp
+awC
+awC
+awC
+awC
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+usZ
+uwa
+vaR
+vEq
+vEq
+vaR
+aaV
+usZ
+vFi
+vFi
+vFi
+usZ
+cku
+cku
+cku
+aQb
+ttq
+lgS
+uhi
+uhi
+mOb
+lxc
+qUI
+qUI
+lFl
+pNc
+pNc
+pNc
+oUh
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qRX
+ohJ
+jAz
+pfP
+bcg
+ifY
+lnZ
+lnZ
+lnZ
+jAz
+jAz
+lnZ
+lnZ
+nEp
+qRX
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+cSz
+dzR
+dzR
+cSz
+vFi
+vFi
+vFi
+cSz
+dzR
+dzR
+cSz
+vFi
+qNq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(42,1,1) = {"
+aab
+aaf
+awC
+awC
+awC
+awC
+bIz
+dWp
+eMB
+gwC
+dWp
+awC
+awC
+awC
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+mUJ
+rZY
+vFi
+vFi
+vFi
+usZ
+vaR
+vaR
+vEq
+vEq
+vaR
+aaW
+usZ
+usZ
+usZ
+usZ
+usZ
+bJi
+ttq
+ttq
+ttq
+bJi
+lgS
+uhi
+uhi
+rwu
+lxc
+qUI
+qUI
+lFl
+pNc
+pNc
+pNc
+lFl
+lFl
+lFl
+oUh
+oUh
+oUh
+oUh
+lFl
+lFl
+qUI
+qRX
+csl
+jAz
+pfP
+bcg
+ifY
+bph
+bph
+bph
+jAz
+jAz
+bph
+bph
+jog
+qRX
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+cSz
+iaT
+dlR
+cSz
+vFi
+vFi
+vFi
+cSz
+iaT
+dlR
+cSz
+vFi
+qNq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(43,1,1) = {"
+aab
+aaf
+axP
+awC
+awC
+awC
+awC
+dWp
+eNH
+gwE
+dWp
+awC
+awC
+awC
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+rZY
+vFi
+vFi
+vFi
+usZ
+usZ
+vaR
+vEq
+vEq
+vaR
+kTG
+lxc
+oZR
+lgS
+uhi
+aal
+lgS
+lgS
+lgS
+lgS
+lgS
+uhi
+uhi
+uhi
+wGY
+lxc
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+lFl
+pNc
+jwJ
+pNc
+pNc
+pNc
+shS
+pNc
+lFl
+lFl
+qRX
+wBp
+jAz
+uGt
+bcg
+ifY
+jAz
+jAz
+jAz
+jAz
+jAz
+jAz
+jAz
+uGt
+qRX
+upM
+upM
+upM
+mmJ
+iaT
+iaT
+iaT
+mmJ
+cSz
+cSz
+mmJ
+cSz
+cSz
+cSz
+mmJ
+cSz
+cSz
+cSz
+tOU
+iaT
+cSz
+cSz
+mmJ
+cSz
+cSz
+tOU
+iaT
+cSz
+cSz
+cSz
+mmJ
+cSz
+cSz
+mmJ
+vFi
+vFi
+vFi
+vFi
+"}
+(44,1,1) = {"
+aab
+aaf
+axP
+awC
+awC
+awC
+awC
+awC
+dWp
+dWp
+awC
+awC
+awC
+jev
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jgt
+vaR
+vaR
+vaR
+vaR
+vaR
+btt
+uhi
+uhi
+uhi
+uhi
+uhi
+uhi
+uhi
+uhi
+uhi
+uhi
+uhi
+ckb
+gwk
+mdc
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+pNc
+xne
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+qRX
+mcu
+jAz
+uGt
+qRX
+iFG
+jAz
+jAz
+jAz
+wWS
+bqx
+bqx
+bqx
+yeg
+qRX
+upM
+upM
+mmJ
+mmJ
+iaT
+iaT
+iaT
+mmJ
+eRV
+fXU
+iaT
+fXU
+iaT
+fXU
+iaT
+fXU
+eRV
+cSz
+dzR
+dzR
+cSz
+pfG
+iaT
+pfG
+cSz
+dzR
+dzR
+cSz
+eRV
+fXU
+iaT
+fXU
+oIe
+uKv
+cSz
+cSz
+cSz
+vFi
+"}
+(45,1,1) = {"
+aab
+aaf
+axP
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+usZ
+vaR
+vaR
+vaR
+aaT
+dZT
+lxc
+joq
+joq
+joq
+joq
+joq
+joq
+joq
+joq
+joq
+uhi
+uhi
+uhi
+pbc
+usZ
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+pNc
+xne
+pNc
+iMv
+pNc
+pNc
+pNc
+pNc
+lFl
+qRX
+qRX
+jAz
+aGN
+qRX
+qRX
+xdP
+bcg
+xdP
+qRX
+heI
+vWw
+vBi
+qRX
+qRX
+mmJ
+mmJ
+mmJ
+caN
+iaT
+iaT
+iaT
+eOY
+iaT
+iaT
+gTz
+iaT
+vrr
+iaT
+iaT
+iaT
+iaT
+rUp
+kZh
+kZh
+qSQ
+iaT
+iaT
+iaT
+rUp
+kZh
+kZh
+qSQ
+iaT
+iaT
+iaT
+iaT
+hgF
+mxg
+cVU
+hzc
+jqC
+vFi
+"}
+(46,1,1) = {"
+aab
+aaf
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+jhj
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+usZ
+usZ
+fkm
+btt
+lxc
+lxc
+lxc
+usZ
+ggV
+azF
+wLc
+azF
+vaR
+rgG
+vaR
+ggV
+aau
+aav
+aav
+aay
+lxc
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+qRX
+mcu
+jAz
+jAz
+iuw
+jAz
+jAz
+jAz
+jAz
+kXD
+vJB
+hGO
+vJB
+aaG
+qRX
+upM
+upM
+fVX
+ieC
+iaT
+iaT
+iaT
+eOY
+iaT
+iaT
+nmM
+pNH
+nmM
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+iaT
+bdD
+mxg
+uPL
+uxu
+jqC
+vFi
+"}
+(47,1,1) = {"
+aab
+aaf
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+cOL
+awC
+awC
+awC
+awC
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+usZ
+eze
+uUs
+uUs
+iuK
+gXc
+gXc
+usZ
+usZ
+otA
+qQN
+nRZ
+rgG
+vaR
+rgG
+aar
+aau
+aav
+aav
+aav
+lxc
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+miM
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+bFy
+qRX
+mTk
+vxz
+jAz
+jAz
+jAz
+jAz
+jAz
+jAz
+wWS
+bqx
+bqx
+bqx
+yeg
+qRX
+upM
+upM
+mmJ
+ieC
+iaT
+iaT
+iaT
+eOY
+iaT
+iaT
+cAH
+iaT
+bIK
+iaT
+iaT
+iaT
+iaT
+iZi
+eTP
+dZG
+iaT
+iaT
+iaT
+iaT
+iaT
+iZi
+eTP
+dZG
+iaT
+iaT
+iaT
+iaT
+rUp
+cSz
+mJR
+tSi
+cSz
+vFi
+"}
+(48,1,1) = {"
+aab
+aaf
+axP
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+jhj
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+usZ
+uUs
+uUs
+uUs
+uUs
+uUs
+uUs
+uUs
+lxc
+gwZ
+bWt
+gwZ
+vaR
+rgG
+vaR
+aas
+aau
+aav
+aav
+aav
+lxc
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+qRX
+dxY
+wjB
+jAz
+aDx
+jAz
+vVS
+jAz
+vVS
+jhV
+qRX
+qRX
+qRX
+qRX
+qRX
+upM
+upM
+mmJ
+mmJ
+iaT
+iaT
+iaT
+mmJ
+eRV
+sRg
+iaT
+sRg
+iaT
+sRg
+axc
+sRg
+eRV
+cSz
+mxg
+cSz
+pfG
+iaT
+iaT
+iaT
+pfG
+cSz
+mxg
+cSz
+eRV
+sRg
+iaT
+sRg
+eRV
+mmJ
+cSz
+cSz
+cSz
+vFi
+"}
+(49,1,1) = {"
+aab
+aaf
+axP
+awC
+awC
+awC
+awC
+awC
+awC
+gwF
+awC
+awC
+awC
+awC
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+usZ
+uUs
+uUs
+pqj
+uUs
+uUs
+uUs
+uUs
+cqr
+vaR
+rgG
+vaR
+rgG
+vaR
+rgG
+aat
+aau
+aav
+aav
+aav
+lxc
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+qRX
+dxY
+wjB
+jAz
+wss
+jAz
+wrv
+jAz
+wrv
+uGt
+bcg
+mLJ
+jAz
+tdL
+qRX
+upM
+upM
+upM
+mmJ
+tsY
+mmJ
+tsY
+mmJ
+cSz
+cSz
+mmJ
+cSz
+cSz
+cSz
+mmJ
+cSz
+cSz
+cSz
+bsI
+cSz
+cSz
+cSz
+cSz
+cSz
+cSz
+cSz
+bsI
+cSz
+cSz
+cSz
+mmJ
+cSz
+cSz
+mmJ
+vFi
+vFi
+vFi
+vFi
+"}
+(50,1,1) = {"
+aab
+aaf
+axP
+awC
+bIz
+aWP
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+jjh
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+lJi
+kcX
+awg
+nZC
+uQa
+lJi
+lJi
+kcX
+oSH
+vHC
+vHC
+vHC
+oSH
+okC
+vHC
+vHC
+vHC
+vHC
+hFE
+jQy
+bqa
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+usZ
+usZ
+usZ
+usZ
+usZ
+uUs
+uUs
+rEm
+uUs
+usZ
+vkA
+gUE
+nyS
+vaR
+rgG
+vaR
+rgG
+usZ
+usZ
+usZ
+usZ
+usZ
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+qRX
+qpG
+wjB
+jAz
+jAz
+jAz
+jAz
+jAz
+jAz
+uGt
+bcg
+jAz
+jAz
+jAz
+qRX
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cSz
+wlL
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+cSz
+wlL
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(51,1,1) = {"
+aab
+aaf
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+lJi
+lJi
+lJi
+nfr
+lJi
+lJi
+lJi
+rDC
+oSH
+vHC
+vHC
+vHC
+oSH
+sDC
+vHC
+vHC
+vHC
+vHC
+vHC
+dPM
+bqa
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+usZ
+eVO
+pAF
+gax
+usZ
+bny
+uUs
+fuD
+uUs
+uUs
+uUs
+wer
+kTG
+rgG
+vaR
+azF
+wLc
+usZ
+pAF
+ixd
+hsu
+usZ
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+lFl
+muL
+muL
+xjH
+lFl
+lFl
+lFl
+lFl
+lFl
+lFl
+qRX
+bdQ
+hhZ
+jAz
+jAz
+dZe
+bjX
+tDu
+jAz
+uGt
+nyh
+jAz
+jAz
+tdL
+qRX
+upM
+upM
+upM
+cSz
+iaT
+iaT
+cwv
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cSz
+jqC
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+cSz
+jqC
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(52,1,1) = {"
+aab
+aaf
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+lJi
+lJi
+lJi
+nfr
+lJi
+lJi
+lJi
+kcX
+oSH
+vHC
+vHC
+vHC
+oSH
+vLN
+vHC
+vHC
+ggM
+uJG
+vHC
+jgC
+jgC
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+usZ
+eVO
+pAF
+jee
+usZ
+uSG
+uUs
+unx
+uUs
+cXr
+uUs
+hZH
+nyS
+vaR
+rgG
+nBm
+hGQ
+usZ
+pAF
+usZ
+usZ
+usZ
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+lFl
+lFl
+lFl
+lFl
+lFl
+vCt
+vCt
+lFl
+vFi
+vFi
+qRX
+gld
+jAz
+jAz
+jAz
+jHH
+vde
+oiK
+jAz
+uGt
+bcg
+jAz
+jAz
+jAz
+qRX
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(53,1,1) = {"
+aab
+aaf
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+aWP
+bIz
+awC
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+lJi
+kcX
+awg
+nZC
+rPA
+lJi
+lJi
+jVv
+oSH
+vHC
+vHC
+vHC
+oSH
+fZx
+vHC
+vHC
+wOf
+nmA
+vHC
+mWs
+mWs
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+usZ
+spo
+pAF
+pAF
+usZ
+sYX
+uUs
+lxe
+uUs
+cEh
+uUs
+fWz
+kTG
+rgG
+vaR
+iXO
+lat
+usZ
+pAF
+nmV
+wSv
+usZ
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+qUI
+mBJ
+oUh
+vCt
+vCt
+vCt
+lFl
+vFi
+vFi
+qRX
+bAD
+jAz
+jAz
+jAz
+jAz
+jAz
+jAz
+wWS
+yeg
+bcg
+mLJ
+jAz
+tdL
+qRX
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(54,1,1) = {"
+aab
+aaf
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+nZC
+nZC
+nZC
+nZC
+vcZ
+lJi
+lJi
+kcX
+oSH
+vHC
+vHC
+vHC
+oSH
+rBp
+vHC
+vHC
+ktf
+fMS
+vHC
+nQT
+nQT
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+usZ
+usZ
+pAF
+pAF
+oOn
+uUs
+uUs
+bfD
+uUs
+hlg
+uUs
+ghD
+nyS
+vaR
+rgG
+bWt
+gwZ
+usZ
+pAF
+usZ
+usZ
+usZ
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+qUI
+qUI
+oUh
+vCt
+vCt
+vCt
+lFl
+vFi
+vFi
+qRX
+bAD
+jAz
+jAz
+bay
+qRX
+qRX
+hVL
+qRX
+qRX
+qRX
+qRX
+hVL
+qRX
+qRX
+upM
+upM
+upM
+cSz
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(55,1,1) = {"
+aab
+aaf
+awC
+aYN
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+awC
+kwC
+kWs
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lyw
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+lJi
+flE
+jwC
+nZC
+vpj
+lJi
+lJi
+vqc
+nZC
+vHC
+vHC
+hjt
+nZC
+wXW
+vHC
+vHC
+gcC
+ajG
+vHC
+fvD
+fvD
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jgt
+pAF
+pAF
+usZ
+bUW
+uUs
+uUs
+uUs
+rGg
+vRh
+nAn
+kTG
+rgG
+vaR
+rgG
+vaR
+tVq
+pAF
+pAF
+bFo
+usZ
+qUI
+qUI
+lFl
+pNc
+pNc
+pNc
+lFl
+qUI
+qUI
+lFl
+vCt
+vCt
+vCt
+lFl
+vFi
+vFi
+qRX
+qRX
+qRX
+hVL
+qRX
+qRX
+efJ
+jAz
+qRX
+iKj
+kKz
+pyN
+jAz
+moi
+qRX
+upM
+upM
+upM
+mmJ
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(56,1,1) = {"
+aab
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+kSi
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+lxX
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+lJi
+lJi
+lJi
+nfr
+lJi
+lJi
+lJi
+lJi
+knC
+vHC
+vHC
+lOu
+ugr
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+jiP
+jiP
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+usZ
+pAF
+tVg
+usZ
+eLl
+efX
+cFz
+ivB
+usZ
+xAK
+gCY
+nyS
+vaR
+rgG
+vaR
+rgG
+usZ
+ker
+pAF
+usZ
+usZ
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+qUI
+qUI
+lFl
+vCt
+vCt
+vCt
+lFl
+vFi
+vFi
+qRX
+ljH
+jTk
+jAz
+kjC
+qRX
+oxi
+jAz
+qRX
+gEr
+jAz
+jAz
+jAz
+uqP
+qRX
+upM
+upM
+upM
+mmJ
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(57,1,1) = {"
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+aab
+dtV
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+lJi
+lJi
+lJi
+nfr
+lJi
+lJi
+lJi
+lJi
+knC
+vHC
+vHC
+lOu
+ugr
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+jSV
+tJN
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+usZ
+usZ
+usZ
+usZ
+lxc
+lxc
+lxc
+lxc
+usZ
+lxc
+lxc
+usZ
+xJZ
+lxc
+xJZ
+usZ
+usZ
+usZ
+usZ
+usZ
+qUI
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+qUI
+qUI
+lFl
+lFl
+lFl
+lFl
+lFl
+vFi
+vFi
+qRX
+rwa
+jAz
+jAz
+rSL
+qRX
+osb
+jAz
+hVL
+gEr
+jAz
+jAz
+awU
+uqP
+qRX
+upM
+upM
+upM
+mmJ
+iaT
+iaT
+iaT
+cSz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(58,1,1) = {"
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+lJi
+kcX
+wRt
+nZC
+bBK
+pGr
+bVn
+wTX
+nZC
+vHC
+vHC
+cui
+nZC
+aiC
+kxt
+oay
+xXm
+szV
+xLw
+mrl
+mrl
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+qUI
+qUI
+lFl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qRX
+nHw
+jAz
+awU
+jAz
+qRX
+pir
+jAz
+qRX
+gEr
+jAz
+jAz
+jAz
+uqP
+qRX
+mmJ
+mmJ
+mmJ
+mmJ
+mmJ
+mmJ
+mmJ
+mmJ
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(59,1,1) = {"
+jsz
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+vHC
+vHC
+vHC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+oUh
+pNc
+pNc
+pNc
+oUh
+qUI
+qUI
+qUI
+qUI
+qUI
+qUI
+lFl
+lFl
+sEU
+lFl
+sEU
+lFl
+lFl
+qUI
+lFl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qRX
+dGj
+iuw
+abs
+muC
+qRX
+rGE
+jAz
+qRX
+wOe
+tRR
+gHT
+xHd
+jmb
+qRX
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(60,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+kZg
+vHC
+vHC
+vxG
+tgP
+vHC
+vHC
+uas
+oSH
+vHC
+vHC
+vHC
+oSH
+xzt
+lJx
+vHC
+vHC
+vHC
+vHC
+vHC
+xJi
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+lFl
+oUh
+oUh
+oUh
+lFl
+lFl
+oUh
+oUh
+oUh
+oUh
+lFl
+pNc
+pNc
+pNc
+lFl
+lFl
+lFl
+lFl
+oUh
+oUh
+oUh
+lFl
+hfU
+pNc
+pNc
+pNc
+hfU
+lFl
+oUh
+lFl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qRX
+qRX
+qRX
+qRX
+qRX
+qRX
+qRX
+qRX
+qRX
+qRX
+qRX
+qRX
+qRX
+qRX
+qRX
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(61,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+crV
+rOy
+nZC
+akg
+dsR
+nZC
+vvv
+fnY
+nZC
+kZg
+vHC
+vHC
+kQp
+sKM
+vHC
+vHC
+azD
+oSH
+vHC
+vHC
+vHC
+oSH
+mRN
+boo
+vHC
+vHC
+vHC
+vHC
+vHC
+qkN
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(62,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+izU
+izU
+nZC
+izU
+izU
+nZC
+izU
+izU
+nZC
+jSV
+vHC
+vHC
+lYv
+mLw
+vHC
+vHC
+kvZ
+oSH
+vHC
+vHC
+vHC
+oSH
+bLl
+vHC
+vHC
+dgU
+pQM
+vHC
+vHC
+mZO
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(63,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+izU
+jSV
+vHC
+vHC
+wNO
+enV
+vHC
+vHC
+dPp
+oSH
+vHC
+vHC
+vHC
+oSH
+lxC
+boo
+vHC
+hYS
+iTM
+vHC
+vHC
+wbS
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(64,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+izU
+jSV
+vHC
+vHC
+odr
+gKZ
+vHC
+vHC
+ipT
+oSH
+vHC
+vHC
+vHC
+oSH
+rkf
+vHC
+vHC
+mQF
+eQT
+vHC
+vHC
+mNv
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+lFl
+lFl
+lFl
+lFl
+lFl
+lFl
+gMK
+hhn
+gMK
+lFl
+lFl
+lFl
+lFl
+lFl
+lFl
+lFl
+lFl
+pNc
+pNc
+pNc
+lFl
+oUh
+oUh
+lFl
+lFl
+lFl
+lFl
+lFl
+lFl
+lFl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+dtV
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+dtV
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+aJQ
+dtV
+vFi
+vFi
+"}
+(65,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+izU
+jSV
+vHC
+vHC
+kZq
+sLw
+vHC
+vHC
+cJE
+xER
+uXk
+vHC
+rtW
+piU
+kzR
+vHC
+vHC
+jEg
+cgE
+vHC
+vHC
+bkO
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+lFl
+lFl
+lFl
+lFl
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+oUh
+pNc
+oUh
+lFl
+riW
+wDE
+mBO
+vut
+qAi
+lFl
+lFl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ihi
+cJI
+akO
+kkH
+arj
+ayE
+aFt
+aQI
+aZo
+ihi
+qTk
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+ggj
+qTk
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+ujw
+vFi
+vFi
+"}
+(66,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+izU
+izU
+nZC
+izU
+izU
+nZC
+izU
+izU
+nZC
+wuk
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+ugr
+oYx
+vHC
+kof
+ugr
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+lEK
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+pNc
+pNc
+pNc
+oUh
+jEt
+dUJ
+vut
+vut
+mkh
+lFl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ihi
+ldM
+wmu
+ala
+xew
+ala
+xew
+aSP
+bcH
+cyR
+qTk
+vwm
+vwm
+hyO
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+qTk
+wPR
+wPR
+wPR
+dKL
+wPR
+wPR
+wPR
+wPR
+dKL
+wPR
+ujw
+vFi
+vFi
+"}
+(67,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+bLs
+kSG
+nZC
+aQa
+uju
+nZC
+esM
+txl
+nZC
+aTe
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+ugr
+oYx
+vHC
+kof
+ugr
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+fvI
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+pNc
+pNc
+pNc
+oUh
+vut
+vut
+vut
+vut
+dTr
+lFl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ihi
+orn
+pXz
+xew
+ala
+xew
+ala
+aUQ
+bnH
+cNE
+qTk
+vwm
+vwm
+vwm
+vwm
+ggj
+vwm
+vwm
+hyO
+vwm
+vwm
+qTk
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+ujw
+vFi
+vFi
+"}
+(68,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+hol
+ydh
+ovR
+ydh
+ydh
+ydh
+kTB
+kTB
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+jgX
+qST
+koh
+gTL
+iCF
+dNw
+eAg
+oFi
+xER
+alt
+vHC
+rsy
+piU
+bIR
+lmD
+uvZ
+hwT
+szV
+hSZ
+iwL
+xpW
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+lFl
+kMF
+lFl
+lFl
+vut
+vut
+vut
+vut
+wjl
+lFl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ihi
+heQ
+wmu
+ala
+xew
+ala
+xew
+aSP
+bpv
+cOx
+qTk
+ggj
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+qTk
+wPR
+dKL
+wPR
+wPR
+wPR
+wPR
+dKL
+wPR
+wPR
+wPR
+ujw
+vFi
+vFi
+"}
+(69,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+hol
+ydh
+ovR
+hol
+ydh
+ydh
+ydh
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+vHC
+vHC
+vHC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+pNc
+pNc
+pNc
+oUh
+vut
+vut
+vut
+vut
+qrl
+lFl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ihi
+udo
+pXz
+xew
+ala
+xew
+ala
+aUQ
+bqH
+dgc
+qTk
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+hyO
+qTk
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+ujw
+vFi
+vFi
+"}
+(70,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+dbz
+ovR
+ovR
+hol
+ydh
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+mjU
+jSV
+jSV
+jSV
+roV
+oSH
+dnP
+ssX
+vHC
+vHC
+vHC
+vHC
+vHC
+kXP
+qmj
+oSH
+rvm
+jSV
+cMd
+jSV
+sHF
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+axm
+pNc
+pNc
+pNc
+dtq
+vut
+vut
+vut
+vut
+vut
+lFl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ihi
+enM
+wmu
+ala
+xew
+ala
+xew
+aSP
+bJs
+dmw
+qTk
+vwm
+vwm
+vwm
+ggj
+vwm
+vwm
+hyO
+vwm
+vwm
+vwm
+qTk
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+ujw
+vFi
+vFi
+"}
+(71,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+ydh
+ydh
+hol
+tLx
+yap
+hol
+tfg
+tfg
+kTB
+kTB
+kTB
+kTB
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+rNJ
+jSV
+jSV
+jSV
+roV
+oSH
+xBr
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+reG
+oSH
+xHO
+jSV
+jSV
+jSV
+cXM
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+lFl
+pNc
+pNc
+pNc
+pNc
+pNc
+lFl
+pNc
+pNc
+pNc
+oUh
+wcp
+hsZ
+bWp
+tkj
+vut
+lFl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ihi
+mQJ
+pXz
+xew
+ala
+xew
+ala
+aUQ
+bRT
+dFq
+qTk
+vwm
+vwm
+vwm
+vwm
+ggj
+vwm
+vwm
+vwm
+vwm
+vwm
+qTk
+wPR
+wPR
+wPR
+dKL
+wPR
+wPR
+wPR
+wPR
+dKL
+wPR
+ujw
+vFi
+vFi
+"}
+(72,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+ydh
+tfg
+tfg
+hol
+ovR
+ovR
+hol
+tfg
+tfg
+tfg
+tfg
+kTB
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+aZH
+nSp
+jSV
+nSp
+fgE
+nZC
+dVl
+vHC
+vHC
+gCB
+nVi
+tBo
+bZb
+vHC
+cAS
+nZC
+vUT
+bVp
+jSV
+bVp
+urp
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+spc
+thE
+thE
+thE
+thE
+thE
+thE
+thE
+thE
+thE
+spc
+spc
+spc
+nAP
+nAP
+nAP
+spc
+iPB
+nAP
+iPB
+spc
+nAP
+nAP
+nAP
+spc
+spc
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ihi
+syS
+wmu
+ala
+xew
+ala
+xew
+aSP
+bTc
+dIk
+qTk
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+qTk
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+ujw
+vFi
+vFi
+"}
+(73,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+tfg
+tfg
+tfg
+tfg
+hol
+ovR
+ovR
+hol
+tfg
+tfg
+tfg
+tfg
+kTB
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+vHC
+vHC
+vHC
+vHC
+vHC
+ugr
+vHC
+vHC
+vHC
+gCB
+vYr
+ohA
+bZb
+vHC
+vHC
+ugr
+vHC
+vHC
+vHC
+vHC
+uPC
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nAP
+thE
+nbs
+fnw
+fnw
+fnw
+fnw
+fnw
+rCL
+thE
+spc
+spc
+spc
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+spc
+spc
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ihi
+ica
+pXz
+xew
+ala
+xew
+ala
+aUQ
+bTW
+eRl
+qTk
+vwm
+hyO
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+qTk
+wPR
+dKL
+wPR
+wPR
+wPR
+wPR
+dKL
+wPR
+wPR
+wPR
+ujw
+vFi
+vFi
+"}
+(74,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+tfg
+tfg
+tfg
+tfg
+hol
+rjH
+cDx
+cDx
+hol
+hol
+hol
+hol
+tfg
+tfg
+tfg
+kTB
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+vHC
+vHC
+vHC
+vHC
+vHC
+ugr
+vHC
+vHC
+vHC
+gCB
+tBo
+gPu
+bZb
+vHC
+vHC
+ugr
+vHC
+vHC
+vHC
+vHC
+wMf
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nAP
+thE
+uTu
+qHa
+qHa
+qHa
+qHa
+qHa
+lPJ
+thE
+spc
+spc
+nwt
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+nwt
+spc
+spc
+llz
+llz
+llz
+llz
+llz
+llz
+llz
+llz
+llz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ihi
+ihi
+ihi
+ihi
+ihi
+ihi
+ihi
+ihi
+ihi
+ihi
+qTk
+vwm
+vwm
+vwm
+vwm
+vwm
+vwm
+ggj
+vwm
+vwm
+hyO
+qTk
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+wPR
+ujw
+vFi
+vFi
+"}
+(75,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+ydh
+kTB
+tfg
+tfg
+tfg
+tfg
+tfg
+hol
+ovR
+ovR
+ovR
+ovR
+ovR
+ovR
+hol
+tfg
+tfg
+tfg
+tfg
+kTB
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+sQM
+sQM
+jSV
+sQM
+sQM
+nZC
+uKl
+vHC
+vHC
+gCB
+fQK
+siB
+bZb
+vHC
+peG
+nZC
+qeO
+sQM
+jSV
+sQM
+sto
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nAP
+thE
+uTu
+aAq
+qHa
+qHa
+qHa
+ejt
+lPJ
+thE
+nAP
+oeT
+oeT
+oeT
+oeT
+wNF
+jSQ
+abd
+hmT
+abg
+jSQ
+hFp
+oeT
+oeT
+oeT
+oeT
+spc
+bLg
+nZv
+llz
+bLg
+bzQ
+llz
+bLg
+bzQ
+llz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+dtV
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+dtV
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+dtV
+vFi
+vFi
+"}
+(76,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+hol
+ovR
+ovR
+ovR
+hol
+tLx
+ovR
+hol
+tfg
+tfg
+tfg
+kTB
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+jSV
+jSV
+jSV
+jSV
+jSV
+oSH
+cAS
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vpA
+oSH
+fME
+jSV
+jSV
+jSV
+mbq
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nAP
+thE
+wLB
+pMy
+pMy
+pMy
+pMy
+pMy
+jxr
+thE
+nAP
+oeT
+oeT
+oeT
+fDY
+jSQ
+jSQ
+sbk
+jSQ
+sbk
+jSQ
+jSQ
+abk
+oeT
+oeT
+oeT
+spc
+dfO
+voc
+llz
+dfO
+voc
+llz
+dfO
+voc
+llz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+rIg
+xHY
+rIg
+xHY
+rIg
+rIg
+xHY
+rIg
+xHY
+rIg
+qTk
+mko
+mko
+mko
+mko
+mko
+mko
+mko
+rvN
+mko
+mko
+ujw
+vFi
+vFi
+"}
+(77,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+hol
+tLx
+ovR
+yap
+hol
+ovR
+ovR
+hol
+tfg
+tfg
+tfg
+tfg
+ydh
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+jSV
+jSV
+jSV
+jSV
+jSV
+oSH
+uaO
+uaO
+vHC
+vHC
+vHC
+vHC
+vHC
+rLm
+sWg
+oSH
+wPA
+bSS
+czP
+svA
+emH
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+spc
+thE
+thE
+thE
+thE
+thE
+thE
+thE
+thE
+thE
+nAP
+oeT
+oeT
+wNF
+jSQ
+jSQ
+jSQ
+cya
+cya
+cya
+jSQ
+jSQ
+jSQ
+hFp
+oeT
+oeT
+spc
+fje
+vpZ
+llz
+fje
+vpZ
+llz
+fje
+vpZ
+llz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+uQV
+nKo
+uQV
+uQV
+nKo
+nKo
+uQV
+uQV
+nKo
+xHY
+qTk
+mko
+cMt
+mko
+mko
+mko
+mko
+mko
+mko
+ugt
+mko
+ujw
+vFi
+vFi
+"}
+(78,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+kTB
+tfg
+tfg
+tfg
+hol
+hol
+hol
+hol
+ovR
+ovR
+ovR
+hol
+ovR
+ovR
+hol
+hol
+hol
+hol
+tfg
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+aKa
+ugr
+oSH
+ugr
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+eVH
+nAP
+nAP
+nAP
+nAP
+spc
+nAP
+nAP
+nAP
+nAP
+spc
+spc
+nAP
+nAP
+spc
+vxa
+spc
+nAP
+nAP
+spc
+spc
+oeT
+oeT
+jSQ
+jSQ
+jSQ
+cya
+xYA
+cCf
+cya
+cya
+jSQ
+jSQ
+jSQ
+oeT
+oeT
+spc
+kob
+llz
+llz
+kob
+llz
+llz
+kob
+llz
+llz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+uQV
+uQV
+imM
+hKW
+oOO
+oOO
+hKW
+rKQ
+uQV
+rIg
+qTk
+mko
+mko
+mko
+fSf
+mko
+mko
+mko
+mko
+mko
+mko
+ujw
+vFi
+vFi
+"}
+(79,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+tfg
+tfg
+tfg
+tfg
+hol
+ovR
+ovR
+hol
+ovR
+ovR
+ovR
+hol
+tLx
+ovR
+ovR
+ovR
+ovR
+hol
+tfg
+tfg
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+shL
+eos
+eos
+eos
+eos
+nZC
+jSV
+uOy
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+nZC
+ntI
+nAP
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+dXk
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+bsF
+oeT
+oeT
+qCw
+tKV
+cya
+xYA
+vsc
+spc
+qrD
+xYA
+cya
+wkF
+abp
+oeT
+oeT
+bsF
+aWE
+aWE
+aWE
+aWE
+aWE
+aWE
+aWE
+aWE
+llz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+sBT
+hKW
+ioF
+loE
+gpC
+gpC
+loE
+rFr
+nKo
+xHY
+qTk
+mko
+mko
+mko
+mko
+ugt
+mko
+mko
+mko
+fSf
+mko
+ujw
+vFi
+vFi
+"}
+(80,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+kTB
+tfg
+tfg
+tfg
+tfg
+hol
+ovR
+ovR
+iQW
+ovR
+ovR
+ovR
+ovR
+ovR
+ovR
+waY
+ovR
+ovR
+hol
+tfg
+tfg
+kTB
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+eos
+vHC
+vHC
+vHC
+vHC
+uOy
+jSV
+oSH
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+ugr
+ntI
+jNd
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+spc
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+nAP
+oeT
+oeT
+nub
+jSQ
+sFk
+xYA
+xJA
+tpk
+uLx
+cya
+cya
+jSQ
+aUJ
+oeT
+oeT
+nAP
+aWE
+aWE
+aWE
+aWE
+aWE
+aWE
+aWE
+eOe
+llz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+gpC
+gpC
+gpC
+lsk
+ppq
+ppq
+lsk
+iXD
+uQV
+rIg
+qTk
+mko
+mko
+mko
+sIZ
+mko
+mko
+cMt
+mko
+mko
+rvN
+ujw
+vFi
+vFi
+"}
+(81,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+tfg
+tfg
+tfg
+hol
+ovR
+hol
+hlq
+hlq
+ovR
+ovR
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+tfg
+tfg
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+shL
+eos
+eos
+eos
+eos
+nZC
+jSV
+uOy
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+nZC
+ntI
+nAP
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+dXk
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+bsF
+oeT
+oeT
+sAo
+tKV
+cya
+xYA
+cVf
+spc
+oeF
+xYA
+cya
+wkF
+abq
+oeT
+oeT
+bsF
+aWE
+aWE
+aWE
+aWE
+aWE
+aWE
+aWE
+mcB
+llz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+gpC
+gpC
+gpC
+lsk
+ppq
+ppq
+lsk
+rFr
+nKo
+rIg
+qTk
+mko
+mko
+mko
+mko
+mko
+mko
+mko
+rvN
+mko
+mko
+ujw
+vFi
+vFi
+"}
+(82,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+tfg
+tfg
+tfg
+tfg
+hol
+ovR
+ovR
+ovR
+hol
+ovR
+ovR
+ovR
+ovR
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+ydh
+ydh
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+ugr
+oSH
+ugr
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+eVH
+nAP
+nAP
+nAP
+nAP
+spc
+nAP
+nAP
+nAP
+nAP
+kNE
+kNE
+yga
+yga
+kNE
+rXa
+kNE
+yga
+yga
+kNE
+spc
+oeT
+oeT
+jSQ
+jSQ
+jSQ
+cya
+cya
+jFY
+xYA
+cya
+jSQ
+jSQ
+jSQ
+oeT
+oeT
+spc
+llz
+lLQ
+lLQ
+bEy
+bEy
+lLQ
+lLQ
+llz
+llz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+gYo
+hMz
+irb
+gpC
+gpC
+gpC
+gpC
+iXD
+uQV
+xHY
+qTk
+mko
+cMt
+mko
+mko
+mko
+mko
+fSf
+mko
+ugt
+mko
+ujw
+vFi
+vFi
+"}
+(83,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+tfg
+tfg
+tfg
+tfg
+hol
+ovR
+ovR
+ovR
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+mxi
+pDn
+pNW
+pDn
+mxi
+nZC
+vHC
+vHC
+vHC
+rJt
+lJi
+lJi
+lJi
+lJi
+lJi
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+kNE
+mpk
+nrD
+vfS
+nKE
+nKE
+nKE
+lzN
+lzN
+nKE
+spc
+oeT
+oeT
+lJz
+jSQ
+jSQ
+jSQ
+cya
+cya
+cya
+jSQ
+jSQ
+jSQ
+irM
+oeT
+oeT
+spc
+bEy
+bEy
+bEy
+bEy
+bEy
+bEy
+bEy
+bEy
+llz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+uQV
+nKo
+itW
+hMz
+hMz
+pJj
+hMz
+rIq
+nKo
+rIg
+qTk
+mko
+mko
+mko
+mko
+mko
+mko
+mko
+mko
+mko
+mko
+ujw
+vFi
+vFi
+"}
+(84,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+tfg
+tfg
+tfg
+tfg
+tfg
+hol
+ovR
+ovR
+ovR
+ovR
+ovR
+ovR
+ovR
+ovR
+ovR
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+mxi
+pDn
+pNW
+pDn
+mxi
+nZC
+vHC
+vHC
+vHC
+rJt
+vyK
+wZL
+wZL
+wZL
+fwc
+jlo
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yga
+nKE
+cLh
+lzN
+nKE
+nKE
+aBT
+uFo
+uoS
+nKE
+spc
+oeT
+oeT
+oeT
+jwY
+jSQ
+jSQ
+buE
+jSQ
+buE
+jSQ
+jSQ
+abl
+oeT
+oeT
+oeT
+spc
+mlA
+mlA
+bEy
+bEy
+bEy
+bEy
+mlA
+mlA
+llz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+nKo
+uQV
+nKo
+nKo
+uQV
+nKo
+uQV
+nKo
+nKo
+xHY
+qTk
+mko
+mko
+sIZ
+mko
+ugt
+mko
+mko
+mko
+fSf
+mko
+ujw
+vFi
+vFi
+"}
+(85,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+tfg
+tfg
+tfg
+tfg
+tfg
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+ovR
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+kTB
+ydh
+ydh
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+mxi
+pDn
+pNW
+pDn
+mxi
+nZC
+vHC
+vHC
+vHC
+rJt
+mSP
+nJO
+bZX
+bZX
+mSP
+jlo
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yga
+nKE
+rLR
+lzN
+nKE
+nKE
+nKE
+rJN
+nKE
+nKE
+spc
+oeT
+oeT
+oeT
+oeT
+lJz
+jSQ
+abe
+pHq
+abh
+jSQ
+irM
+oeT
+oeT
+oeT
+oeT
+spc
+oyA
+eXs
+bEy
+bEy
+bEy
+bEy
+eXs
+hjU
+llz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+rIg
+rIg
+rIg
+xHY
+rIg
+xHY
+xHY
+rIg
+xHY
+rIg
+qTk
+mko
+mko
+mko
+mko
+mko
+mko
+cMt
+mko
+mko
+rvN
+ujw
+vFi
+vFi
+"}
+(86,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+tfg
+ydh
+tfg
+tfg
+tfg
+hol
+hol
+ovR
+ovR
+fJc
+pQU
+ovR
+ovR
+gBc
+fJc
+ovR
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+ygd
+xNW
+jSV
+xNW
+jSV
+ugr
+vHC
+vHC
+vHC
+rJt
+mSP
+dzl
+fps
+dCZ
+mSP
+jlo
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yga
+nKE
+nKE
+nKE
+nKE
+nKE
+nKE
+nKE
+nKE
+nKE
+spc
+spc
+nwt
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+nwt
+spc
+spc
+mlA
+mlA
+bEy
+mSB
+bEy
+bEy
+mlA
+mlA
+llz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+dtV
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+dtV
+vFi
+vFi
+"}
+(87,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+kTB
+ydh
+tfg
+tfg
+tfg
+tfg
+hol
+hrS
+ovR
+ovR
+waY
+ykN
+ovR
+ovR
+gIe
+waY
+ovR
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+uXT
+jSV
+jSV
+jSV
+jSV
+ugr
+vHC
+vHC
+vHC
+rJt
+mSP
+wqS
+oWN
+aMH
+mSP
+jlo
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+kNE
+erZ
+sWL
+nKE
+nKE
+kET
+nKE
+nKE
+nKE
+nKE
+spc
+spc
+spc
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+spc
+spc
+spc
+bEy
+bEy
+bEy
+mlA
+bEy
+bEy
+bEy
+bEy
+llz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+iWs
+iWs
+iWs
+iWs
+iWs
+iWs
+iWs
+iWs
+iWs
+tsG
+qTk
+vEf
+jGH
+jGH
+jGH
+jGH
+jGH
+jGH
+jGH
+jGH
+vEf
+ujw
+vFi
+vFi
+"}
+(88,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+tfg
+tfg
+tfg
+tfg
+hol
+ovR
+ovR
+hol
+hol
+hol
+bYA
+bws
+hol
+hol
+hol
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+rNN
+jSV
+jSV
+jSV
+aPM
+nZC
+vHC
+vHC
+vHC
+rJt
+mSP
+wqS
+yfA
+gWd
+mSP
+jlo
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+kNE
+kNE
+kNE
+kNE
+kNE
+kNE
+kNE
+kNE
+kNE
+kNE
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+iPB
+nAP
+iPB
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+iWs
+iWs
+ixP
+jTw
+jTw
+jTw
+jTw
+rPJ
+iWs
+iWs
+qTk
+wMD
+wMD
+wMD
+wMD
+wMD
+wMD
+hGV
+jGH
+jGH
+jGH
+ujw
+vFi
+vFi
+"}
+(89,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+raJ
+mFz
+mFz
+raJ
+raJ
+raJ
+hol
+hol
+hol
+hol
+hol
+hol
+tLx
+ovR
+hol
+tfg
+hol
+hol
+hol
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+eKh
+jSV
+jSV
+jSV
+aPM
+nZC
+vHC
+vHC
+vHC
+rJt
+mSP
+wqS
+wqS
+dcJ
+mSP
+jlo
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+spc
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+iWs
+iWs
+iPX
+lRp
+lRp
+lRp
+lRp
+bHZ
+iWs
+iWs
+qTk
+wMF
+xPs
+cJs
+nvm
+cJs
+vcz
+nmN
+jGH
+jGH
+jGH
+ujw
+vFi
+vFi
+"}
+(90,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+kTB
+kTB
+xls
+xls
+ovR
+ovR
+ovR
+ovR
+fJc
+ovR
+ovR
+hol
+tfg
+tfg
+tfg
+tfg
+hol
+tfg
+tfg
+tfg
+tfg
+ydh
+tfg
+tfg
+tfg
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+nZC
+nZC
+wdG
+nZC
+nZC
+nZC
+vHC
+vHC
+vHC
+rJt
+mSP
+wqS
+wqS
+dcJ
+mSP
+jlo
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yah
+yah
+yah
+yah
+yah
+yah
+yah
+yah
+yah
+yah
+spc
+oeT
+oeT
+oeT
+oeT
+oJA
+oeT
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+dQu
+iWs
+iTc
+tbQ
+tbQ
+tbQ
+tbQ
+xPh
+iWs
+iWs
+qTk
+kWS
+vGb
+qen
+ljB
+qen
+xNJ
+nmN
+jMM
+tXK
+jGH
+ujw
+vFi
+vFi
+"}
+(91,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+xls
+ovR
+ovR
+waY
+ovR
+ovR
+ovR
+ovR
+ovR
+hol
+tfg
+tfg
+rTt
+rTt
+hol
+tfg
+tfg
+tfg
+tfg
+ydh
+tfg
+kTB
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+boE
+aOK
+aOK
+qbK
+qbK
+nZC
+vHC
+vHC
+vHC
+rJt
+mSP
+rMY
+wqS
+wqS
+mSP
+jlo
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yah
+wvj
+wvj
+wvj
+wvj
+wvj
+wvj
+wvj
+wvj
+wvj
+spc
+eVH
+nAP
+hRf
+nAP
+spc
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+tnB
+tnB
+tnB
+bcy
+sJc
+lto
+bcy
+tnB
+bcy
+sJc
+lto
+bcy
+tnB
+tnB
+tnB
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+wnz
+iWs
+iPX
+lRp
+lRp
+lRp
+lRp
+bHZ
+iWs
+iWs
+qTk
+wMF
+vGb
+qen
+ljB
+qen
+xNJ
+nmN
+jMM
+tbY
+jGH
+ujw
+vFi
+vFi
+"}
+(92,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+dbz
+ovR
+nId
+hol
+hol
+hol
+hol
+hLw
+mNu
+hlq
+hlq
+hlq
+hlq
+hlq
+hlq
+hol
+hol
+tfg
+tfg
+ydh
+ydh
+ydh
+tfg
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+mRE
+aOK
+aOK
+aOK
+aOK
+nZC
+vHC
+vHC
+vHC
+rJt
+mSP
+gCg
+wqS
+wqS
+mSP
+jlo
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yah
+wvj
+wvj
+hKV
+hKV
+hKV
+hKV
+hKV
+wvj
+wvj
+xOR
+obC
+xyK
+vRu
+obC
+xyK
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+tnB
+tnB
+bcy
+bcy
+hft
+hft
+bcy
+bcy
+bcy
+hft
+hft
+bcy
+bcy
+tnB
+tnB
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+wnz
+iWs
+jkB
+mxA
+mxA
+mxA
+mxA
+rYr
+iWs
+iWs
+qTk
+wMF
+vGb
+qen
+ljB
+qen
+xNJ
+nmN
+jMM
+tbY
+jGH
+ujw
+vFi
+vFi
+"}
+(93,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+mFz
+dbz
+hlq
+rag
+gZS
+kzK
+pDb
+pDb
+oRy
+nRi
+nRi
+wLx
+hWB
+qJf
+hol
+hol
+tfg
+tfg
+tfg
+ydh
+tfg
+tfg
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+nZC
+nZC
+aOK
+aOK
+nZC
+nZC
+nZC
+vHC
+vHC
+vHC
+rJt
+mSP
+xvH
+wqS
+uiI
+mSP
+jlo
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yah
+wvj
+hKV
+fAw
+cUQ
+cUQ
+cUQ
+fAw
+hKV
+wvj
+xOR
+dja
+nHq
+dqg
+dag
+dja
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+tnB
+bcy
+bcy
+bcy
+uLR
+fKq
+fKq
+bcy
+nmH
+fKq
+gnJ
+bcy
+bcy
+bcy
+tnB
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+hbs
+ddo
+ddo
+ddo
+ddo
+ddo
+ddo
+ddo
+ddo
+ddo
+qTk
+kWS
+vGb
+qen
+ljB
+qen
+xNJ
+nmN
+jMM
+iQX
+jGH
+ujw
+vFi
+vFi
+"}
+(94,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+ydh
+ovR
+hlq
+qrL
+hLw
+oRy
+nRi
+nRi
+ydh
+nRi
+ydh
+lRH
+qcH
+hGu
+qJf
+hol
+tfg
+tfg
+tfg
+ydh
+tfg
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+hnI
+hWj
+aOK
+aOK
+cvx
+bvt
+nZC
+vHC
+vHC
+vHC
+rJt
+mSP
+ybT
+rIX
+ybT
+mSP
+jlo
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+pHc
+wvj
+hKV
+nHf
+tNc
+tNc
+tNc
+pAB
+hKV
+wvj
+xOR
+dja
+tXH
+csG
+pxp
+dja
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+bcy
+agQ
+fKq
+fDN
+fKq
+fKq
+fKq
+bcy
+bBn
+fKq
+fKq
+saX
+fKq
+bcy
+bcy
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+jVf
+jVf
+jVf
+jVf
+jVf
+jVf
+jVf
+jVf
+jVf
+jVf
+qTk
+wMF
+xRn
+cAy
+dcc
+cAy
+fRY
+nmN
+jGH
+jGH
+jGH
+ujw
+vFi
+vFi
+"}
+(95,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+dbz
+tfg
+hlq
+lKu
+iJR
+nRi
+iGQ
+wKx
+wKx
+wZw
+cSg
+wKx
+fZr
+qcH
+asI
+qJf
+eay
+tfg
+twG
+tfg
+tfg
+kTB
+ydh
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+two
+aOK
+aOK
+aOK
+nZC
+nZC
+nZC
+vHC
+vHC
+vHC
+rJt
+lJi
+mSP
+jvA
+mSP
+lJi
+jlo
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yah
+wvj
+hcn
+evT
+evT
+evT
+tNc
+tNc
+hKV
+wvj
+xOR
+oTY
+tXH
+csG
+pxp
+oTY
+spc
+oeT
+oeT
+syY
+spc
+tnB
+tnB
+bcy
+fin
+fKq
+bGM
+lLo
+fKq
+fKq
+bcy
+hQh
+fKq
+fKq
+mio
+fKq
+hst
+bcy
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+kBg
+kBg
+kBg
+kBg
+kBg
+kBg
+kBg
+kBg
+kBg
+kBg
+qTk
+xgL
+xgL
+xgL
+xgL
+xgL
+xgL
+phO
+jGH
+jGH
+jGH
+ujw
+vFi
+vFi
+"}
+(96,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+hlq
+qJf
+eEM
+iGQ
+isj
+veQ
+veQ
+ifb
+veQ
+veQ
+bps
+fZr
+bST
+veQ
+eay
+tfg
+ydh
+tfg
+tfg
+kTB
+ydh
+kTB
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dLV
+dLV
+dLV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+aDT
+snC
+aOK
+aOK
+ecF
+bvt
+nZC
+vHC
+vHC
+vHC
+rJt
+rJt
+rJt
+pGT
+rJt
+rJt
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yah
+wvj
+ppL
+tNc
+tNc
+tNc
+tNc
+tNc
+hKV
+wvj
+xOR
+oTY
+xST
+csG
+cAw
+oTY
+spc
+oeT
+oeT
+oeT
+eBX
+tnB
+tnB
+bcy
+sUq
+fKq
+smQ
+lLo
+fKq
+fXz
+bcy
+nmH
+fKq
+fKq
+hAG
+fKq
+pyB
+bcy
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+hfQ
+qox
+qox
+qox
+qox
+qox
+qox
+qox
+qox
+qox
+qTk
+vEf
+jGH
+jGH
+jGH
+jGH
+jGH
+jGH
+jGH
+jGH
+vEf
+ujw
+vFi
+vFi
+"}
+(97,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+kTB
+ydh
+hlq
+oSi
+eEM
+rzz
+veQ
+gcg
+veQ
+ifb
+ewk
+gcg
+veQ
+eay
+qxH
+sEM
+cdV
+tfg
+ydh
+ydh
+tfg
+kTB
+ydh
+kTB
+kTB
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dLV
+jRZ
+dLV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+nZC
+vHC
+vHC
+vHC
+vHC
+vHC
+vHC
+iSl
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yah
+wvj
+hKV
+ubv
+tNc
+tNc
+tNc
+tNc
+hKV
+wvj
+xOR
+oTY
+tXH
+csG
+pxp
+oTY
+spc
+oeT
+oeT
+oeT
+eBX
+tnB
+tnB
+bcy
+rpn
+fKq
+vKc
+lLo
+fKq
+fKq
+bcy
+apw
+fKq
+fKq
+oqb
+fKq
+nYC
+bcy
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+dtV
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+dtV
+vFi
+vFi
+"}
+(98,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+hlq
+qJf
+eEM
+hEP
+vRr
+hWB
+iSO
+sYR
+bST
+veQ
+uOk
+eay
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+ydh
+ydh
+kTB
+kTB
+kTB
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dLV
+dLV
+dLV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+eeb
+eeb
+eeb
+vHC
+vHC
+vHC
+vHC
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ttr
+wvj
+ppL
+tNc
+tNc
+tNc
+tNc
+tNc
+hKV
+wvj
+xOR
+dja
+ijG
+csG
+uvq
+dja
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+bcy
+bcy
+bcy
+bcy
+bcy
+dqA
+bcy
+bcy
+bcy
+dqA
+bcy
+bcy
+bcy
+bcy
+bcy
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+yaW
+yaW
+ndp
+xWt
+xWt
+xWt
+xWt
+xWt
+xWt
+xWt
+wzi
+wxC
+gAy
+qku
+aoW
+jQU
+aoW
+cVe
+mcT
+jQU
+mcT
+ujw
+vFi
+vFi
+"}
+(99,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+kTB
+hlq
+iXW
+eEM
+hEP
+veQ
+sxT
+eay
+iVg
+xpG
+veQ
+veQ
+eay
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dLV
+vaF
+dLV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+nZC
+rBC
+nZC
+nZC
+oSH
+oSH
+nZC
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yah
+wvj
+vNt
+bYQ
+bYQ
+bYQ
+tNc
+tNc
+hKV
+wvj
+xOR
+dja
+lLZ
+csG
+gws
+dja
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+gOa
+hkz
+jFe
+ihH
+fKq
+fKq
+fKq
+ihH
+fKq
+fKq
+fKq
+ihH
+fKq
+fKq
+bcy
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+yaW
+yaW
+jwh
+wTM
+wTM
+wTM
+wTM
+wTM
+wTM
+wTM
+wzi
+wxC
+gAy
+qku
+dBF
+dRM
+dBF
+dRM
+oRM
+dRM
+oRM
+ujw
+vFi
+vFi
+"}
+(100,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+kTB
+hlq
+qJf
+eEM
+hEP
+veQ
+ewk
+uEJ
+wZw
+kmt
+hGu
+veQ
+eay
+ydh
+ydh
+ydh
+ydh
+tfg
+tfg
+tfg
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dLV
+dLV
+dLV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+jSV
+jSV
+sYo
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yah
+wvj
+hKV
+nHf
+tNc
+tNc
+tNc
+pAB
+hKV
+wvj
+xOR
+dja
+dja
+mKs
+dja
+dja
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+gOa
+scG
+jFe
+fKq
+fKq
+fKq
+fKq
+fKq
+fKq
+fKq
+fKq
+hAG
+hAG
+fKq
+bcy
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+yaW
+yaW
+dRW
+xWt
+prb
+xWt
+wTM
+sFr
+sJf
+utc
+wzi
+wxC
+wxC
+ufx
+dBF
+dRM
+jQU
+jQU
+jQU
+dRM
+oRM
+ujw
+vFi
+vFi
+"}
+(101,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+hlq
+woh
+eEM
+hEP
+veQ
+vfc
+gcg
+ifb
+ehg
+ewk
+hGu
+eay
+qqh
+cSg
+wHJ
+ydh
+tfg
+tfg
+ydh
+kTB
+kTB
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dLV
+gjw
+dLV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+boB
+jSV
+yku
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yah
+wvj
+hKV
+fAw
+tNc
+tNc
+tNc
+fAw
+hKV
+wvj
+xOR
+dja
+xIy
+csG
+pnb
+dja
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+bcy
+bcy
+bcy
+dqA
+bcy
+bcy
+fKq
+rti
+fKq
+bcy
+fKq
+hAG
+hAG
+fKq
+bcy
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+bHc
+yaW
+jIp
+mIc
+ptF
+qoY
+qrw
+ndp
+tef
+qsI
+wzi
+wxC
+gAy
+qku
+dBF
+dRM
+dRM
+dRM
+dRM
+dRM
+oRM
+ujw
+vFi
+vFi
+"}
+(102,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+kTB
+hlq
+sxT
+bps
+bzh
+qcH
+veQ
+veQ
+ifb
+aUk
+veQ
+iSO
+eBq
+kmt
+rmR
+eay
+tfg
+tfg
+tfg
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dLV
+dLV
+dLV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+uXa
+wSo
+var
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yah
+wvj
+hKV
+hKV
+iOe
+iOe
+iOe
+hKV
+hKV
+wvj
+xOR
+dja
+bAn
+aed
+dsO
+dja
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+bcy
+cII
+fKq
+fKq
+pJm
+bcy
+llG
+fKq
+pmn
+bcy
+fKq
+hAG
+hAG
+fKq
+bcy
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+yaW
+yaW
+jNE
+mJV
+mJV
+mJV
+qsI
+ndp
+mcq
+mSQ
+wzi
+wxC
+gAy
+qku
+ouL
+gGS
+gGS
+aij
+gGS
+gGS
+eoN
+ujw
+vFi
+vFi
+"}
+(103,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+tfg
+hlq
+qJf
+veQ
+bps
+jfb
+sEM
+sEM
+mOU
+sEM
+sEM
+eBq
+kmt
+sxT
+qJf
+eay
+ydh
+tfg
+tfg
+tfg
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nZC
+nZC
+nZC
+nZC
+nZC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yah
+wvj
+wvj
+nHB
+sMH
+sMH
+sMH
+sMH
+wvj
+wvj
+xOR
+dja
+dja
+bYO
+dja
+dja
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+bcy
+ado
+fKq
+fKq
+ljk
+bcy
+hNs
+hNs
+hNs
+bcy
+fKq
+fKq
+fKq
+fKq
+bcy
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+yaW
+yaW
+jSo
+mMY
+nEz
+mMY
+qzv
+ndp
+mcq
+mSQ
+wzi
+wxC
+gAy
+qku
+dHj
+crR
+crR
+crR
+crR
+crR
+xzB
+ujw
+vFi
+vFi
+"}
+(104,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+hlq
+hol
+qJf
+veQ
+uEJ
+wHJ
+ydh
+ydh
+ydh
+qqh
+kmt
+asI
+qJf
+iSO
+cdV
+ydh
+tfg
+ydh
+tfg
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yah
+wvj
+wvj
+wvj
+wvj
+wvj
+wvj
+wvj
+wvj
+wvj
+xOR
+tnB
+dja
+oTY
+dja
+tnB
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+bcy
+bcy
+rUb
+fKq
+crh
+bcy
+tnB
+tnB
+tnB
+bcy
+bcy
+dqA
+bcy
+bcy
+bcy
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+bHc
+yaW
+jVC
+nlY
+nEz
+nlY
+qYP
+ndp
+mcq
+mSQ
+wzi
+wxC
+gAy
+qku
+fTy
+dRM
+dRM
+dRM
+dRM
+dRM
+rAs
+ujw
+vFi
+vFi
+"}
+(105,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+tfg
+hol
+aYO
+qJf
+veQ
+eay
+ydh
+ydh
+ydh
+xpG
+asI
+qJf
+iSO
+rWU
+ydh
+ydh
+ydh
+ydh
+tfg
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+yah
+yah
+yah
+yah
+yah
+yah
+yah
+yah
+yah
+yah
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+bcy
+bcy
+xZf
+fKq
+qez
+bcy
+tnB
+tnB
+tnB
+bcy
+fKq
+fKq
+rxe
+bcy
+bcy
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+yaW
+yaW
+kcu
+nEz
+nEz
+nEz
+mSQ
+ndp
+mcq
+mSQ
+wzi
+wxC
+wxC
+uNS
+fTy
+dRM
+aUa
+aUa
+aUa
+dRM
+rAs
+ujw
+vFi
+vFi
+"}
+(106,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+qxH
+sEM
+sEM
+cdV
+ydh
+ydh
+ydh
+qxH
+sEM
+sEM
+cdV
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+tnB
+bcy
+bcy
+tel
+pEl
+bcy
+tnB
+tnB
+tnB
+bcy
+bPm
+fKq
+bcy
+bcy
+tnB
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+yaW
+yaW
+kgk
+nlY
+nEz
+nlY
+qYP
+ndp
+mcq
+mSQ
+wzi
+wxC
+gAy
+qku
+fTy
+dRM
+fTy
+dRM
+rAs
+dRM
+rAs
+ujw
+vFi
+vFi
+"}
+(107,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+tnB
+bcy
+bcy
+amV
+mhJ
+bcy
+tnB
+tnB
+tnB
+bcy
+kYK
+fKq
+bcy
+bcy
+tnB
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+yaW
+yaW
+auV
+nGr
+pDw
+nGr
+rgA
+ndp
+izM
+uxC
+wzi
+wxC
+gAy
+qku
+blO
+aUa
+blO
+vXb
+jHN
+aUa
+jHN
+ujw
+vFi
+vFi
+"}
+(108,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+tnB
+tnB
+bcy
+bcy
+bcy
+bcy
+tnB
+tnB
+tnB
+bcy
+bcy
+bcy
+bcy
+tnB
+tnB
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+dtV
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+dtV
+vFi
+vFi
+"}
+(109,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+spc
+oeT
+oeT
+oeT
+spc
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+wzi
+uZA
+uZA
+uZA
+uZA
+uZA
+uZA
+fAS
+gdn
+gdn
+gdn
+ujw
+vFi
+vFi
+"}
+(110,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+spc
+nAP
+jNd
+spc
+spc
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+tnB
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+naH
+vYh
+naH
+naH
+naH
+naH
+naH
+naH
+vYh
+naH
+wzi
+uZA
+uZA
+uZA
+uZA
+uZA
+uZA
+fAS
+gdn
+gdn
+gdn
+ujw
+vFi
+vFi
+"}
+(111,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+spc
+oeT
+oeT
+oeT
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+spc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+wzi
+uZA
+jFI
+uZA
+uZA
+uZA
+uZA
+fAS
+gdn
+gdn
+gdn
+ujw
+vFi
+vFi
+"}
+(112,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+nAP
+oeT
+oeT
+oeT
+nAP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+naH
+naH
+naH
+vYh
+naH
+naH
+vYh
+naH
+naH
+naH
+wzi
+uZA
+uZA
+uZA
+uZA
+uZA
+uZA
+fAS
+gdn
+gdn
+gdn
+ujw
+vFi
+vFi
+"}
+(113,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+eVH
+nAP
+jNd
+spc
+eVH
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+wzi
+uZA
+uZA
+uZA
+jun
+uZA
+uZA
+fAS
+gdn
+gdn
+gdn
+ujw
+vFi
+vFi
+"}
+(114,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+iJS
+hOO
+iJS
+uEh
+mvI
+hOO
+iJS
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+iJS
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+wzi
+uZA
+uZA
+uZA
+uZA
+uZA
+uZA
+fAS
+gdn
+gdn
+gdn
+ujw
+vFi
+vFi
+"}
+(115,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+ydh
+kTB
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+iJS
+iJS
+aGv
+hOO
+hNb
+hNb
+hNb
+hOO
+ijW
+vpQ
+vpQ
+fzw
+wRX
+rqK
+hOO
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+naH
+naH
+naH
+vYh
+naH
+naH
+vYh
+naH
+naH
+naH
+wzi
+uZA
+uZA
+mmH
+uZA
+uZA
+uZA
+fAS
+gdn
+gdn
+gdn
+ujw
+vFi
+vFi
+"}
+(116,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+avh
+ydh
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+ydh
+soR
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+kTB
+kTB
+kTB
+kTB
+kTB
+kTB
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+hOO
+wxm
+hOO
+hNb
+hNb
+hNb
+hOO
+viF
+hyl
+vpQ
+vpQ
+vpQ
+vpQ
+hOO
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+wzi
+uZA
+uZA
+joh
+uZA
+vsn
+uZA
+fAS
+gdn
+gdn
+gdn
+ujw
+vFi
+vFi
+"}
+(117,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+soR
+soR
+jsz
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+avh
+ydh
+pof
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+kTB
+kTB
+kTB
+kTB
+tfg
+kTB
+kTB
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+vpQ
+vpQ
+hOO
+uEh
+mvI
+hOO
+hOO
+viF
+fyE
+vpQ
+vpQ
+vpQ
+ujv
+hOO
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+hOO
+hOO
+hOO
+iJS
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+naH
+vYh
+naH
+naH
+naH
+naH
+naH
+naH
+vYh
+naH
+wzi
+uZA
+uZA
+uZA
+uZA
+uZA
+uZA
+fAS
+gdn
+gdn
+gdn
+ujw
+vFi
+vFi
+"}
+(118,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
+jsz
+jsz
+jsz
+hol
+sFS
+aQJ
+acI
+yiO
+krF
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+thj
+thj
+hol
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+kTB
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+bzt
+vpQ
+vKr
+hNb
+hNb
+hNb
+hOO
+uyy
+gyw
+hyl
+vpQ
+vpQ
+hRx
+hOO
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+kiA
+pmF
+uCQ
+sGE
+nbf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+naH
+wzi
+uZA
+uZA
+uZA
+uZA
+uZA
+uZA
+fAS
+gdn
+gdn
+gdn
+ujw
+vFi
+vFi
+"}
+(119,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
+hol
+tLx
+yap
+hol
+hXb
+qgG
+rOX
+sqP
+fBC
+omL
+rqY
+iai
+rgL
+hol
+gIe
+aap
+hol
+xfW
+azA
+sUX
+bgS
+hol
+hol
+hol
+hol
+tfg
+tfg
+tfg
+vne
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+vpQ
+vpQ
+hOO
+lbF
+hNb
+hNb
+hOO
+vpQ
+vpQ
+hmc
+rnX
+weS
+mrI
+hOO
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+kiA
+pmF
+pmF
+uCQ
+sGE
+nbf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+dtV
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+dtV
+vFi
+vFi
+"}
+(120,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
+hol
+ovR
+ovR
+hol
+rGM
+rCx
+iBk
+oEq
+avb
+qzw
+wfq
+azA
+paX
+hol
+gIe
+gIe
+hol
+orF
+cym
+cym
+paX
+hol
+nrJ
+nIX
+hol
+tfg
+tfg
+tfg
+vne
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+hOO
+emG
+hOO
+kpJ
+hNb
+hNb
+hOO
+gqt
+uEh
+hOO
+hOO
+hOO
+hOO
+kiA
+iJS
+bew
+bew
+bew
+iJS
+bew
+bew
+bew
+iJS
+bew
+bew
+bew
+iJS
+hOO
+hOO
+kiA
+pmF
+pmF
+pmF
+uCQ
+sGE
+nbf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+wzi
+xJI
+fZg
+xcM
+tpT
+tZS
+tZS
+tZS
+tZS
+tZS
+hzA
+ujw
+vFi
+vFi
+"}
+(121,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
+hol
+ovR
+ovR
+hol
+azA
+qgG
+gsl
+rOX
+fBC
+aak
+eLE
+kRC
+kRC
+aZK
+gBb
+pNe
+uWe
+nIR
+cym
+cym
+azA
+cmw
+gKE
+vTu
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+iJS
+iJS
+lVt
+hOO
+qRp
+hNb
+hNb
+hNb
+hNb
+hKM
+hOO
+aQA
+lkY
+veR
+abv
+hOO
+aoc
+aoc
+aoc
+hOO
+hvN
+hvN
+hvN
+hOO
+eKr
+eKr
+eKr
+hOO
+pmF
+pmF
+pmF
+pmF
+pmF
+pmF
+uCQ
+sGE
+nbf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+wzi
+xJI
+fZg
+xcM
+fIh
+tcF
+tcF
+tcF
+tcF
+tcF
+cQW
+ujw
+vFi
+vFi
+"}
+(122,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+jsz
+baw
+vsC
+vsC
+hol
+vpY
+fDl
+azA
+azA
+kbL
+lIN
+wTT
+azA
+bqs
+hol
+rfz
+gIe
+hol
+rSP
+cym
+cym
+azA
+hol
+dyy
+rxS
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+iJS
+hOO
+hOO
+lbF
+hNb
+hNb
+hNb
+hNb
+hKM
+hOO
+vpQ
+vpQ
+vpQ
+vpQ
+hOO
+aoc
+aoc
+aoc
+hOO
+hvN
+hvN
+hvN
+hOO
+eKr
+eKr
+eKr
+hOO
+pmF
+pmF
+pmF
+pmF
+pmF
+pmF
+uCQ
+sGE
+nbf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+wzi
+xJI
+xJI
+lRR
+fIh
+tcF
+tcF
+tcF
+tcF
+tcF
+cQW
+ujw
+vFi
+vFi
+"}
+(123,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+hol
+hol
+ovR
+ovR
+hol
+pGZ
+hol
+hol
+cmw
+hol
+hol
+eBr
+eaF
+jZY
+hol
+rfz
+gIe
+hol
+rvp
+eaF
+lCt
+jcb
+hol
+hol
+hol
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+hOO
+kpJ
+hKM
+lbF
+lbF
+hNb
+hNb
+hOO
+ojq
+vpQ
+vpQ
+pvW
+hOO
+aoc
+aoc
+aoc
+hOO
+hvN
+hvN
+hvN
+hOO
+eKr
+eKr
+eKr
+hOO
+pmF
+kiA
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+iJS
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+wzi
+xJI
+fZg
+xcM
+fIh
+tcF
+tcF
+tcF
+tcF
+tcF
+cQW
+ujw
+vFi
+vFi
+"}
+(124,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+hol
+ovR
+ovR
+ovR
+osz
+wmy
+jvB
+hol
+gKE
+nrJ
+hol
+hol
+hol
+hol
+hol
+rfz
+dhM
+hol
+hol
+hol
+hol
+hol
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+jsz
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+fSd
+qRp
+hKM
+kpJ
+kpJ
+hNb
+hNb
+hOO
+vYY
+vpQ
+vpQ
+izZ
+hOO
+aoc
+poR
+aoc
+hOO
+hvN
+oJC
+hvN
+hOO
+eKr
+eGl
+eKr
+hOO
+pmF
+hOO
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+wzi
+xJI
+fZg
+xcM
+ire
+aFN
+aFN
+aFN
+aFN
+aFN
+cdI
+ujw
+vFi
+vFi
+"}
+(125,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+hol
+ovR
+ovR
+ovR
+hol
+tLx
+ovR
+hol
+heO
+gKE
+hol
+oaz
+sLr
+fJh
+hol
+rfz
+gIe
+hol
+phB
+gIe
+gCT
+uoc
+hol
+hol
+hol
+hol
+tfg
+tfg
+tfg
+tfg
+jsz
+jsz
+tfg
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+iJS
+kiA
+hOO
+uEh
+hOO
+kiA
+hNb
+hKM
+hOO
+vpQ
+vpQ
+vpQ
+vpQ
+hOO
+aoc
+aoc
+aoc
+hOO
+hvN
+hvN
+hvN
+hOO
+eKr
+eKr
+eKr
+hOO
+pmF
+hOO
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+wzi
+xJI
+fZg
+xcM
+cxI
+rWb
+rWb
+rWb
+rWb
+rWb
+whJ
+ujw
+vFi
+vFi
+"}
+(126,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+hol
+tLx
+ovR
+yap
+hol
+ovR
+hrS
+hol
+dyy
+nIX
+hol
+jPi
+jhH
+nQx
+qah
+rfz
+gIe
+hol
+rfz
+qXR
+qXR
+jGm
+hol
+nrJ
+nIX
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+tfg
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+uEh
+lms
+iHP
+dUq
+iHP
+hOO
+hNb
+hKM
+hOO
+hOO
+gqt
+wwb
+hOO
+hOO
+hOO
+abt
+hOO
+iJS
+hOO
+xsW
+hOO
+iJS
+hOO
+mlz
+hOO
+iJS
+izl
+hOO
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+wzi
+xJI
+fZg
+xcM
+vTw
+tcF
+tcF
+tcF
+tcF
+tcF
+nec
+ujw
+vFi
+vFi
+"}
+(127,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+hol
+hol
+hol
+ovR
+ovR
+ovR
+hol
+ovR
+ovR
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+cIi
+pNe
+slw
+yib
+qXR
+qXR
+gIe
+cmw
+gKE
+vTu
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+uEh
+mfI
+kJS
+cmf
+lVU
+uEh
+hNb
+hKM
+hKM
+hKM
+hNb
+hNb
+hKM
+xHX
+hKM
+uxd
+hKM
+xHX
+hKM
+kOt
+hKM
+xHX
+hKM
+sqk
+hNb
+uNQ
+hNb
+osg
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+wzi
+xJI
+xJI
+qTL
+vTw
+tcF
+tcF
+tcF
+tcF
+tcF
+nec
+ujw
+vFi
+vFi
+"}
+(128,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+dbz
+nyI
+dbz
+kIs
+jNT
+hol
+ovR
+ovR
+ovR
+hol
+tLx
+ovR
+ovR
+ovR
+ovR
+lJw
+meV
+tCn
+ovR
+hol
+rfz
+gIe
+hol
+uiU
+qXR
+qXR
+gIe
+hol
+dyy
+rxS
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+uEh
+lrG
+lVU
+lVU
+lVU
+abx
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hKM
+dHC
+hOO
+dJm
+cuh
+dJm
+dJm
+dJm
+dJm
+dJm
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+wzi
+xJI
+fZg
+xcM
+vTw
+tcF
+tcF
+tcF
+tcF
+tcF
+nec
+ujw
+vFi
+vFi
+"}
+(129,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+kdy
+omo
+jXp
+uaj
+tyg
+huK
+huK
+huK
+huK
+huK
+huK
+meV
+huK
+huK
+sMQ
+hol
+kyg
+fbI
+hol
+rfz
+gIe
+hol
+asG
+moj
+wcE
+tIG
+hol
+hol
+hol
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+tfg
+tfg
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+uEh
+vej
+kJS
+sTI
+lVU
+uEh
+hNb
+hKM
+hKM
+hKM
+hNb
+hNb
+hKM
+kUQ
+hKM
+lFQ
+hKM
+kUQ
+hKM
+hNb
+hKM
+kUQ
+hKM
+hNb
+hNb
+pdQ
+hNb
+osg
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+ntO
+wzi
+xJI
+fZg
+xcM
+vBE
+ded
+ded
+ded
+ded
+ded
+lwn
+ujw
+vFi
+vFi
+"}
+(130,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+hlq
+ydh
+hlq
+hlq
+hlq
+hlq
+hlq
+ovR
+ovR
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+kyg
+ovR
+xfJ
+rfz
+dhM
+hol
+hol
+hol
+hol
+hol
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+jsz
+tfg
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+uEh
+dxR
+iHP
+ifp
+iHP
+hOO
+hNb
+hKM
+hOO
+hOO
+gqt
+wwb
+hOO
+kiA
+hOO
+slD
+hOO
+iJS
+hOO
+bgl
+hOO
+iJS
+hOO
+nCN
+hOO
+iJS
+izl
+hOO
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+dtV
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+qCW
+dtV
+vFi
+vFi
+"}
+(131,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+kTB
+kTB
+tfg
+tfg
+hlq
+tcW
+ovR
+cVL
+wQZ
+hol
+tfg
+tfg
+tfg
+tfg
+hol
+kyg
+lJw
+pNe
+jlq
+gIe
+hol
+hem
+fJc
+aAg
+hUC
+hol
+hol
+hol
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+jsz
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+iJS
+kiA
+hOO
+uEh
+hOO
+kiA
+hNb
+hKM
+hOO
+vpQ
+vpQ
+vpQ
+vpQ
+hOO
+xmx
+xmx
+xmx
+hOO
+pmF
+pmF
+pmF
+hOO
+pmF
+pmF
+pmF
+hOO
+pmF
+hOO
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+hlJ
+ieX
+xCw
+nGt
+tnP
+tnP
+tnP
+tnP
+tnP
+vdG
+wzi
+xMb
+hVd
+hVd
+hVd
+hVd
+hVd
+hVd
+hVd
+hVd
+hVd
+ujw
+vFi
+vFi
+"}
+(132,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+tfg
+kTB
+ydh
+kTB
+tfg
+tfg
+tfg
+hlq
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+kyg
+kyg
+hol
+rfz
+gIe
+hol
+iye
+ovR
+kyg
+ffK
+hol
+nrJ
+nIX
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+hKM
+iHc
+kpJ
+cZO
+hNb
+hNb
+hOO
+lEX
+vpQ
+vpQ
+uam
+hOO
+xmx
+fRw
+xmx
+hOO
+pmF
+pmF
+pmF
+hOO
+pmF
+pmF
+pmF
+hOO
+pmF
+hOO
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+dJm
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+hlJ
+ieX
+xCw
+nOa
+uXF
+uXF
+uXF
+uXF
+uXF
+veN
+wzi
+xMb
+hVd
+hVd
+iMS
+iMS
+iMS
+iMS
+hVd
+hVd
+hVd
+ujw
+vFi
+vFi
+"}
+(133,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+kTB
+kTB
+kTB
+tfg
+tfg
+hlq
+hlq
+xbZ
+xbZ
+xls
+lJw
+huK
+huK
+huK
+huK
+huK
+huK
+pkK
+xzH
+hol
+cIi
+pNe
+fsD
+huK
+huK
+sMQ
+ovR
+cmw
+gKE
+vTu
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+tfg
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+hOO
+hKM
+iHc
+kpJ
+cZO
+hNb
+hNb
+hOO
+ePG
+vpQ
+vpQ
+pdr
+hOO
+xmx
+xmx
+xmx
+hOO
+pmF
+pmF
+pmF
+hOO
+pmF
+pmF
+pmF
+hOO
+pmF
+kiA
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+iJS
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+hlJ
+hlJ
+krw
+nOa
+uXF
+uXF
+uXF
+uXF
+uXF
+veN
+wzi
+hVd
+hVd
+hVd
+sdB
+sdB
+sdB
+sdB
+hVd
+hVd
+hVd
+ujw
+vFi
+vFi
+"}
+(134,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+tfg
+tfg
+hlq
+gEf
+sMC
+sMC
+jDl
+kyg
+vvO
+hol
+ovR
+ovR
+ovR
+hol
+qZO
+tCn
+hol
+rfz
+gIe
+hol
+iFK
+ovR
+ovR
+ovR
+hol
+jnw
+rxS
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+tfg
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+iJS
+hOO
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hKM
+hOO
+vpQ
+vpQ
+vpQ
+vpQ
+hOO
+xmx
+xmx
+xmx
+hOO
+pmF
+pmF
+pmF
+hOO
+pmF
+pmF
+pmF
+hOO
+pmF
+pmF
+pmF
+pmF
+pmF
+pmF
+uCQ
+mBX
+nbf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+hlJ
+ieX
+xCw
+nOa
+uXF
+uXF
+uXF
+uXF
+uXF
+veN
+wzi
+hVd
+hVd
+dfN
+gFU
+vMV
+vMV
+crS
+smF
+iMS
+hVd
+ujw
+vFi
+vFi
+"}
+(135,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+kTB
+tfg
+tfg
+hlq
+mfT
+sMC
+sMC
+sMC
+kyg
+hol
+hol
+tLx
+ovR
+hol
+hol
+gIe
+tBg
+hol
+rfz
+gIe
+hol
+xnG
+waY
+ovR
+lHN
+hol
+hol
+hol
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+iJS
+iJS
+hNb
+hNb
+hNb
+hNb
+hNb
+hNb
+hKM
+hKM
+hOO
+ofa
+lkY
+veR
+ddF
+hOO
+xmx
+xmx
+xmx
+hOO
+pmF
+pmF
+pmF
+hOO
+pmF
+pmF
+pmF
+hOO
+pmF
+pmF
+pmF
+pmF
+pmF
+pmF
+uCQ
+mBX
+nbf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+hlJ
+ieX
+xCw
+nOo
+xVy
+xVy
+xVy
+xVy
+xVy
+eeQ
+wzi
+hVd
+iMS
+wFA
+iiH
+pyj
+vxJ
+wMM
+smF
+iMS
+hVd
+ujw
+vFi
+vFi
+"}
+(136,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+kTB
+kTB
+tfg
+hlq
+dkR
+oTO
+uxc
+njq
+kaO
+gIe
+fJc
+ovR
+hol
+hol
+hol
+gIe
+rfz
+hol
+rfz
+dhM
+hol
+hol
+hol
+hol
+hol
+hol
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+hKM
+hNb
+hNb
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+iJS
+bew
+bew
+bew
+iJS
+bew
+bew
+bew
+iJS
+bew
+bew
+bew
+iJS
+hOO
+hOO
+kiA
+pmF
+pmF
+pmF
+uCQ
+mBX
+nbf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+hlJ
+ieX
+xCw
+nOL
+hnX
+hnX
+hnX
+hnX
+hnX
+kQH
+wzi
+hVd
+iMS
+wFA
+iiH
+jZb
+pen
+wMM
+smF
+iMS
+hVd
+ujw
+vFi
+vFi
+"}
+(137,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+hlq
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+rfz
+ovR
+gIe
+hol
+hol
+wMr
+hol
+gIe
+rfz
+hol
+rfz
+gIe
+hol
+tfg
+tfg
+kTB
+kTB
+kTB
+kTB
+kTB
+tfg
+epg
+aid
+tfg
+tfg
+tfg
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+lbF
+hNb
+hNb
+hOO
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+pmF
+rkG
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+kiA
+pmF
+pmF
+uCQ
+mBX
+nbf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+hlJ
+ieX
+xCw
+nPG
+uXF
+uXF
+uXF
+uXF
+uXF
+vkZ
+wzi
+hVd
+iMS
+wFA
+crS
+ogP
+ogP
+xzI
+iur
+hVd
+hVd
+ujw
+vFi
+vFi
+"}
+(138,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+hlq
+hlq
+sqP
+sqP
+ewn
+jai
+hol
+lJw
+huK
+yib
+ovR
+hol
+hol
+qJS
+qJS
+hol
+gIe
+rfz
+hol
+rfz
+gIe
+hol
+tfg
+kTB
+kTB
+ydh
+mFz
+mFz
+kTB
+kTB
+kTB
+kTB
+tfg
+tfg
+jsz
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+kpJ
+hNb
+hNb
+hOO
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+rkG
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+kiA
+pmF
+uCQ
+mBX
+nbf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+hlJ
+hlJ
+krD
+nPG
+uXF
+uXF
+uXF
+uXF
+uXF
+vkZ
+wzi
+hVd
+hVd
+hVd
+oAo
+oAo
+oAo
+oAo
+hVd
+hVd
+hVd
+ujw
+vFi
+vFi
+"}
+(139,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+hlq
+hkQ
+sqP
+rVH
+tFW
+bAY
+hol
+rfz
+gIe
+ovR
+hol
+hol
+qJS
+qJS
+qJS
+hol
+gIe
+rfz
+hol
+rfz
+gIe
+sAP
+kTB
+kTB
+epg
+ydh
+mFz
+ydh
+kTB
+epg
+kTB
+tfg
+tfg
+tfg
+jsz
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+qRp
+hNb
+uXj
+sRA
+hQH
+uIe
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+rkG
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+hOO
+hOO
+hOO
+iJS
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+hlJ
+ieX
+xCw
+nPG
+uXF
+uXF
+uXF
+uXF
+uXF
+vkZ
+wzi
+hVd
+hVd
+hVd
+iMS
+iMS
+iMS
+iMS
+hVd
+hVd
+rZW
+ujw
+vFi
+vFi
+"}
+(140,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+hlq
+fGQ
+sqP
+lmq
+oEq
+oEq
+peQ
+bMy
+gIe
+gIe
+hol
+sBy
+qJS
+dGT
+qJS
+hol
+beU
+lNr
+hol
+rfz
+gIe
+hol
+mSn
+kTB
+kTB
+ydh
+mFz
+ydh
+mFz
+kTB
+kTB
+tfg
+tfg
+jsz
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hOO
+hKM
+hNb
+hNb
+hOO
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+rkG
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+wmP
+hlJ
+ieX
+xCw
+oIg
+pGN
+pGN
+pGN
+pGN
+pGN
+vwu
+wzi
+hVd
+hVd
+hVd
+hVd
+hVd
+hVd
+hVd
+hVd
+hVd
+rZW
+ujw
+vFi
+vFi
+"}
+(141,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+hlq
+gyC
+sqP
+uRl
+sqP
+kOm
+hol
+rfz
+gIe
+gIe
+hol
+lHy
+qJS
+wpP
+qJS
+hol
+gIe
+rfz
+hol
+rfz
+gIe
+hol
+tfg
+tfg
+gko
+dbz
+mFz
+ydh
+ydh
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+iJS
+iJS
+hNb
+hNb
+hOO
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+hQH
+pmF
+rkG
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+dtV
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+dtV
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+oyu
+dtV
+vFi
+vFi
+"}
+(142,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+hlq
+vDC
+sqP
+pfy
+sqP
+ckp
+xls
+rfz
+gIe
+gIe
+hol
+dBP
+qJS
+ykT
+qJS
+hol
+gIe
+rfz
+hol
+bGH
+hlq
+hlq
+hlq
+hlq
+hlq
+hlq
+hlq
+hlq
+tfg
+tfg
+tfg
+tfg
+tfg
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+iJS
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+hOO
+iJS
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(143,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+hlq
+vjT
+sqP
+cFL
+sqP
+ljE
+xls
+rfz
+gIe
+gIe
+hol
+vvS
+qJS
+ocZ
+qJS
+hol
+gIe
+rfz
+hol
+rfz
+hlq
+ooQ
+iyX
+wtW
+qJS
+qJS
+qJS
+hlq
+tfg
+tfg
+tfg
+tfg
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(144,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+xls
+xls
+xls
+hlq
+hlq
+ydh
+ydh
+ydh
+ydh
+ydh
+hlq
+sAG
+uZf
+aJi
+sqP
+xls
+xls
+rfz
+gIe
+gIe
+hol
+kdo
+qJS
+byy
+qJS
+hol
+gIe
+rfz
+hol
+rfz
+hlq
+gPr
+qUY
+ydh
+iKH
+qJS
+fuU
+hlq
+tfg
+tfg
+tfg
+tfg
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(145,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+xls
+xls
+jiZ
+dGy
+nAg
+hlq
+hlq
+xls
+hlq
+xls
+hlq
+hlq
+hlq
+hol
+hol
+xls
+xls
+gIe
+rfz
+gIe
+gIe
+hol
+mPV
+qJS
+pJD
+qJS
+hol
+gIe
+rfz
+hol
+rfz
+hlq
+ecS
+ffE
+txA
+qJS
+qJS
+qJS
+hlq
+tfg
+tfg
+tfg
+tfg
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+eVq
+rob
+igi
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(146,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+xls
+xII
+iTr
+pKS
+pNe
+xxT
+pNe
+pNe
+pNe
+pNe
+pNe
+pNe
+ukZ
+mUd
+vyW
+wbJ
+pNe
+pNe
+yib
+gIe
+owZ
+hol
+ooi
+qJS
+cQY
+qJS
+hol
+gIe
+lcA
+hol
+aSc
+hlq
+hlq
+hlq
+hlq
+hlq
+acK
+hlq
+hlq
+hol
+hol
+hol
+hol
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+eVq
+eVq
+jqH
+wvJ
+eVq
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(147,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+xls
+puo
+pUN
+qfC
+gIe
+xls
+gIe
+gIe
+gIe
+gIe
+gIe
+gIe
+rfz
+wlF
+rpC
+oVq
+ooP
+gIe
+ooP
+gIe
+gIe
+hol
+hop
+qJS
+uNb
+qJS
+aeN
+gIe
+dpS
+qnI
+yib
+aap
+gIe
+gIe
+gIe
+gIe
+gIe
+hol
+wPf
+qUt
+rLA
+nxv
+hol
+ydh
+kTB
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+ekb
+tuy
+jfd
+kmF
+aaK
+dBf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(148,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+xls
+iIH
+sNe
+bUI
+gIe
+lTN
+gIe
+bFJ
+gIe
+gIe
+gIe
+gIe
+rfz
+wlF
+rpC
+eTC
+ooP
+ooP
+gIe
+gIe
+hol
+hol
+pBc
+qJS
+dBV
+qJS
+hol
+gIe
+rfz
+gIe
+gIe
+gIe
+gIe
+gIe
+gIe
+gIe
+gIe
+hol
+xxL
+rtJ
+sMC
+fro
+hol
+kTB
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+mGk
+hIN
+fXl
+jfd
+xRx
+pQr
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(149,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+xls
+xls
+kXp
+qfC
+vRF
+hol
+dcP
+hol
+hol
+hol
+hol
+hol
+jiq
+axo
+hol
+hol
+bZU
+hlq
+tVX
+tgB
+hlq
+hlq
+hlq
+hol
+hol
+hol
+hol
+beU
+lNr
+hol
+hol
+hol
+hol
+hol
+hol
+smh
+pNe
+gzT
+aLm
+cfm
+aLm
+oMV
+hol
+kTB
+kTB
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+eVq
+eVq
+eVq
+jtr
+eVq
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(150,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+xls
+xls
+xls
+hlq
+hol
+dbz
+dWg
+awS
+awS
+hol
+tPY
+fgA
+tCi
+uYD
+hol
+lRi
+dHk
+hlq
+rze
+fcH
+vRO
+hlq
+xJn
+rIA
+xDc
+hol
+gIe
+rfz
+xls
+puz
+gIe
+ydh
+gIe
+hol
+bGH
+dhM
+hol
+uNs
+rtJ
+sMC
+guK
+hol
+kTB
+kTB
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+eVq
+aQM
+kmc
+iYC
+aaL
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(151,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kVf
+ueJ
+dbz
+dbz
+dbz
+lRi
+kVf
+tUe
+fgA
+eci
+tCi
+dnv
+lRi
+lSl
+hlq
+hlq
+cQp
+hlq
+hlq
+qbW
+qJS
+qJS
+xls
+gIe
+rfz
+xls
+ydh
+ydh
+ydh
+ydh
+hol
+rfz
+gIe
+hol
+xgQ
+hXA
+xyF
+gON
+xls
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+eVq
+wDN
+wys
+eVq
+vFi
+eVq
+eVq
+uvs
+iYC
+hAJ
+eVq
+vFi
+eVq
+chd
+lDJ
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(152,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kVf
+xdo
+bnU
+kVf
+kVf
+kVf
+kVf
+eOZ
+kKj
+fqr
+tfg
+hlq
+dbz
+hlq
+hlq
+vhN
+cwn
+tpB
+hlq
+hlq
+pyc
+qJS
+lIl
+gIe
+uCB
+fny
+jzJ
+qoK
+jSG
+dhM
+hol
+jvF
+ykD
+hol
+hol
+hol
+hol
+xls
+xls
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+eVq
+uvs
+mbW
+sVf
+eVq
+vFi
+eVq
+vvF
+eVq
+iYC
+aaM
+eVq
+vFi
+eVq
+xiw
+iYC
+uvs
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(153,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kVf
+kVf
+uMw
+kVf
+vBG
+gYE
+kVf
+tfg
+hlq
+tfg
+hlq
+tfg
+dbz
+hlq
+vUe
+laV
+brR
+rbF
+eke
+hlq
+gwg
+jNr
+hol
+ydh
+uCB
+fny
+uHn
+qDH
+lDh
+ydh
+wBv
+fNL
+inQ
+hol
+tfg
+tfg
+kTB
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+eVq
+vqL
+iYC
+jWH
+eVq
+vFi
+eVq
+cfM
+pDk
+iYC
+aek
+eVq
+vFi
+eVq
+txU
+iYC
+cyv
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(154,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+rZf
+cus
+bnU
+bnU
+bnU
+qaR
+kTB
+kTB
+tfg
+tfg
+tfg
+hlq
+hlq
+hlq
+mjW
+sbM
+nfP
+dGS
+mjW
+hlq
+hlq
+hol
+hol
+gIe
+rfz
+fny
+eDM
+kHv
+ury
+tfB
+hol
+nrg
+nmF
+hol
+tfg
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+cay
+cay
+cay
+cay
+cay
+cay
+vFi
+vFi
+vFi
+vFi
+eVq
+dOR
+iYC
+fZh
+eVq
+vFi
+eVq
+dIK
+eVq
+cue
+uhT
+eVq
+vFi
+eVq
+cpo
+iYC
+eKV
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(155,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tMW
+bwq
+sBo
+eSU
+bnU
+bnU
+vIG
+tfg
+kTB
+tfg
+tfg
+tfg
+hlq
+wgy
+mjW
+tGu
+dWG
+nJz
+mjW
+wgy
+hlq
+rTt
+hol
+gIe
+rfz
+fny
+ydh
+ydh
+ydh
+ydh
+hol
+rfz
+gIe
+hol
+ydh
+ydh
+ydh
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+tZi
+qej
+cWy
+cWy
+rry
+cay
+vFi
+vFi
+vFi
+vFi
+eVq
+eVq
+wfM
+eVq
+eVq
+eVq
+eVq
+uvs
+blg
+iYC
+iYC
+eVq
+eVq
+eVq
+eVq
+sLV
+eVq
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(156,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tMW
+fxD
+ahW
+hel
+hel
+bnU
+aVA
+kTB
+rTw
+tTY
+tfg
+hlq
+hlq
+hlq
+mjW
+qXP
+ilG
+hlL
+mjW
+hlq
+hlq
+tfg
+hol
+gIe
+uCB
+fny
+aNI
+gIe
+ydh
+gIe
+hol
+bGH
+dhM
+hol
+ydh
+tfg
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+tnm
+qej
+qej
+qej
+cay
+cay
+cay
+vFi
+vFi
+vFi
+eVq
+hpt
+iYC
+iYC
+eVq
+eVq
+eVq
+eVq
+eVq
+iYC
+sZs
+uvs
+eVq
+iYC
+iYC
+iYC
+tEY
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(157,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+eld
+mxa
+hel
+ggh
+vNs
+jTV
+ntW
+bhX
+lZH
+tfg
+tfg
+tfg
+tfg
+hlq
+vUe
+wrf
+rov
+xZe
+eke
+hlq
+tfg
+tfg
+hol
+beU
+lNr
+hol
+hol
+hol
+hol
+hol
+hol
+rfz
+gIe
+hol
+ydh
+kTB
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+cay
+cay
+cay
+cay
+cay
+cay
+tZi
+qej
+qej
+qej
+wVn
+mwv
+cay
+vFi
+vFi
+vFi
+eVq
+iWn
+iYC
+iYC
+sOh
+eVq
+aaH
+aaI
+aaJ
+iYC
+iYC
+aaN
+eVq
+wOF
+iYC
+iYC
+iYC
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(158,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+kVf
+ckJ
+mkR
+ggh
+jTV
+lRw
+gjv
+vIG
+pKi
+eSU
+tfg
+hlq
+hlq
+hlq
+mjW
+jDB
+vda
+vmA
+mjW
+hlq
+hlq
+tfg
+hol
+gIe
+rfz
+csC
+gIe
+gIe
+smh
+pNe
+pNe
+yib
+gIe
+hol
+tfg
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+ghm
+bDI
+cay
+ghm
+bDI
+cay
+cay
+cay
+bkq
+cay
+cay
+cay
+cay
+vFi
+vFi
+vFi
+aJs
+uYt
+wpF
+sZW
+iYC
+lKL
+iYC
+iYC
+jfd
+jfd
+iYC
+iYC
+lKL
+iYC
+wpF
+use
+vTs
+wLq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(159,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+fRb
+iMC
+gpK
+jTV
+qng
+jcu
+jTV
+gpK
+pKi
+ufm
+tfg
+tfg
+hlq
+wgy
+mjW
+oal
+kOE
+xzN
+mjW
+wgy
+hlq
+rTt
+hol
+gIe
+rfz
+gIe
+gIe
+eOs
+rfz
+eOs
+gIe
+gIe
+gIe
+hol
+hlq
+hlq
+hlq
+hlq
+xls
+xls
+xls
+ydh
+ydh
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hrx
+hqz
+hqz
+hqz
+hrx
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+waO
+bDI
+cay
+waO
+bDI
+cay
+tfr
+psU
+psU
+psU
+iVA
+cay
+vFi
+vFi
+vFi
+vFi
+xyk
+rnf
+xoz
+uYq
+iYC
+iYC
+iYC
+jfd
+jfd
+jfd
+jfd
+iYC
+iYC
+iYC
+eKP
+qxG
+hMe
+lCk
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(160,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+kVf
+kVf
+bDk
+jTV
+lRq
+vIG
+jTV
+frQ
+tTY
+tTY
+tfg
+hlq
+hlq
+hlq
+mjW
+npe
+xbe
+dqP
+mjW
+hlq
+hlq
+rTt
+hol
+gIe
+lcA
+hol
+hol
+xls
+ydX
+xls
+hol
+gIe
+gIe
+tUH
+dbz
+sMC
+dbz
+ses
+mFz
+sMC
+dbz
+mFz
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hqz
+hrx
+anI
+abi
+abj
+abm
+anI
+hrx
+hqz
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+cay
+tWr
+cay
+cay
+tWr
+cay
+tfr
+cNW
+vOq
+cNW
+xHf
+cay
+vFi
+vFi
+vFi
+vFi
+rnK
+rmU
+snr
+qxL
+ptH
+eVq
+iYC
+jfd
+cGb
+lAl
+jfd
+iYC
+eVq
+dVn
+lnW
+qxG
+wVE
+dOe
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(161,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+ydh
+tfg
+ntW
+jTV
+jTV
+jTV
+oUd
+gpK
+ntW
+lRi
+tTY
+tTY
+tfg
+tfg
+hlq
+uOw
+sFQ
+xtA
+dCC
+cwo
+hlq
+rTt
+tfg
+hol
+gIe
+rfz
+hol
+qkX
+oEq
+ken
+sqP
+hol
+gIe
+gIe
+gIe
+sMC
+sMC
+dbz
+ydh
+mFz
+ydh
+dbz
+dbz
+sMC
+mFz
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hrx
+hrx
+mhZ
+hrx
+hrx
+anI
+anI
+anI
+hrx
+hrx
+sws
+hrx
+hrx
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+psU
+psU
+psU
+psU
+psU
+psU
+psU
+cNW
+vOq
+cNW
+mWa
+cay
+vFi
+vFi
+vFi
+vFi
+eVq
+eVq
+eVq
+eVq
+eVq
+uvs
+iYC
+jfd
+hAc
+rKZ
+jfd
+iYC
+uvs
+eVq
+eVq
+eVq
+eVq
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(162,1,1) = {"
+jsz
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+soR
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+tfg
+tfg
+ydh
+tfg
+bOS
+vIG
+wSi
+jTV
+msJ
+ggh
+nFd
+bnU
+xqZ
+sTx
+hlq
+tfg
+hlq
+hlq
+qpy
+kgp
+jmT
+vju
+hlq
+rTt
+tfg
+hol
+gIe
+rfz
+hol
+sqP
+sqP
+hRE
+sqP
+hol
+hol
+hol
+hol
+hlq
+hlq
+hlq
+hlq
+mFz
+mFz
+xls
+hlq
+mFz
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hrx
+jIv
+vJX
+vJX
+szP
+hrx
+iIi
+jTs
+sbx
+hrx
+nhS
+anI
+nup
+nup
+hrx
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+psU
+psU
+psU
+psU
+psU
+psU
+psU
+cNW
+vOq
+cNW
+qRL
+cay
+vFi
+vFi
+vFi
+vFi
+vFi
+eVq
+eVq
+nbb
+pFL
+rXu
+azJ
+jfd
+cEH
+jPL
+jfd
+njH
+bLE
+gbx
+qIh
+eVq
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(163,1,1) = {"
+jsz
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+soR
+tfg
+ydh
+ydh
+tfg
+tfg
+wKW
+kVf
+ggh
+ggh
+ggh
+vIG
+iNt
+iNt
+hRJ
+lqC
+tfg
+tfg
+hlq
+hlq
+hlq
+sNs
+hlq
+hlq
+hlq
+tfg
+rTt
+hol
+gIe
+rfz
+xls
+cDB
+gWI
+rMD
+sqP
+sqP
+hlq
+tfg
+tfg
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hrx
+mDF
+dBp
+aSL
+vJX
+cQG
+hrx
+mdI
+anI
+sbx
+hrx
+vzH
+anI
+eGJ
+hDp
+mrP
+hrx
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+cay
+tWr
+cay
+cay
+tWr
+cay
+tmU
+cNW
+vOq
+cNW
+miQ
+cay
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+aJs
+cij
+iDN
+mvA
+iYC
+jfd
+vSG
+klk
+jfd
+iYC
+hEQ
+aiR
+rpy
+wLq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(164,1,1) = {"
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+tfg
+tfg
+tTY
+tTY
+tTY
+tTY
+tTY
+tfg
+goW
+sfB
+tfg
+hlq
+tfg
+hlq
+hlq
+vju
+vju
+vju
+hlq
+hlq
+hol
+hol
+hol
+gIe
+rfz
+xls
+cDB
+gWI
+rMD
+sqP
+ioS
+xls
+ydh
+kTB
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+cJr
+nYV
+bum
+aSL
+vJX
+vJX
+bmz
+anI
+anI
+anI
+bQG
+anI
+anI
+nup
+xSn
+nup
+dYz
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+waO
+bDI
+cay
+waO
+bDI
+cay
+gmT
+cNW
+vOq
+cNW
+dGo
+cay
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+xyk
+dJS
+pmt
+jwk
+iYC
+jfd
+dEQ
+eHg
+jfd
+iYC
+xOK
+oCx
+lZs
+lCk
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(165,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+hoC
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tTY
+tfg
+kiH
+tfg
+tfg
+tfg
+tfg
+hlq
+mas
+vju
+dqq
+pOq
+cFG
+hlq
+hol
+gIe
+gIe
+gIe
+rfz
+xls
+cDB
+gWI
+rMD
+sqP
+gWI
+xls
+kTB
+kTB
+kTB
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hrx
+xWR
+eVf
+eVf
+vJX
+vJX
+qZR
+hrx
+lWO
+anI
+abn
+hrx
+aLe
+anI
+ddi
+vUZ
+nup
+lIU
+hrx
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+ghm
+bDI
+cay
+ghm
+bDI
+cay
+tYa
+psU
+psU
+psU
+tDA
+cay
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+rnK
+sYg
+daZ
+tnE
+iYC
+jfd
+uTV
+hNB
+jfd
+iYC
+ehy
+pVs
+auL
+dOe
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(166,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+tfg
+jsz
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+hlq
+jMh
+vju
+cKg
+vZs
+xBl
+tgB
+glC
+gIe
+gIe
+gIe
+rfz
+hol
+sqP
+sqP
+hRE
+sqP
+pIn
+xls
+kTB
+kTB
+kTB
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hqz
+lMb
+vJX
+vJX
+vJX
+vJX
+vJX
+cQG
+hrx
+mLD
+anI
+abo
+hrx
+gFV
+anI
+anI
+anI
+anI
+anI
+lOZ
+hqz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+cay
+cay
+cay
+cay
+cay
+cay
+cay
+psU
+psU
+psU
+cay
+cay
+vFi
+vFi
+vFi
+vFi
+vFi
+eVq
+eVq
+hQX
+wCz
+kzm
+iYC
+jfd
+hZO
+bdJ
+jfd
+iYC
+ews
+vlF
+qpS
+eVq
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(167,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+jsz
+tfg
+tfg
+jsz
+jsz
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+hlq
+rSl
+vju
+dqq
+eGk
+hIC
+oeJ
+rJW
+gIe
+gIe
+gIe
+rfz
+hol
+ewn
+ewn
+mCA
+cDg
+sqP
+hlq
+ydh
+kTB
+ydh
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hrx
+oVM
+vJX
+vJX
+vJX
+vJX
+cdW
+hrx
+hrx
+hrx
+bQG
+hrx
+hrx
+hrx
+bVc
+rXM
+anI
+xzQ
+jfP
+mqH
+hrx
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+rLv
+hIM
+irq
+bFO
+psU
+psU
+psU
+psU
+psU
+cay
+vFi
+vFi
+vFi
+vFi
+eVq
+eVq
+eVq
+gZq
+nsF
+qKM
+eVq
+jfd
+jfd
+jfd
+jfd
+eVq
+gZq
+nsF
+qKM
+eVq
+eVq
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(168,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+tfg
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+hlq
+hlq
+vju
+vju
+vju
+hlq
+hlq
+hol
+hol
+hol
+hol
+cMS
+hol
+niv
+niv
+fDt
+hlq
+hlq
+hlq
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hrx
+hrx
+hrx
+hrx
+bmz
+hrx
+hrx
+hrx
+cJV
+alZ
+sbx
+fSY
+xBh
+hrx
+hrx
+hrx
+bQG
+hrx
+hrx
+hrx
+hrx
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+psU
+psU
+psU
+bFO
+psU
+cNW
+cNW
+cNW
+psU
+cay
+cay
+cay
+cay
+uvs
+eVq
+uvs
+fHO
+mDu
+epW
+epW
+eVq
+iYC
+jfd
+jfd
+iYC
+eVq
+pdZ
+jyH
+hCc
+eec
+uvs
+eVq
+uvs
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(169,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+jsz
+jsz
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+hlq
+hlq
+hlq
+hlq
+hlq
+hlq
+ghB
+gIe
+oYa
+hol
+rfz
+hol
+eoZ
+knf
+mAM
+qoU
+hlq
+tfg
+tfg
+kTB
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+trW
+hNi
+rzn
+jAg
+anI
+tyC
+tyC
+hrx
+vpu
+sbx
+anI
+sbx
+egw
+hrx
+tmh
+kst
+oBM
+kst
+hrx
+anI
+abr
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+kmk
+psU
+psU
+hVU
+psU
+cNW
+idu
+cNW
+psU
+hVU
+psU
+psU
+kOV
+tDo
+fqC
+tDo
+iYC
+jfd
+jfd
+jfd
+kzN
+jfd
+jfd
+jfd
+jfd
+kzN
+jfd
+jfd
+jfd
+wIz
+gDm
+yhb
+cmS
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(170,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+hlq
+fqz
+gIe
+eTi
+hol
+rfz
+hol
+kEg
+qvz
+vDP
+vUq
+hlq
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hqz
+pKo
+tNf
+tNf
+tNf
+anI
+anI
+anI
+bQG
+sbx
+anI
+hrx
+anI
+sbx
+bQG
+wOr
+fBu
+anI
+anI
+bQG
+anI
+vXY
+hqz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+yfr
+psU
+psU
+psU
+psU
+cNW
+idu
+cNW
+psU
+psU
+bkF
+psU
+kOV
+tDo
+oxh
+tDo
+iYC
+jfd
+jfd
+iYC
+iYC
+iYC
+jfd
+jfd
+iYC
+iYC
+iYC
+jfd
+jfd
+yaG
+xYj
+jaP
+hdC
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(171,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+hoC
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+jsz
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+hlq
+itl
+gIe
+eQU
+hol
+rfz
+hol
+gcV
+tiU
+vDP
+aQp
+hlq
+tfg
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+aFE
+tNf
+tNf
+tNf
+anI
+aaw
+aax
+hrx
+qwo
+jxo
+anI
+sbx
+fDU
+hrx
+ghq
+hYu
+eYg
+hYu
+hrx
+anI
+wsh
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+psU
+mVD
+psU
+bFO
+psU
+cNW
+cNW
+cNW
+psU
+cay
+cay
+cay
+cay
+uvs
+eVq
+uvs
+bpU
+iYC
+iYC
+sOh
+uvs
+iRn
+nAe
+gXg
+vvJ
+uvs
+wOF
+iYC
+iYC
+iYC
+uvs
+eVq
+uvs
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(172,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+muP
+muP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+jsz
+jsz
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+hlq
+hgO
+gIe
+jJl
+hol
+jni
+skk
+knf
+knf
+xys
+fSV
+hlq
+ydh
+ydh
+ydh
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hrx
+hrx
+hrx
+hrx
+bQG
+hrx
+hrx
+hrx
+shC
+oJW
+sbx
+vrD
+aWW
+hrx
+hrx
+hrx
+bQG
+hrx
+hrx
+hrx
+hrx
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+emV
+abu
+mJI
+bFO
+psU
+psU
+psU
+olA
+psU
+cay
+vFi
+vFi
+vFi
+vFi
+eVq
+eVq
+eVq
+jvs
+jvs
+uvs
+eVq
+aWB
+jfN
+jfd
+iYC
+eVq
+uvs
+aga
+aga
+eVq
+eVq
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(173,1,1) = {"
+dtV
+dtV
+ayg
+ayg
+ayg
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+aag
+aag
+aag
+aag
+aag
+lWz
+lWz
+lWz
+muP
+muP
+muP
+muP
+muP
+muP
+muP
+skB
+sLJ
+tyq
+muP
+muP
+muP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+hlq
+wum
+gIe
+stN
+hol
+rfz
+hol
+hol
+xfB
+hol
+hol
+hlq
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hrx
+hUU
+cES
+anI
+anI
+eRd
+gUz
+hrx
+hrx
+hrx
+bQG
+hrx
+hrx
+hrx
+idf
+aPq
+anI
+sbx
+sbx
+dFI
+hrx
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+cay
+cay
+cay
+cay
+cay
+sjO
+sjO
+cay
+cay
+cay
+vFi
+vFi
+vFi
+vFi
+vFi
+aJs
+fIr
+iYC
+iYC
+eVq
+gUS
+jfd
+jfd
+jfd
+nCs
+cxK
+eVq
+iYC
+iYC
+hPZ
+wLq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(174,1,1) = {"
+dtV
+aag
+ayg
+aBz
+ayg
+ayg
+asc
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aag
+aHc
+aHc
+huM
+aHc
+lWA
+mhK
+lWA
+muP
+mKp
+nvB
+oeg
+pkz
+pTU
+pTU
+pTU
+sOu
+sOu
+uAf
+vyw
+wkn
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+hlq
+luy
+gIe
+fPF
+hol
+rfz
+hol
+wRY
+sou
+bQc
+hlq
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hqz
+bdb
+pog
+anI
+anI
+anI
+anI
+bGq
+hrx
+rOh
+anI
+tpf
+hrx
+fJp
+anI
+anI
+anI
+anI
+anI
+lJa
+hqz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+aHY
+bUQ
+cNW
+iIl
+cNW
+cNW
+bUQ
+aHY
+cay
+vFi
+vFi
+vFi
+vFi
+vFi
+rnK
+viA
+iYC
+njH
+eVq
+gUS
+jfd
+jfd
+jfd
+jfd
+iTJ
+eVq
+azJ
+iYC
+rso
+dOe
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(175,1,1) = {"
+dtV
+aag
+ayg
+aBz
+aBz
+ayg
+ayg
+aag
+ePs
+gxT
+gyK
+gxT
+iGP
+aag
+aGU
+aHc
+aHc
+aHc
+huM
+lWA
+mkB
+lWA
+mwb
+mLa
+nvF
+muP
+pmE
+pTX
+pTX
+pTX
+pTX
+pTX
+uIW
+vyw
+wkn
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+jsz
+jsz
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+hlq
+hbJ
+gIe
+sXv
+hol
+rfz
+hol
+hVi
+sou
+bQc
+hlq
+tfg
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hrx
+wXN
+anI
+anI
+cKD
+anI
+aup
+hrx
+sbx
+anI
+sbx
+hrx
+aPq
+anI
+mkI
+hbG
+xYt
+sxd
+hrx
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+cNW
+cNW
+cNW
+cNW
+cNW
+cNW
+cNW
+cNW
+cay
+vFi
+vFi
+vFi
+vFi
+eVq
+uvs
+sbo
+iYC
+vpy
+uvs
+eVq
+iYC
+iYC
+iYC
+vIs
+eVq
+eVq
+iYC
+iYC
+qvC
+eVq
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(176,1,1) = {"
+dtV
+aag
+aBz
+aBz
+aBz
+aBz
+ayg
+aag
+ePF
+gyK
+hrC
+gyK
+ePF
+aag
+aHc
+aHc
+aHc
+aag
+aag
+lXX
+lXX
+lXX
+muP
+muP
+muP
+muP
+muP
+pWb
+pTX
+pTX
+sPk
+pTX
+uIW
+muP
+muP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+tfg
+hol
+nWU
+smh
+kzy
+hol
+cMS
+hol
+pIs
+sou
+iwo
+hlq
+tfg
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+oCs
+anI
+lGa
+anI
+lDV
+anI
+bQG
+anI
+anI
+anI
+bQG
+anI
+anI
+jlK
+qbl
+wSI
+sxd
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+aHY
+bUQ
+cNW
+cNW
+cNW
+cNW
+aHY
+aHY
+cay
+vFi
+vFi
+vFi
+eVq
+eVq
+iFp
+iYC
+iYC
+iYC
+kmA
+eVq
+eVq
+eVq
+eVq
+eVq
+eVq
+iYC
+iYC
+iYC
+iYC
+aaO
+eVq
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(177,1,1) = {"
+dtV
+aag
+aag
+aZj
+bJb
+aag
+aag
+aag
+eQj
+gxT
+gyK
+gxT
+iHl
+aag
+aHc
+aHc
+aHc
+jkf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+muP
+pZk
+pTX
+pTX
+sXZ
+muP
+muP
+muP
+muP
+muP
+muP
+muP
+muP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+tfg
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+hol
+xeq
+hol
+hol
+icd
+hol
+hol
+hlq
+hlq
+hlq
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hrx
+qel
+anI
+anI
+anI
+pUQ
+hrx
+sbx
+anI
+sbx
+hrx
+pwU
+anI
+vRK
+olg
+ggK
+hrx
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+cNW
+cNW
+cNW
+cNW
+cNW
+cNW
+cNW
+cNW
+cay
+vFi
+vFi
+vFi
+eVq
+eVq
+bbd
+vIs
+xlm
+iYC
+iLy
+eVq
+kyR
+kyR
+kyR
+kyR
+eVq
+ckL
+iYC
+iYC
+vIs
+aaP
+eVq
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(178,1,1) = {"
+dtV
+aag
+aFi
+aHc
+aBz
+cuP
+aHc
+aag
+ePF
+gyK
+gyK
+gyK
+ePF
+aag
+huM
+aHc
+aHc
+jkf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+muP
+qfl
+rjI
+pTX
+pTX
+tDj
+uMq
+uMq
+woi
+uMq
+uMq
+muP
+muP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+hol
+hol
+ovR
+ovR
+mXH
+hrS
+ovR
+ovR
+gBc
+aap
+gIe
+gIe
+smh
+pNe
+bQw
+pNe
+pNe
+yib
+gIe
+hol
+ydh
+tfg
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hrx
+kId
+eLh
+anI
+nrW
+hrx
+fXS
+lDa
+hrx
+hrx
+rLa
+anI
+sxd
+sxd
+hrx
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+aHY
+bUQ
+cNW
+cNW
+cNW
+cNW
+bUQ
+aHY
+cay
+vFi
+vFi
+vFi
+eVq
+eVq
+eVq
+eVq
+eVq
+eVq
+eVq
+eVq
+jjH
+rwv
+rwv
+hkO
+eVq
+eVq
+eVq
+eVq
+eVq
+eVq
+eVq
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(179,1,1) = {"
+dtV
+aag
+aFi
+aHc
+aHc
+aHc
+aHc
+aag
+eRT
+gxT
+gyK
+hUS
+iHW
+aag
+huM
+huM
+aHc
+jkf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+muP
+muP
+muP
+muP
+muP
+rud
+muP
+muP
+uPy
+uMq
+wuy
+uMq
+uMq
+xNh
+muP
+muP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+hol
+ovR
+ovR
+ovR
+gCM
+ovR
+ovR
+ovR
+gIe
+eOs
+gIe
+gIe
+rfz
+gIe
+gIe
+eOs
+gIe
+eOs
+gIe
+hol
+ydh
+ydh
+kTB
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hrx
+hrx
+vDE
+hrx
+hrx
+lYm
+nup
+gLL
+hrx
+hrx
+anI
+hrx
+hrx
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+cNW
+cNW
+cNW
+cNW
+cNW
+cNW
+cNW
+cNW
+cay
+vFi
+vFi
+vFi
+eVq
+kyR
+kyR
+kyR
+kyR
+eVq
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+eVq
+eVq
+kyR
+kyR
+kyR
+kyR
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(180,1,1) = {"
+dtV
+aag
+aFz
+aHc
+aHc
+aHc
+aHc
+aag
+faN
+gGb
+hsK
+iaB
+ePF
+aag
+aag
+aag
+joY
+aag
+aag
+aag
+vFi
+vFi
+muP
+muP
+muP
+muP
+ppE
+qiJ
+rnC
+ohP
+tau
+muP
+uMq
+uMq
+uMq
+uMq
+xsZ
+uMq
+muP
+muP
+muP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+hol
+ovR
+ovR
+hol
+hol
+hol
+bYA
+bws
+hol
+hol
+hol
+hol
+gIU
+hol
+hol
+xls
+hcK
+xls
+hol
+hol
+ydh
+tfg
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hqz
+hrx
+nup
+nup
+nup
+kvG
+sfc
+hrx
+hqz
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+cay
+cay
+cay
+cay
+cay
+cay
+cay
+cay
+cay
+cay
+vFi
+vFi
+vFi
+eVq
+jjH
+rwv
+rwv
+hkO
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+eVq
+jjH
+rwv
+rwv
+hkO
+eVq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(181,1,1) = {"
+dtV
+aag
+aag
+aag
+bKg
+aag
+aag
+aag
+aag
+aag
+hto
+aag
+aag
+aag
+jOK
+jOK
+jOK
+jOK
+lIP
+aag
+vFi
+vFi
+vFi
+mLC
+nxE
+ofD
+ohP
+ohP
+rol
+ohP
+teU
+muP
+uQS
+vDy
+wwz
+muP
+muP
+muP
+muP
+vyw
+wkn
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+hol
+tLx
+ovR
+hol
+jsz
+hol
+hol
+hol
+hol
+dBt
+ebI
+gKE
+eGj
+hol
+dbz
+dbz
+gIe
+dbz
+ydh
+mFz
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+hrx
+hrx
+hqz
+hqz
+hqz
+hrx
+hrx
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(182,1,1) = {"
+dtV
+aag
+aGU
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
+huM
+jkf
+jOK
+jOK
+laj
+laj
+jOK
+jkf
+vFi
+vFi
+vFi
+mUL
+nyq
+ohP
+ohP
+ohP
+roS
+ohP
+ohP
+tDz
+uRs
+uRs
+wAh
+muP
+xtD
+xPC
+wOJ
+vyw
+wkn
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+hol
+hol
+hol
+xqV
+gTx
+hol
+gIe
+dbz
+dbz
+gIe
+dbz
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(183,1,1) = {"
+dtV
+aag
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
+joY
+jOK
+kwP
+lbH
+lzn
+lMY
+jkf
+vFi
+vFi
+vFi
+mUL
+nyu
+oiL
+ohP
+ohP
+rud
+ohP
+ohP
+tDN
+uTg
+vKO
+ohP
+wOK
+xyj
+xyj
+iBZ
+vyw
+wkn
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+hol
+mui
+lnu
+gKE
+odI
+hol
+ydh
+ydh
+mFz
+ydh
+ydh
+dbz
+ydh
+ydh
+ydh
+kTB
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(184,1,1) = {"
+dtV
+aag
+aHc
+baM
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
+aHc
+jkf
+jOK
+jOK
+lcF
+lcF
+jOK
+jkf
+vFi
+vFi
+vFi
+mUL
+nzu
+ohP
+ohP
+ohP
+rnC
+ohP
+ohP
+tEd
+uTB
+uTB
+wAh
+muP
+xCj
+xQS
+cbf
+vyw
+wkn
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+hlq
+hol
+hol
+hol
+qsF
+hol
+mFz
+dbz
+dbz
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+kTB
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(185,1,1) = {"
+dtV
+aag
+aag
+beV
+aag
+aag
+aag
+dYs
+aag
+aag
+aag
+aHc
+aHc
+aag
+jSw
+jOK
+jOK
+jOK
+jOK
+aag
+vFi
+vFi
+vFi
+mWm
+nEw
+omn
+ohP
+ohP
+rol
+ohP
+tgQ
+muP
+uQS
+vDy
+wwz
+muP
+muP
+muP
+muP
+vyw
+wkn
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+jsz
+hol
+hol
+fmg
+vTu
+hol
+ydh
+mFz
+mFz
+dbz
+dbz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(186,1,1) = {"
+dtV
+aag
+ayg
+ayg
+bKr
+cxW
+cOY
+cxZ
+cxZ
+gHH
+aag
+aHc
+aHc
+aag
+aag
+aag
+joY
+aag
+aag
+aag
+vFi
+vFi
+muP
+muP
+muP
+omU
+ppE
+qiJ
+roS
+ohP
+thC
+muP
+uUP
+vaG
+vaG
+wSS
+vaG
+xVZ
+muP
+muP
+muP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+jsz
+hol
+hol
+hol
+hol
+hol
+dbz
+mFz
+mFz
+mFz
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(187,1,1) = {"
+dtV
+dtV
+asc
+ayg
+bKC
+cxZ
+cxZ
+cxZ
+cxZ
+gHV
+aag
+aHc
+aHc
+aag
+jUW
+aHc
+aHc
+jkf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+muP
+muP
+muP
+muP
+muP
+rud
+muP
+muP
+uXV
+vaG
+vaG
+vaG
+vaG
+yfG
+muP
+muP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+jsz
+jsz
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(188,1,1) = {"
+dtV
+dtV
+asc
+ayg
+ayg
+cAb
+cxZ
+cxZ
+cxZ
+gIK
+aag
+aHc
+aHc
+aag
+aHc
+aHc
+aHc
+jkf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+muP
+qkf
+rzA
+pTX
+pTX
+tEF
+vaG
+vVT
+wAJ
+xdD
+xDR
+muP
+muP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(189,1,1) = {"
+dtV
+dtV
+asc
+asc
+ayg
+ayg
+beV
+dZb
+fcb
+aag
+aag
+aHc
+aHc
+aag
+aHc
+aHc
+aHc
+jkf
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+muP
+qkC
+pTX
+pTX
+tjr
+muP
+muP
+muP
+muP
+muP
+muP
+muP
+muP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(190,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+ayg
+ayg
+aag
+aag
+aag
+aHc
+aHc
+aHc
+aag
+aHc
+aHc
+aHc
+aag
+aag
+lWz
+lWz
+lWz
+muP
+muP
+muP
+muP
+muP
+qqK
+pTX
+slP
+pTX
+tMh
+vco
+muP
+muP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(191,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+aag
+cTy
+dZu
+fch
+aag
+aHc
+aHc
+aHc
+aag
+jVR
+huM
+aHc
+aHc
+aHc
+lWA
+mhK
+lWA
+myh
+mWp
+nFg
+muP
+pqU
+pTX
+rAB
+pTX
+tjE
+tMV
+vdJ
+vyw
+wkn
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(192,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+aag
+cTO
+dZw
+dZw
+bKg
+aHc
+aHc
+aag
+aag
+aag
+huM
+huM
+aHc
+aHc
+lWA
+mkB
+lWA
+muP
+mKp
+nIT
+oeg
+prS
+pTU
+pTU
+pTU
+pTU
+tOX
+vfE
+vyw
+wkn
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(193,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+aag
+daD
+dZw
+dZw
+aag
+aHc
+aHc
+aag
+ayg
+aag
+aag
+aag
+aag
+aag
+lXX
+lXX
+lXX
+muP
+muP
+muP
+muP
+muP
+muP
+muP
+skB
+sLJ
+tyq
+muP
+muP
+muP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+ydh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(194,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+aag
+deb
+edK
+feu
+aag
+beV
+aHc
+aag
+ayg
+ayg
+ayg
+ayg
+ayg
+ayg
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+muP
+muP
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+avh
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(195,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+aag
+aag
+aag
+aag
+aag
+hto
+iaK
+ayg
+ayg
+ayg
+ayg
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+jsz
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(196,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+aag
+dmB
+eev
+ffm
+aag
+huM
+huM
+iMR
+ayg
+ayg
+ayg
+ayg
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(197,1,1) = {"
+dtV
+aah
+aah
+aah
+aah
+aah
+drY
+beV
+fjC
+aag
+hwq
+aBz
+huM
+jpJ
+aBz
+kyJ
+ayg
+ayg
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(198,1,1) = {"
+dtV
+aah
+aHg
+aah
+aHg
+aah
+dtm
+efI
+fjX
+gJV
+aBz
+iaZ
+aBz
+aBz
+jWu
+aBz
+ler
+ayg
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(199,1,1) = {"
+dtV
+aah
+aMC
+aah
+aMC
+aah
+dtB
+beV
+fti
+gJV
+aBz
+idg
+aBz
+aBz
+idg
+aBz
+liC
+ayg
+ayg
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(200,1,1) = {"
+dtV
+aah
+aah
+aah
+aah
+aah
+duU
+beV
+efI
+gJV
+hxu
+idX
+aBz
+aBz
+idg
+aBz
+aBz
+lCc
+ayg
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(201,1,1) = {"
+dtV
+aah
+aHg
+aah
+aHg
+aah
+dyT
+beV
+fxL
+aag
+aBz
+aBz
+iQn
+jrG
+jWw
+aBz
+ayg
+aBz
+lOi
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(202,1,1) = {"
+dtV
+aah
+aMC
+aah
+aMC
+aah
+dAb
+egu
+fzj
+aag
+ayg
+ayg
+ayg
+ayg
+ayg
+ayg
+ayg
+ayg
+ayg
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+kqm
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(203,1,1) = {"
+dtV
+aah
+aah
+aah
+aah
+aah
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+kqm
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(204,1,1) = {"
+dtV
+aah
+aHg
+aah
+aHg
+aah
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+rht
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(205,1,1) = {"
+dtV
+aah
+aMC
+aah
+aMC
+aah
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(206,1,1) = {"
+dtV
+aah
+aah
+aah
+aah
+aah
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+qNq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(207,1,1) = {"
+dtV
+aah
+aHg
+aah
+aHg
+aah
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+qNq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(208,1,1) = {"
+dtV
+aah
+aMC
+aah
+aMC
+aah
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(209,1,1) = {"
+dtV
+aah
+aah
+aah
+aah
+aah
+asc
+asc
+aac
+aac
+aac
+aac
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(210,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+aac
+aQu
+hzI
+aac
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(211,1,1) = {"
+dtV
+dtV
+asc
+asc
+asc
+asc
+asc
+aac
+aac
+aac
+aac
+aac
+aac
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(212,1,1) = {"
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aQu
+aQu
+aQu
+aQu
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(213,1,1) = {"
+aac
+aac
+aNu
+bft
+bMh
+cBW
+dCb
+bVj
+aQu
+aQu
+aQu
+ijT
+bVj
+jss
+jss
+jss
+jss
+jss
+aac
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+mqj
+qyq
+rBO
+rBO
+rBO
+tRy
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(214,1,1) = {"
+aac
+aai
+aQu
+aQu
+aQu
+aQu
+aQu
+bVj
+aQu
+aQu
+aQu
+ilA
+bVj
+aQu
+aQu
+aQu
+aQu
+aQu
+aac
+aac
+vFi
+vFi
+vFi
+vFi
+vFi
+mqj
+mqj
+qAV
+rHh
+snf
+toj
+tTO
+mqj
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(215,1,1) = {"
+aac
+abb
+aQu
+aQu
+aQu
+aQu
+aQu
+aac
+aQu
+gOq
+aQu
+aQu
+aac
+aQu
+aQu
+aQu
+aQu
+aQu
+lPr
+aac
+vFi
+vFi
+vFi
+vFi
+vFi
+mqj
+psx
+mAy
+qOr
+srg
+qOr
+mAy
+vgS
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(216,1,1) = {"
+aac
+acF
+aQu
+bge
+bMn
+cDl
+aQu
+eqQ
+aQu
+aQu
+aQu
+aQu
+iUi
+aQu
+jXS
+jss
+llB
+aQu
+lPt
+aac
+vFi
+vFi
+vFi
+vFi
+mqj
+mqj
+ptD
+qCf
+rOj
+qOr
+tpm
+tZT
+vkl
+mqj
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(217,1,1) = {"
+aac
+acP
+aQu
+bno
+bRL
+cFQ
+aQu
+eqQ
+aQu
+aQu
+aQu
+aQu
+iUi
+aQu
+jZz
+kBW
+lnJ
+aQu
+lPx
+aac
+vFi
+vFi
+vFi
+vFi
+mqj
+mqj
+mqj
+mqj
+mqj
+ssk
+mqj
+mqj
+mqj
+mqj
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(218,1,1) = {"
+aac
+adw
+aQu
+aQu
+aQu
+aQu
+aQu
+aac
+aQu
+aQu
+aQu
+aQu
+aac
+aQu
+aQu
+aQu
+aQu
+aQu
+lVl
+aac
+vFi
+vFi
+vFi
+mqj
+mqj
+osC
+mAy
+mAy
+mAy
+qOr
+mAy
+mAy
+mAy
+osC
+mqj
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(219,1,1) = {"
+aac
+adF
+aQu
+aQu
+aQu
+aQu
+aQu
+bVj
+aQu
+aQu
+aQu
+ion
+bVj
+aQu
+aQu
+aQu
+aQu
+aQu
+aac
+aac
+vFi
+vFi
+vFi
+mqj
+mAy
+mAy
+mAy
+mAy
+mAy
+qOr
+mAy
+mAy
+mAy
+mAy
+mAy
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(220,1,1) = {"
+aac
+aac
+aQR
+aQR
+bSN
+cHB
+cHB
+bVj
+aQu
+aQu
+aQu
+iti
+bVj
+jsX
+jZR
+kCu
+lps
+lps
+aac
+vFi
+vFi
+vFi
+vFi
+mqj
+mAy
+mAy
+puP
+qJE
+puP
+qOr
+puP
+qJE
+puP
+mAy
+mAy
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(221,1,1) = {"
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+gQj
+gQj
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+vFi
+vFi
+vFi
+vFi
+mqj
+mAy
+mqj
+mqj
+mqj
+mqj
+ssk
+mqj
+mqj
+mqj
+mqj
+mAy
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(222,1,1) = {"
+aac
+aac
+aac
+aQu
+bVj
+aQu
+aQu
+aac
+aQu
+aQu
+aQu
+aQu
+aac
+jvE
+jZS
+kEd
+lrK
+aQu
+aac
+mcs
+mcs
+moG
+mqj
+ncE
+nKn
+oyq
+pxL
+qOj
+rWi
+qOr
+rWi
+qOj
+vny
+mqj
+mqj
+mqj
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(223,1,1) = {"
+aac
+aac
+aQu
+aQu
+bVj
+aQu
+aQu
+eqX
+aQu
+aQu
+aQu
+aQu
+aQu
+aQu
+aQu
+aQu
+aQu
+aQu
+aQu
+mfj
+moy
+mfj
+myK
+neC
+nMG
+oyF
+pyl
+qOr
+qOr
+qOr
+qOr
+qOr
+mAy
+mqj
+oDZ
+xiE
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(224,1,1) = {"
+aac
+aac
+aac
+btc
+bVj
+aQu
+aQu
+eqX
+aQu
+aQu
+aQu
+aQu
+aQu
+aQu
+aQu
+aQu
+aQu
+aQu
+aQu
+mfj
+moz
+mfj
+myK
+neI
+nQF
+oyF
+pBu
+qOr
+qOr
+qOr
+qOr
+qOr
+mAy
+wda
+pJB
+xkM
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(225,1,1) = {"
+aad
+aad
+aad
+aad
+aad
+cIR
+cIR
+aad
+aac
+aac
+aac
+aac
+aac
+bVj
+aac
+kIb
+aac
+bVj
+aac
+mhz
+mhz
+mpV
+mqj
+ngU
+nQU
+ngU
+pBQ
+qPq
+rXq
+qOr
+rXq
+qPq
+vny
+mqj
+mqj
+mqj
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(226,1,1) = {"
+aad
+agc
+agc
+aad
+agc
+agc
+dCy
+aad
+fzo
+gQz
+hAO
+iut
+aac
+jvL
+jxW
+jxW
+jxW
+jxW
+bVj
+bVj
+vFi
+vFi
+vFi
+nhN
+nTt
+oAV
+mqj
+mqj
+mqj
+ssk
+mqj
+mqj
+mqj
+mqj
+wBd
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(227,1,1) = {"
+aad
+agC
+agc
+aad
+agc
+agc
+dCy
+aad
+fEF
+fEF
+fEF
+fEF
+aac
+jxJ
+jxW
+kJd
+kJd
+jxW
+jxW
+bVj
+vFi
+vFi
+vFi
+niD
+nUr
+mAy
+pEs
+mqj
+mAy
+qOr
+mAy
+mqj
+vpa
+pJB
+pJB
+niD
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(228,1,1) = {"
+aad
+aib
+agc
+aad
+agc
+agc
+dCy
+aad
+fIs
+fEF
+fEF
+fEF
+iVu
+jxW
+kaS
+kNA
+kNA
+lFw
+jxW
+bVj
+vFi
+vFi
+vFi
+mqj
+nUr
+mAy
+pFy
+mqj
+rZh
+qOr
+pGP
+mqj
+vpV
+pJB
+pJB
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(229,1,1) = {"
+aad
+agC
+agc
+aad
+agc
+agc
+dGh
+aad
+fIJ
+fEF
+fEF
+fEF
+aac
+jxW
+jxW
+kOF
+kOF
+jxW
+jxW
+bVj
+vFi
+vFi
+mqj
+mqj
+nXc
+mAy
+mAy
+mqj
+sar
+qOr
+mAy
+mqj
+mqj
+wes
+wCB
+mqj
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(230,1,1) = {"
+aad
+aib
+agc
+bvJ
+agc
+agc
+dGh
+aad
+fJi
+gQF
+hBn
+ivK
+aac
+jCc
+jxW
+jxW
+jxW
+jxW
+bVj
+bVj
+vFi
+vFi
+mqj
+nlG
+nYs
+mAy
+mAy
+qQA
+qOr
+qOr
+qOr
+qQA
+mAy
+mAy
+wEZ
+xoq
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(231,1,1) = {"
+aad
+agC
+agc
+aad
+agc
+agc
+dGh
+aad
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+kQh
+aac
+aac
+aac
+vFi
+vFi
+vFi
+mqj
+nmG
+mAy
+osC
+mqj
+mqj
+mAy
+qOr
+mAy
+mqj
+mqj
+puP
+wFC
+xoZ
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(232,1,1) = {"
+aad
+aib
+agc
+aad
+agc
+agc
+dCy
+aad
+fJt
+gTd
+hCP
+ivP
+aac
+jFb
+jFb
+jFb
+jFb
+lHI
+aac
+vFi
+vFi
+mqj
+mqj
+mqj
+mqj
+mqj
+mqj
+qSe
+mAy
+qOr
+mAy
+uiY
+mqj
+mqj
+mqj
+mqj
+mqj
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(233,1,1) = {"
+aad
+agC
+agc
+aad
+agc
+agc
+dCy
+aad
+fNJ
+gTd
+gTd
+gTd
+iVO
+jFb
+jFb
+jFb
+jFb
+lHI
+aac
+vFi
+vFi
+mqj
+mzw
+noC
+oao
+oCd
+mqj
+mqj
+mAy
+qOr
+mAy
+mqj
+mqj
+weC
+qOr
+xrG
+xGF
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(234,1,1) = {"
+aad
+aib
+agc
+aad
+agc
+agc
+dCy
+aad
+fSp
+gTd
+gTd
+gTd
+aac
+jHG
+kbr
+jFb
+kbr
+jHG
+bVj
+vFi
+vFi
+mqK
+mAy
+mAy
+mAy
+mAy
+pGP
+niD
+rZh
+qOr
+pGP
+niD
+vqV
+weG
+qOr
+qOr
+xHC
+ygl
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(235,1,1) = {"
+aad
+aad
+aad
+aad
+agc
+agc
+aad
+aad
+aac
+gVO
+aac
+iyB
+aac
+jHG
+kbr
+jFb
+kbr
+jHG
+bVj
+vFi
+vFi
+mrR
+mAy
+mAy
+mAy
+mAy
+mAy
+qQA
+qOr
+qOr
+qOr
+qQA
+qOr
+qOr
+qOr
+qOr
+qOr
+jGv
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(236,1,1) = {"
+dtV
+vFi
+vFi
+aad
+agc
+agc
+aad
+asc
+aac
+gWP
+aac
+izq
+aac
+jHG
+kbr
+jFb
+kbr
+jHG
+bVj
+vFi
+vFi
+muG
+mAy
+mAy
+mAy
+oDR
+pHw
+mqj
+mAy
+pJB
+mAy
+mqj
+vsI
+qOr
+qOr
+qOr
+xHG
+khT
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(237,1,1) = {"
+dtV
+vFi
+vFi
+aad
+bXY
+bXY
+aad
+asc
+aac
+aac
+aac
+aac
+aac
+aac
+khJ
+kQu
+lsZ
+aac
+aac
+vFi
+vFi
+mqj
+mAy
+mAy
+mqj
+mqj
+pHA
+mqj
+mqj
+pJB
+mqj
+mqj
+qOr
+wfz
+wGt
+xsn
+xIQ
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(238,1,1) = {"
+dtV
+vFi
+vFi
+byl
+cax
+cax
+byl
+asc
+asc
+asc
+asc
+asc
+asc
+aac
+aac
+aac
+aac
+aac
+asc
+vFi
+vFi
+mqj
+mAy
+mAy
+mqj
+oDZ
+pJB
+pJB
+mqj
+pJB
+mqj
+ujD
+vtq
+wgd
+wMc
+qOr
+xLl
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(239,1,1) = {"
+dtV
+vFi
+vFi
+aad
+ccn
+ccn
+aad
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+mqj
+mBm
+nqa
+mqj
+oEQ
+pJQ
+qVa
+mqj
+pJB
+mqj
+ujD
+vvC
+wgp
+wNh
+xsR
+xMO
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(240,1,1) = {"
+dtV
+ajr
+ajr
+bzO
+cen
+cen
+bzO
+ajr
+ajr
+ajr
+ajr
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+mqj
+mqj
+mqj
+mqj
+mqj
+mqj
+mqj
+mqj
+svq
+mqj
+mqj
+mqj
+mqj
+mqj
+mqj
+mqj
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(241,1,1) = {"
+dtV
+akj
+aUi
+bzT
+cfK
+cfK
+dJx
+dJx
+fWi
+hdj
+hIX
+ajr
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+mqj
+mDp
+mDp
+mDp
+mDp
+mqj
+qVb
+pJB
+pJB
+tpr
+ukg
+mqj
+mDp
+mDp
+mDp
+mDp
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(242,1,1) = {"
+dtV
+ank
+aUi
+bzT
+cfK
+cfK
+cfK
+cfK
+cfK
+cfK
+hKH
+iBf
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+mqj
+mEm
+mEm
+mEm
+mEm
+mqj
+qVV
+pJB
+pJB
+pJB
+uku
+mqj
+mEm
+mEm
+mEm
+mEm
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(243,1,1) = {"
+dtV
+apr
+aUi
+bzT
+cfK
+cfK
+dJA
+dJA
+fWi
+hga
+hIX
+ajr
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+mqj
+mFr
+nsf
+nsf
+oJG
+mqj
+qYa
+pJB
+pJB
+pJB
+ulb
+mqj
+mFr
+nsf
+nsf
+oJG
+mqj
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(244,1,1) = {"
+dtV
+ajr
+ajr
+bzO
+ajr
+ajr
+bzO
+ajr
+ajr
+ajr
+ajr
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+mqj
+mqj
+saE
+pJB
+tpx
+mqj
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(245,1,1) = {"
+dtV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+mqj
+mqj
+pJB
+mqj
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(246,1,1) = {"
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+mqj
+mqj
+mqj
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(247,1,1) = {"
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(248,1,1) = {"
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(249,1,1) = {"
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(250,1,1) = {"
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(251,1,1) = {"
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+qNq
+vFi
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(252,1,1) = {"
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+qNq
+qNq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(253,1,1) = {"
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+qNq
+qNq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(254,1,1) = {"
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+qNq
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(255,1,1) = {"
+dtV
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+asc
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
+(256,1,1) = {"
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+dtV
+rht
+siV
+siV
+siV
+siV
+siV
+siV
+siV
+siV
+siV
+siV
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+vFi
+"}
diff --git a/modular_chomp/maps/cetus/cetus-8.dmm b/modular_chomp/maps/cetus/cetus-8.dmm
new file mode 100644
index 0000000000..f34bf04ffe
--- /dev/null
+++ b/modular_chomp/maps/cetus/cetus-8.dmm
@@ -0,0 +1,66832 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/space,
+/area/space)
+"ag" = (
+/turf/simulated/sky/moving/north/sif/planet_fall,
+/area/space)
+"ah" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 4;
+ teleport_z_offset = 4
+ },
+/turf/space/transit/east,
+/area/space)
+"aj" = (
+/turf/space/transit/east,
+/area/space)
+"ak" = (
+/obj/effect/step_trigger/teleporter/landmark{
+ landmark_id = "fall_sif"
+ },
+/turf/simulated/sky/south,
+/area/space)
+"ap" = (
+/turf/unsimulated/wall/planetary/sif/alt,
+/area/space)
+"aq" = (
+/obj/effect/step_trigger/teleporter/landmark{
+ landmark_id = "fall_sif"
+ },
+/turf/simulated/sky/east,
+/area/space)
+"ar" = (
+/obj/effect/step_trigger/thrower{
+ direction = 1;
+ name = "thrower_throwup";
+ tiles = 0
+ },
+/turf/space/transit/west,
+/area/space)
+"at" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 4;
+ teleport_z_offset = 4
+ },
+/turf/space/transit/north,
+/area/space)
+"av" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/sky/moving/north,
+/area/space)
+"ax" = (
+/turf/simulated/sky/south,
+/area/space)
+"aA" = (
+/turf/simulated/sky/east,
+/area/space)
+"aB" = (
+/obj/effect/landmark/teleport_mark{
+ landmark_id = "fall_sif"
+ },
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/sky/moving/north,
+/area/space)
+"aC" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/sky/south,
+/area/space)
+"aE" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 4;
+ teleport_z_offset = 4
+ },
+/turf/space,
+/area/space)
+"aG" = (
+/obj/effect/shuttle_landmark/southern_cross/cryostorage_transit,
+/turf/space/transit/north,
+/area/shuttle/cryo/transit)
+"aI" = (
+/turf/space/transit/south,
+/area/shuttle/escape/transit)
+"aM" = (
+/obj/effect/step_trigger/thrower{
+ direction = 1;
+ name = "thrower_throwup";
+ tiles = 0
+ },
+/turf/simulated/sky/east,
+/area/space)
+"aO" = (
+/turf/space/transit/west,
+/area/shuttle/escape_pod3/transit)
+"aP" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_leftnostop"
+ },
+/turf/space/transit/west,
+/area/space)
+"aS" = (
+/obj/effect/shuttle_landmark{
+ landmark_tag = "response_ship_sky";
+ name = "Skies of Sif"
+ },
+/turf/simulated/sky/east,
+/area/space)
+"aV" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/sky/east,
+/area/space)
+"aX" = (
+/obj/effect/shuttle_landmark{
+ landmark_tag = "ninja_sky";
+ name = "Skies of Sif"
+ },
+/turf/simulated/sky/south,
+/area/space)
+"aZ" = (
+/turf/space/transit/east,
+/area/shuttle/escape_pod4/transit)
+"bd" = (
+/obj/effect/shuttle_landmark/southern_cross/escape_pod4/transit,
+/turf/space/transit/east,
+/area/shuttle/escape_pod4/transit)
+"be" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwup";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space/transit/north,
+/area/space)
+"bx" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 4;
+ teleport_z_offset = 4
+ },
+/turf/space/transit/south,
+/area/space)
+"bE" = (
+/turf/simulated/sky/moving/north,
+/area/space)
+"bN" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/sky/moving/south,
+/area/space)
+"bO" = (
+/turf/space/transit/north,
+/area/space)
+"ch" = (
+/turf/space/transit/south,
+/area/space)
+"cm" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space/transit/north,
+/area/space)
+"cT" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/pre_game)
+"cV" = (
+/obj/effect/step_trigger/teleporter/landmark{
+ landmark_id = "fall_sif"
+ },
+/turf/simulated/sky/moving/east,
+/area/space)
+"cW" = (
+/obj/effect/step_trigger/teleporter/random{
+ affect_ghosts = 1;
+ name = "escapeshuttle_leave";
+ teleport_x = 25;
+ teleport_x_offset = 245;
+ teleport_y = 25;
+ teleport_y_offset = 245;
+ teleport_z = 4;
+ teleport_z_offset = 4
+ },
+/turf/space/transit/west,
+/area/space)
+"cX" = (
+/turf/space/transit/west,
+/area/space)
+"cY" = (
+/obj/effect/map_helper/no_phaseshift,
+/turf/space,
+/area/space)
+"cZ" = (
+/turf/simulated/sky/moving/east,
+/area/space)
+"dd" = (
+/turf/simulated/sky/moving/south,
+/area/shuttle/shuttle3/sky_transit)
+"dj" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_rightnostop"
+ },
+/turf/space/transit/east,
+/area/space)
+"dk" = (
+/turf/space/transit/east,
+/area/shuttle/escape_pod2/transit)
+"dm" = (
+/turf/simulated/sky/south,
+/area/shuttle/shuttle3/sky)
+"dq" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space/transit/west,
+/area/space)
+"dr" = (
+/turf/space/transit/north,
+/area/shuttle/cryo/transit)
+"dt" = (
+/turf/simulated/sky/moving/south,
+/area/space)
+"du" = (
+/obj/effect/step_trigger/thrower{
+ direction = 1;
+ name = "thrower_throwup";
+ tiles = 0
+ },
+/turf/simulated/sky/moving/east,
+/area/space)
+"dv" = (
+/obj/machinery/light,
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/arrival/pre_game)
+"dN" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/bed/chair/shuttle,
+/obj/effect/landmark{
+ name = "JoinLate"
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"dQ" = (
+/obj/structure/bed/chair/shuttle,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
+ },
+/obj/effect/landmark{
+ name = "JoinLate"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"eg" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/pre_game)
+"er" = (
+/obj/effect/shuttle_landmark/transit{
+ landmark_tag = "response_ship_sky_transit";
+ name = "ERT Sky Transit"
+ },
+/turf/simulated/sky/moving/east,
+/area/space)
+"ev" = (
+/turf/space,
+/area/shuttle/shuttle3/orbit)
+"eB" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/sky/moving/east,
+/area/space)
+"fz" = (
+/obj/effect/shuttle_landmark/southern_cross/escape/transit,
+/turf/space/transit/south,
+/area/shuttle/escape/transit)
+"fD" = (
+/turf/space/transit/east,
+/area/shuttle/escape_pod1/transit)
+"ij" = (
+/obj/structure/closet/emcloset,
+/obj/item/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 21
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"iR" = (
+/obj/structure/table/standard,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"jp" = (
+/obj/effect/shuttle_landmark{
+ landmark_tag = "shuttle3_sky";
+ name = "Skies of Sif"
+ },
+/turf/simulated/sky/south,
+/area/shuttle/shuttle3/sky)
+"jT" = (
+/obj/structure/bed/chair/shuttle,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "JoinLate"
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"ni" = (
+/obj/effect/shuttle_landmark{
+ landmark_tag = "response_ship_orbit";
+ name = "Orbit of Sif"
+ },
+/turf/space,
+/area/space)
+"oJ" = (
+/obj/effect/map_helper/no_tele,
+/turf/space,
+/area/space)
+"oW" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/arrival/pre_game)
+"py" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/standard,
+/obj/random/plushie,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"qb" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/arrival/pre_game)
+"qg" = (
+/obj/structure/bed/chair/shuttle,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "JoinLate"
+ },
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 32
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"qU" = (
+/obj/effect/step_trigger/teleporter/landmark{
+ landmark_id = "fall_sif"
+ },
+/turf/simulated/sky/moving/south,
+/area/space)
+"ry" = (
+/turf/simulated/shuttle/wall/hard_corner,
+/area/shuttle/arrival/pre_game)
+"rB" = (
+/obj/structure/table/steel,
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-09";
+ name = "Dave";
+ pixel_y = 15
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/arrival/pre_game)
+"rH" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/bed/chair/shuttle,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "JoinLate"
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"rL" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space/transit/south,
+/area/space)
+"sD" = (
+/obj/structure/bed/chair/shuttle,
+/obj/effect/landmark{
+ name = "JoinLate"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"sX" = (
+/obj/effect/shuttle_landmark/transit{
+ landmark_tag = "response_ship_transit";
+ name = "ERT Transit"
+ },
+/turf/space/transit/west,
+/area/space)
+"tB" = (
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"uq" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwup";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwup";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space/transit/north,
+/area/space)
+"uL" = (
+/turf/space/transit/south,
+/area/shuttle/shuttle3/transit)
+"vm" = (
+/obj/structure/bed/chair/shuttle,
+/obj/effect/landmark{
+ name = "JoinLate"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"vs" = (
+/obj/machinery/door/airlock/external{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/pre_game)
+"ws" = (
+/obj/effect/shuttle_landmark/transit{
+ landmark_tag = "ninja_sky_transit";
+ name = "Ninja Sky Transit"
+ },
+/turf/simulated/sky/moving/south,
+/area/space)
+"xq" = (
+/obj/effect/shuttle_landmark/southern_cross/escape_pod1/transit,
+/turf/space/transit/east,
+/area/shuttle/escape_pod1/transit)
+"zP" = (
+/obj/structure/sign/warning/secure_area,
+/turf/simulated/shuttle/wall,
+/area/shuttle/arrival/pre_game)
+"Bd" = (
+/obj/effect/shuttle_landmark{
+ landmark_tag = "shuttle3_orbit";
+ name = "Sif Orbit"
+ },
+/turf/space,
+/area/shuttle/shuttle3/orbit)
+"Bi" = (
+/obj/effect/shuttle_landmark{
+ landmark_tag = "ninja_orbit";
+ name = "Orbit of Sif"
+ },
+/turf/space,
+/area/space)
+"Ck" = (
+/obj/effect/shuttle_landmark/transit{
+ landmark_tag = "shuttle3_transit";
+ name = "Shuttle 3 Transit"
+ },
+/turf/space/transit/south,
+/area/shuttle/shuttle3/transit)
+"DK" = (
+/obj/effect/shuttle_landmark/transit{
+ landmark_tag = "shuttle3_sky_transit";
+ name = "Shuttle 3 Sky Transit"
+ },
+/turf/simulated/sky/moving/south,
+/area/shuttle/shuttle3/sky_transit)
+"EG" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/arrival/pre_game)
+"Hw" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/pre_game)
+"HE" = (
+/obj/machinery/ai_status_display,
+/turf/simulated/shuttle/wall,
+/area/shuttle/arrival/pre_game)
+"Lz" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/pre_game)
+"MK" = (
+/turf/simulated/shuttle/wall/no_join,
+/area/shuttle/arrival/pre_game)
+"Ne" = (
+/turf/space/transit/north,
+/area/shuttle/large_escape_pod1/transit)
+"Nx" = (
+/obj/structure/closet/emcloset,
+/obj/item/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -21
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"Ob" = (
+/obj/effect/shuttle_landmark/southern_cross/escape_pod3/transit,
+/turf/space/transit/west,
+/area/shuttle/escape_pod3/transit)
+"PA" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/standard,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"Qb" = (
+/obj/structure/shuttle/window,
+/obj/structure/grille,
+/turf/simulated/shuttle/plating,
+/area/shuttle/arrival/pre_game)
+"QY" = (
+/obj/effect/shuttle_landmark/transit{
+ landmark_tag = "ninja_transit";
+ name = "Ninja Transit"
+ },
+/turf/space/transit/north,
+/area/space)
+"Rs" = (
+/obj/effect/shuttle_landmark/southern_cross/arrivals_offsite,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/pre_game)
+"Sc" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/arrival/pre_game)
+"So" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/arrival/pre_game)
+"SE" = (
+/obj/structure/bed/chair/shuttle,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "JoinLate"
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"Tb" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/pre_game)
+"TB" = (
+/obj/machinery/door/airlock/external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "arrivals_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch";
+ req_access = list(13)
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/pre_game)
+"Uh" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1381;
+ id_tag = "arrivals_shuttle";
+ pixel_y = 25;
+ req_one_access = list(13);
+ tag_door = "arrivals_shuttle_hatch"
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/arrival/pre_game)
+"UH" = (
+/obj/effect/step_trigger/thrower{
+ direction = 1;
+ name = "thrower_throwup";
+ tiles = 0
+ },
+/turf/space,
+/area/space)
+"Vp" = (
+/obj/structure/table/standard,
+/obj/item/book/codex/lore/vir,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"VC" = (
+/obj/machinery/door/airlock/silver{
+ icon_state = "door_locked";
+ locked = 1;
+ name = "Employees Only";
+ secured_wires = 1
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/arrival/pre_game)
+"VW" = (
+/obj/structure/table/standard,
+/obj/random/maintenance/clean,
+/obj/random/maintenance/clean,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+"Wx" = (
+/obj/effect/shuttle_landmark/southern_cross/escape_pod2/transit,
+/turf/space/transit/east,
+/area/shuttle/escape_pod2/transit)
+"WV" = (
+/obj/effect/shuttle_landmark/southern_cross/large_escape_pod1/transit,
+/turf/space/transit/north,
+/area/shuttle/large_escape_pod1/transit)
+"Xt" = (
+/obj/machinery/status_display,
+/turf/simulated/shuttle/wall,
+/area/shuttle/arrival/pre_game)
+"Xz" = (
+/obj/structure/showcase/AI,
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/arrival/pre_game)
+"XK" = (
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/arrival/pre_game)
+"Yd" = (
+/obj/machinery/computer/shuttle_control/arrivals{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/arrival/pre_game)
+"Zb" = (
+/obj/machinery/light,
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor{
+ icon_state = "floor_red"
+ },
+/area/shuttle/arrival/pre_game)
+"Zf" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space,
+/area/space)
+"Zs" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/arrival/pre_game)
+
+(1,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(2,1,1) = {"
+ap
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+ap
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ap
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+ap
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+ap
+"}
+(3,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(4,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(5,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(6,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(7,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(8,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(9,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(10,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+av
+av
+av
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(11,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+av
+aB
+av
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(12,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+av
+av
+av
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(13,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(14,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(15,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(16,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(17,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(18,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(19,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+bE
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(20,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ag
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(21,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(22,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ap
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(23,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(24,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(25,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(26,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(27,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+bN
+bN
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(28,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+dt
+dt
+dt
+dt
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(29,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dt
+dt
+ws
+dt
+dt
+dt
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(30,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+aC
+aC
+aC
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+bN
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(31,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+aC
+ax
+ax
+ax
+ax
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(32,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+ax
+ax
+aX
+ax
+ax
+ax
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(33,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+aC
+aC
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(34,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(35,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+aC
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(36,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+Bd
+ev
+ev
+ev
+ev
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+bN
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(37,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ev
+ev
+ev
+ev
+ev
+ev
+ev
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+aC
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(38,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+dt
+dt
+dt
+dt
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(39,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+aC
+aC
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+bN
+bN
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(40,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(41,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+aC
+ax
+ax
+ax
+ax
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(42,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+aC
+aC
+aC
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(43,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(44,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(45,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+Zf
+Zf
+Zf
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(46,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+Zf
+aa
+aa
+aa
+aa
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(47,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+Bi
+aa
+aa
+aa
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(48,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+Zf
+Zf
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(49,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+aC
+aC
+aC
+aC
+aC
+aC
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+bN
+bN
+bN
+bN
+bN
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(50,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+Zf
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+ax
+aC
+aC
+aC
+aC
+aC
+aC
+aC
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+bN
+bN
+bN
+bN
+bN
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(51,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+aC
+aC
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(52,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+Zf
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+aC
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(53,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+aC
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(54,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+Zf
+Zf
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+aC
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(55,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+aC
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(56,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+Zf
+aa
+aa
+aa
+aa
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+aC
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(57,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+Zf
+Zf
+Zf
+Zf
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+aC
+aC
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+jp
+dm
+dm
+dm
+dm
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+DK
+dd
+dd
+dd
+dd
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(58,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+ax
+aC
+aC
+aC
+aC
+aC
+aC
+aC
+dm
+dm
+dm
+dm
+dm
+dm
+dm
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+bN
+bN
+bN
+bN
+bN
+dd
+dd
+dd
+dd
+dd
+dd
+dd
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(59,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+aC
+aC
+aC
+aC
+aC
+aC
+aC
+aC
+aC
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+bN
+bN
+bN
+bN
+bN
+bN
+bN
+bN
+bN
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(60,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(61,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(62,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(63,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(64,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(65,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+UH
+UH
+UH
+UH
+Zf
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(66,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+UH
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ax
+ak
+ap
+qU
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+dt
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(67,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+UH
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ap
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+qU
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(68,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+UH
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(69,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+UH
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+ap
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(70,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+UH
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(71,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+UH
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(72,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+UH
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(73,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+UH
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(74,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+UH
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(75,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+UH
+aa
+aa
+aa
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(76,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+UH
+aa
+aa
+ni
+aa
+aa
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aM
+aM
+aM
+aM
+aV
+aV
+aV
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+du
+du
+du
+du
+eB
+eB
+eB
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(77,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+UH
+UH
+aa
+aa
+aa
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aM
+aA
+aA
+aA
+aA
+aA
+aV
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+du
+cZ
+cZ
+cZ
+cZ
+cZ
+eB
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(78,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+UH
+UH
+UH
+Zf
+Zf
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aM
+aA
+aA
+aA
+aA
+aA
+aV
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+du
+cZ
+cZ
+cZ
+cZ
+cZ
+eB
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(79,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aM
+aA
+aA
+aA
+aA
+aA
+aV
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+du
+cZ
+cZ
+cZ
+cZ
+cZ
+eB
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(80,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aM
+aA
+aA
+aA
+aA
+aA
+aV
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+du
+cZ
+cZ
+cZ
+cZ
+cZ
+eB
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(81,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aM
+aA
+aA
+aA
+aA
+aA
+aV
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+du
+cZ
+cZ
+cZ
+cZ
+cZ
+eB
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(82,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aM
+aA
+aA
+aA
+aA
+aA
+aV
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+du
+cZ
+cZ
+cZ
+cZ
+cZ
+eB
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(83,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aM
+aA
+aA
+aA
+aA
+aA
+aV
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+du
+cZ
+cZ
+cZ
+cZ
+cZ
+eB
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(84,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aM
+aA
+aA
+aA
+aA
+aA
+aV
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+du
+cZ
+cZ
+cZ
+cZ
+cZ
+eB
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(85,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aM
+aA
+aA
+aA
+aA
+aA
+aV
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+du
+cZ
+cZ
+cZ
+cZ
+cZ
+eB
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(86,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aM
+aA
+aA
+aA
+aA
+aA
+aV
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+du
+cZ
+cZ
+cZ
+cZ
+cZ
+eB
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(87,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aM
+aA
+aA
+aS
+aA
+aA
+aV
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+du
+cZ
+cZ
+er
+cZ
+cZ
+eB
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(88,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aM
+aM
+aA
+aA
+aA
+aV
+aV
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+du
+du
+cZ
+cZ
+cZ
+eB
+eB
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(89,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aM
+aM
+aM
+aV
+aV
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+du
+du
+du
+eB
+eB
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(90,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(91,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(92,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(93,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(94,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(95,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(96,1,1) = {"
+ap
+aE
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aE
+ap
+aq
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aA
+aq
+ap
+cV
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cZ
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(97,1,1) = {"
+ap
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+aE
+ap
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+ap
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+cV
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(98,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(99,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(100,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(101,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(102,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(103,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(104,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(105,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(106,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(107,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(108,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(109,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(110,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(111,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(112,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(113,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(114,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(115,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(116,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(117,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(118,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(119,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(120,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+rL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(121,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+rL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(122,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+rL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(123,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(124,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+rL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(125,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+rL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(126,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+rL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+Ck
+uL
+uL
+uL
+uL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(127,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+uL
+uL
+uL
+uL
+uL
+uL
+uL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(128,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(129,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(130,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(131,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(132,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(133,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+be
+be
+be
+be
+be
+be
+be
+be
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(134,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+be
+be
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(135,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+be
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+rL
+rL
+rL
+rL
+rL
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(136,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+Ne
+WV
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+be
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+rL
+rL
+aI
+aI
+aI
+aI
+aI
+aI
+fz
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(137,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+be
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+rL
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+rL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(138,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+Ne
+be
+be
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+rL
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(139,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+be
+be
+be
+be
+be
+be
+be
+be
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+rL
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(140,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+rL
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(141,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+rL
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(142,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+rL
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(143,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+rL
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+rL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(144,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+be
+be
+be
+be
+be
+be
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+rL
+rL
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(145,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+dr
+dr
+dr
+dr
+dr
+dr
+be
+be
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+rL
+rL
+rL
+rL
+rL
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(146,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+be
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(147,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+be
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(148,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+be
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(149,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+dr
+aG
+dr
+dr
+dr
+dr
+dr
+be
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(150,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+be
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(151,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+be
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(152,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+dr
+dr
+dr
+dr
+dr
+dr
+dr
+be
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(153,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+uq
+dr
+dr
+dr
+dr
+dr
+dr
+be
+be
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(154,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+be
+be
+be
+be
+be
+be
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(155,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(156,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(157,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(158,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(159,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(160,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(161,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(162,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(163,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(164,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(165,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+be
+be
+be
+be
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(166,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+bO
+bO
+bO
+bO
+be
+be
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(167,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+bO
+bO
+QY
+bO
+bO
+bO
+be
+be
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+rL
+rL
+Sc
+ry
+TB
+TB
+MK
+Qb
+Qb
+Qb
+MK
+TB
+TB
+Sc
+Sc
+Sc
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(168,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+be
+be
+be
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+cm
+Sc
+Sc
+Sc
+Nx
+Rs
+Hw
+dQ
+tB
+vm
+tB
+jT
+Hw
+Hw
+Nx
+EG
+qb
+rL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(169,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+Sc
+Sc
+Yd
+Xt
+py
+Hw
+Hw
+sD
+tB
+SE
+tB
+SE
+Hw
+Hw
+tB
+Zs
+Sc
+Sc
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(170,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+be
+be
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+Sc
+Uh
+Zb
+zP
+cT
+Hw
+Hw
+sD
+tB
+SE
+tB
+SE
+Hw
+Hw
+Hw
+Vp
+oW
+qb
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(171,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+Sc
+Xz
+XK
+VC
+Tb
+Hw
+Hw
+Hw
+Hw
+Lz
+Hw
+Hw
+Hw
+Hw
+Hw
+VW
+oW
+qb
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(172,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+be
+be
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+Sc
+XK
+dv
+Sc
+eg
+Hw
+Hw
+sD
+tB
+dN
+tB
+SE
+Hw
+Hw
+Hw
+iR
+oW
+qb
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(173,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+Sc
+Sc
+rB
+HE
+PA
+Hw
+Hw
+sD
+tB
+dN
+tB
+SE
+Hw
+Hw
+tB
+Zs
+Sc
+Sc
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(174,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+be
+be
+be
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+rL
+Sc
+Sc
+Sc
+ij
+Hw
+Hw
+qg
+tB
+rH
+tB
+qg
+Hw
+Hw
+ij
+So
+qb
+rL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(175,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+rL
+rL
+Sc
+ry
+vs
+vs
+MK
+Qb
+Qb
+Qb
+MK
+vs
+vs
+Sc
+Sc
+Sc
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(176,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+bO
+bO
+bO
+bO
+be
+be
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+rL
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(177,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+be
+be
+be
+be
+be
+be
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(178,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(179,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(180,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(181,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(182,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+bO
+at
+ap
+bx
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+bx
+ap
+"}
+(183,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+at
+ap
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+bx
+ap
+"}
+(184,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(185,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ap
+"}
+(186,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(187,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(188,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(189,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(190,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(191,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(192,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(193,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+dj
+dj
+dj
+dj
+dj
+aj
+aj
+aj
+dj
+dj
+dj
+dj
+dj
+aj
+aj
+aj
+dj
+dj
+dj
+dj
+dj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(194,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+dj
+fD
+fD
+fD
+dj
+aj
+aj
+aj
+dj
+dk
+dk
+dk
+dj
+aj
+aj
+aj
+dj
+aZ
+aZ
+aZ
+dj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(195,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+dj
+fD
+fD
+fD
+dj
+aj
+aj
+aj
+dj
+dk
+dk
+dk
+dj
+aj
+aj
+aj
+dj
+aZ
+aZ
+aZ
+dj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(196,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+dj
+fD
+fD
+fD
+dj
+aj
+aj
+aj
+dj
+dk
+dk
+dk
+dj
+aj
+aj
+aj
+dj
+aZ
+aZ
+aZ
+dj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(197,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+dj
+fD
+fD
+fD
+dj
+aj
+aj
+aj
+dj
+dk
+dk
+dk
+dj
+aj
+aj
+aj
+dj
+aZ
+aZ
+aZ
+dj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(198,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+dj
+fD
+xq
+fD
+dj
+aj
+aj
+aj
+dj
+dk
+Wx
+dk
+dj
+aj
+aj
+aj
+dj
+aZ
+bd
+aZ
+dj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(199,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+dj
+fD
+fD
+fD
+dj
+aj
+aj
+aj
+dj
+dk
+dk
+dk
+dj
+aj
+aj
+aj
+dj
+aZ
+aZ
+aZ
+dj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(200,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+dj
+dj
+dj
+dj
+dj
+aj
+aj
+aj
+dj
+dj
+dj
+dj
+dj
+aj
+aj
+aj
+dj
+dj
+dj
+dj
+dj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(201,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(202,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(203,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(204,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(205,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(206,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(207,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(208,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(209,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(210,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(211,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(212,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(213,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(214,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(215,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(216,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(217,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(218,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ah
+ap
+"}
+(219,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ah
+ap
+"}
+(220,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(221,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+ap
+"}
+(222,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(223,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(224,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(225,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(226,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(227,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(228,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(229,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(230,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(231,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(232,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(233,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(234,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(235,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(236,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(237,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+ar
+ar
+ar
+ar
+dq
+dq
+dq
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(238,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+ar
+cX
+cX
+cX
+cX
+cX
+dq
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(239,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+ar
+cX
+cX
+cX
+cX
+cX
+dq
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(240,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+ar
+cX
+cX
+cX
+cX
+cX
+dq
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+aP
+aP
+aP
+aP
+aP
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(241,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+ar
+cX
+cX
+cX
+cX
+cX
+dq
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+aP
+aO
+aO
+aO
+aP
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(242,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+ar
+cX
+cX
+cX
+cX
+cX
+dq
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+aP
+aO
+Ob
+aO
+aP
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(243,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+ar
+cX
+cX
+cX
+cX
+cX
+dq
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+aP
+aO
+aO
+aO
+aP
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(244,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+ar
+cX
+cX
+cX
+cX
+cX
+dq
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+aP
+aO
+aO
+aO
+aP
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(245,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+ar
+cX
+cX
+cX
+cX
+cX
+dq
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+aP
+aO
+aO
+aO
+aP
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(246,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+ar
+cX
+cX
+cX
+cX
+cX
+dq
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+aP
+aO
+aO
+aO
+aP
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(247,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+ar
+cX
+cX
+cX
+cX
+cX
+dq
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+aP
+aP
+aP
+aP
+aP
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(248,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+ar
+cX
+cX
+sX
+cX
+cX
+dq
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(249,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+ar
+ar
+cX
+cX
+cX
+dq
+dq
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(250,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+ar
+ar
+ar
+dq
+dq
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(251,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(252,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(253,1,1) = {"
+ap
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(254,1,1) = {"
+ap
+oJ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cX
+cW
+ap
+"}
+(255,1,1) = {"
+ap
+cY
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+cW
+ap
+"}
+(256,1,1) = {"
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
diff --git a/modular_chomp/maps/cetus/cetus.dm b/modular_chomp/maps/cetus/cetus.dm
new file mode 100644
index 0000000000..67a720445b
--- /dev/null
+++ b/modular_chomp/maps/cetus/cetus.dm
@@ -0,0 +1,26 @@
+// You probably don't want to tick this file yet.
+
+#if !defined(USING_MAP_DATUM)
+
+ #include "cetus_defines.dm"
+
+
+ // Map specific
+ #include "../southern_cross/southern_cross_overrides.dm"
+ #include "cetus_shuttles.dm"
+ #include "../southern_cross/turfs/outdoors.dm"
+ #include "cetus_events.dm"
+
+
+ #ifndef AWAY_MISSION_TEST //Don't include these for just testing away missions if the flag is set to true in /code/_away_mission_tests.dm
+ #include "cetus-1.dmm" //Deck 1 z1
+ #include "cetus-2.dmm" //Deck 2 z2
+ #include "cetus-3.dmm" //Deck 3 z3
+ #endif
+
+ #define USING_MAP_DATUM /datum/map/cetus
+#elif !defined(MAP_OVERRIDE)
+
+ #warn A map has already been included, ignoring Cetus Station
+
+#endif
diff --git a/modular_chomp/maps/cetus/cetus_defines.dm b/modular_chomp/maps/cetus/cetus_defines.dm
new file mode 100644
index 0000000000..ad9faf0176
--- /dev/null
+++ b/modular_chomp/maps/cetus/cetus_defines.dm
@@ -0,0 +1,280 @@
+/datum/map/cetus
+ name = "Cetus"
+ full_name = "Cetus Station"
+ path = "cetus"
+
+ lobby_screens = list('modular_chomp/html/lobby/chompstation.webp')
+ id_hud_icons = 'icons/mob/hud_jobs_vr.dmi'
+
+ holomap_smoosh = list(list(
+ Z_LEVEL_CETUS_STATION_ONE,
+ Z_LEVEL_CETUS_STATION_TWO,
+ Z_LEVEL_CETUS_STATION_THREE,
+ ))
+
+ zlevel_datum_type = /datum/map_z_level/cetus
+
+ station_name = "NSS Cetus"
+ station_short = "Cetus Station"
+ dock_name = "NCS Northern Star"
+ boss_name = "Central Command"
+ boss_short = "Centcom"
+ company_name = "NanoTrasen"
+ company_short = "NT"
+ starsys_name = "Vir"
+ use_overmap = TRUE
+ overmap_size = 50
+ overmap_event_areas = 44
+
+ shuttle_docked_message = "The scheduled shuttle to the %dock_name% has docked with the station at docks one and two. It will depart in approximately %ETD%."
+ shuttle_leaving_dock = "The Crew Transfer Shuttle has left the station. Estimate %ETA% until the shuttle docks at %dock_name%."
+ shuttle_called_message = "A crew transfer to %dock_name% has been scheduled. The shuttle has been called. Those leaving should proceed to docks two and three in approximately %ETA%."
+ shuttle_recall_message = "The scheduled crew transfer has been cancelled."
+ emergency_shuttle_docked_message = "The Emergency Shuttle has docked with the station at docks two and three. You have approximately %ETD% to board the Emergency Shuttle."
+ emergency_shuttle_leaving_dock = "The Emergency Shuttle has left the station. Estimate %ETA% until the shuttle docks at %dock_name%."
+ emergency_shuttle_called_message = "An emergency evacuation shuttle has been called. It will arrive at docks one and two in approximately %ETA%."
+ emergency_shuttle_recall_message = "The emergency shuttle has been recalled."
+
+ // Networks that will show up as options in the camera monitor program
+ station_networks = list(
+ NETWORK_CARGO,
+ NETWORK_CIRCUITS,
+ NETWORK_CIVILIAN,
+ NETWORK_COMMAND,
+ NETWORK_ENGINE,
+ NETWORK_ENGINEERING,
+ NETWORK_ENGINEERING_OUTPOST,
+ NETWORK_FIRST_DECK,
+ NETWORK_SECOND_DECK,
+ NETWORK_THIRD_DECK,
+ NETWORK_MAIN_OUTPOST,
+ NETWORK_MEDICAL,
+ NETWORK_MINE,
+ NETWORK_RESEARCH,
+ NETWORK_RESEARCH_OUTPOST,
+ NETWORK_CARRIER,
+ NETWORK_ROBOTS,
+ NETWORK_PRISON,
+ NETWORK_SECURITY,
+ NETWORK_TELECOM,
+ ) //CHOMPedit: add "NETWORK_CARRIER" for exploration outpost cams
+ // Camera networks that exist, but don't show on regular camera monitors.
+ secondary_networks = list(
+ NETWORK_ERT,
+ NETWORK_MERCENARY,
+ NETWORK_THUNDER,
+ NETWORK_COMMUNICATORS,
+ NETWORK_ALARM_ATMOS,
+ NETWORK_ALARM_POWER,
+ NETWORK_ALARM_FIRE,
+ NETWORK_SUPPLY,
+ )
+ usable_email_tlds = list("freemail.nt")
+ allowed_spawns = list("Arrivals Shuttle","Gateway", "Cryogenic Storage", "Cyborg Storage", "Station gateway", "Sif plains", "Fuel Depot", "Tyr Wreckage", "The Dark")
+ default_skybox = /datum/skybox_settings/cetus
+ unit_test_exempt_areas = list(/area/ninja_dojo, /area/shuttle/ninja, /area/thirddeck/roof, /area/hallway/secondary/entry/D2/arrivals, /area/asteroid/cetus, /area/asteroid/cetus/d1, /area/asteroid/cetus/d1/jr, /area/asteroid/cetus/d2, /area/asteroid/cetus/d2/jr, /area/asteroid/cetus/d3, /area/asteroid/cetus/d3/jr)
+ unit_test_exempt_from_atmos = list(/area/tcomm/chamber, /area/maintenance/cetus/mainsupport, /area/maintenance/cetus/auxsupport)
+
+ planet_datums_to_make = list(/datum/planet/sif, /datum/planet/thor, /datum/planet/tyr) //This must be added to load maps at round start otherwise they will have weather or sun.
+
+ unit_test_z_levels = list(
+ Z_LEVEL_CETUS_STATION_ONE,
+ Z_LEVEL_CETUS_STATION_TWO,
+ Z_LEVEL_CETUS_STATION_THREE,
+ )
+
+ lateload_z_levels = list(
+ list(Z_NAME_SC_SURFACE),
+ list(Z_NAME_SC_SURFACE_MINE),
+ list(Z_NAME_SC_SURFACE_WILD),
+ list(Z_NAME_CETUS_MISC),
+ list(Z_NAME_CETUS_CENTCOM),
+ list(Z_NAME_CETUS_TRANSIT),
+ list(Z_NAME_VR_WORLD_CH),
+ list(Z_NAME_FUELDEPOT_CH),
+ list(Z_NAME_PLANET_THOR_CH),
+ list(Z_NAME_PLANET_TYR_CH),
+ )
+
+ lateload_gateway = list(
+ list(Z_NAME_GATEWAY_SNOW_FIELD_CH),
+ list(Z_NAME_GATEWAY_MADNESS_LAB_CH),
+ list(Z_NAME_GATEWAY_ABANDONED_CITY_CH),
+ list(Z_NAME_GATEWAY_SKYSCRAPER_CH),
+ )
+
+/datum/map/cetus/perform_map_generation()
+ // First, place a bunch of submaps. This comes before tunnel/forest generation as to not interfere with the submap.(This controls POI limit generation, increase or lower its values to have more or less POI's)
+
+ // Cave submaps are first.
+ var/surface_mine_z = GLOB.map_templates_loaded[Z_NAME_ALIAS_SURFACE_MINES]
+ seed_submaps(list(surface_mine_z), 140, /area/surface/cave/unexplored/normal, /datum/map_template/surface/mountain_ch/normal) //CHOMPEdit bumped up from 60 to 80
+ seed_submaps(list(surface_mine_z), 140, /area/surface/cave/unexplored/deep, /datum/map_template/surface/mountain_ch/deep) //CHOMPEdit bumped up from 60 to 80
+
+ // Plains to make them less plain.
+ var/surface_z = GLOB.map_templates_loaded[Z_NAME_ALIAS_SURFACE]
+ seed_submaps(list(surface_z), 220, /area/surface/outside/plains/normal, /datum/map_template/surface/plains_ch) // Center area is WIP until map editing settles down. //CHOMPEdit bumped up from 80 to 140
+
+ // Wilderness is next.
+ var/surface_wild_z = GLOB.map_templates_loaded[Z_NAME_ALIAS_SURFACE_WILDS]
+ seed_submaps(list(surface_wild_z), 240, /area/surface/outside/wilderness/normal, /datum/map_template/surface/wilderness_ch/normal) //CHOMPEdit bumped up from 60 to 150
+ seed_submaps(list(surface_wild_z), 240, /area/surface/outside/wilderness/deep, /datum/map_template/surface/wilderness_ch/deep) //CHOMPEdit bumped up from 60 to 150
+ // If Space submaps are made, add a line to make them here as well.
+
+ // Now for the tunnels. (This decides the load order of ore generation and cave generation. Check Random_Map to see % )
+ new /datum/random_map/automata/cave_system/(null, 1, 1, surface_mine_z, world.maxx, world.maxy) // Create the mining Z-level.
+ new /datum/random_map/noise/ore(null, 1, 1, surface_mine_z, 64, 64) // Create the mining ore distribution map.
+ return 1
+
+/datum/map/cetus/get_map_info()
+ . = list()
+ . += "The NSS [full_name] is a repurposed asteroid base in orbit of the frozen garden world of Sif, jewel of the Vir system.
"
+ . += "Though Vir is typically peaceful, the system has seen its fair share of conflict in the face of technological extremists, rogue drone intelligence, and worse.
"
+ . += "As an employee of NanoTrasen, operators of the NSS Cetus and one of the galaxy's largest research corporations, you're probably just here to do a job."
+ return jointext(., "
")
+
+// Skybox Settings
+/datum/skybox_settings/cetus
+ icon_state = "dyable"
+ random_color = TRUE
+
+// Lateload handling
+/datum/map_template/cetus_lateload
+ allow_duplicates = FALSE
+ var/associated_map_datum
+
+/datum/map_template/cetus_lateload/on_map_loaded(z)
+ if(!associated_map_datum || !ispath(associated_map_datum))
+ log_game("Extra z-level [src] has no associated map datum")
+ return
+
+ new associated_map_datum(using_map, z)
+ return ..()
+
+/datum/map_z_level/cetus_lateload/New(datum/map/map, mapZ)
+ z = mapZ
+ return ..(map)
+
+
+// For making the 4-in-1 holomap, we calculate some offsets
+#define CETUS_MAP_SIZE 220 // Width and height of compiled in Cetus z levels.
+#define CETUS_HOLOMAP_CENTER_GUTTER 40 // 40px central gutter between columns
+#define CETUS_HOLOMAP_MARGIN_X ((HOLOMAP_ICON_SIZE - (2*CETUS_MAP_SIZE) - CETUS_HOLOMAP_CENTER_GUTTER) / 2)
+#define CETUS_HOLOMAP_MARGIN_Y ((HOLOMAP_ICON_SIZE - (2*CETUS_MAP_SIZE)) / 2)
+
+// Station Z-Levels
+/datum/map_z_level/cetus/station
+ flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_CONSOLES|MAP_LEVEL_VORESPAWN|MAP_LEVEL_XENOARCH_EXEMPT
+ holomap_legend_x = 220
+ holomap_legend_y = 200
+
+/datum/map_z_level/cetus/station/station_one
+ z = Z_LEVEL_CETUS_STATION_ONE
+ name = "Deck 1"
+ base_turf = /turf/space
+ transit_chance = 15
+ holomap_offset_x = CETUS_HOLOMAP_MARGIN_X
+ holomap_offset_y = CETUS_HOLOMAP_MARGIN_Y - CETUS_HOLOMAP_CENTER_GUTTER / 2 //+ SOUTHERN_CROSS_MAP_SIZE*0
+
+/datum/map_z_level/cetus/station/station_two
+ z = Z_LEVEL_CETUS_STATION_TWO
+ name = "Deck 2"
+ base_turf = /turf/simulated/open
+ transit_chance = 15
+ holomap_offset_x = CETUS_HOLOMAP_MARGIN_X
+ holomap_offset_y = CETUS_HOLOMAP_MARGIN_Y - CETUS_HOLOMAP_CENTER_GUTTER / 2 + CETUS_MAP_SIZE
+
+/datum/map_z_level/cetus/station/station_three
+ z = Z_LEVEL_CETUS_STATION_THREE
+ name = "Deck 3"
+ base_turf = /turf/simulated/open
+ transit_chance = 15
+ holomap_offset_x = CETUS_HOLOMAP_MARGIN_X + CETUS_MAP_SIZE
+ holomap_offset_y = CETUS_HOLOMAP_MARGIN_Y - CETUS_HOLOMAP_CENTER_GUTTER / 2 + CETUS_MAP_SIZE
+
+// Surface Z-Level
+/datum/map_z_level/cetus_lateload/surface
+ name = Z_NAME_SC_SURFACE
+ flags = MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED|MAP_LEVEL_CONSOLES|MAP_LEVEL_VORESPAWN
+ base_turf = /turf/simulated/floor/outdoors/rocks
+
+/datum/map_template/cetus_lateload/surface
+ name = Z_NAME_SC_SURFACE
+ name_alias = Z_NAME_ALIAS_SURFACE
+ mappath = "modular_chomp/maps/southern_cross/southern_cross-5.dmm"
+ associated_map_datum = /datum/map_z_level/cetus_lateload/surface
+
+// Surface Mines Z-Level
+/datum/map_z_level/cetus_lateload/surface_mine
+ name = Z_NAME_SC_SURFACE_MINE
+ flags = MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED|MAP_LEVEL_CONSOLES
+ base_turf = /turf/simulated/floor/outdoors/rocks
+
+/datum/map_template/cetus_lateload/surface_mine
+ name = Z_NAME_SC_SURFACE_MINE
+ name_alias = Z_NAME_ALIAS_SURFACE_MINES
+ mappath = "modular_chomp/maps/southern_cross/southern_cross-6.dmm"
+ associated_map_datum = /datum/map_z_level/cetus_lateload/surface_mine
+
+// Surface Wilds Z-Level
+/datum/map_z_level/cetus_lateload/surface_wild
+ name = Z_NAME_SC_SURFACE_WILD
+ flags = MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED|MAP_LEVEL_CONTACT|MAP_LEVEL_CONSOLES
+ base_turf = /turf/simulated/floor/outdoors/rocks
+
+/datum/map_template/cetus_lateload/surface_wild
+ name = Z_NAME_SC_SURFACE_WILD
+ name_alias = Z_NAME_ALIAS_SURFACE_WILDS
+ mappath = "modular_chomp/maps/southern_cross/southern_cross-10.dmm"
+ associated_map_datum = /datum/map_z_level/cetus_lateload/surface_wild
+
+// Misc Z-Level
+/datum/map_z_level/cetus_lateload/misc
+ name = Z_NAME_CETUS_MISC
+ flags = MAP_LEVEL_PLAYER|MAP_LEVEL_VORESPAWN
+ transit_chance = 15
+
+/datum/map_template/cetus_lateload/misc
+ name = Z_NAME_CETUS_MISC
+ name_alias = Z_NAME_ALIAS_MISC
+ mappath = "modular_chomp/maps/cetus/cetus-6.dmm"
+ associated_map_datum = /datum/map_z_level/cetus_lateload/misc
+
+// Centcom Z-Level
+/datum/map_z_level/cetus_lateload/centcom
+ name = Z_NAME_CETUS_CENTCOM
+ flags = MAP_LEVEL_ADMIN|MAP_LEVEL_CONTACT
+
+/datum/map_template/cetus_lateload/centcom
+ name = Z_NAME_CETUS_CENTCOM
+ name_alias = Z_NAME_ALIAS_CENTCOM
+ mappath = "modular_chomp/maps/cetus/cetus-7.dmm"
+ associated_map_datum = /datum/map_z_level/cetus_lateload/centcom
+
+// Transit Z-Level
+/datum/map_z_level/cetus_lateload/transit
+ name = Z_NAME_CETUS_TRANSIT
+ flags = MAP_LEVEL_ADMIN|MAP_LEVEL_SEALED|MAP_LEVEL_PLAYER|MAP_LEVEL_CONTACT
+
+/datum/map_template/cetus_lateload/transit
+ name = Z_NAME_CETUS_TRANSIT
+ mappath = "modular_chomp/maps/cetus/cetus-8.dmm"
+ associated_map_datum = /datum/map_z_level/cetus_lateload/transit
+
+//Thor Z-Level
+/datum/map_z_level/cetus_lateload/thor
+ name = Z_NAME_PLANET_THOR_CH
+ flags = MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED
+ base_turf = /turf/simulated/floor/outdoors/rocks
+
+/datum/map_template/common_lateload/thor
+ associated_map_datum = /datum/map_z_level/cetus_lateload/thor
+
+// Tyr Z-Level
+/datum/map_z_level/cetus_lateload/valley
+ name = Z_NAME_PLANET_TYR_CH
+ flags = MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED
+ base_turf = /turf/simulated/floor/outdoors/rocks
+
+/datum/map_template/common_lateload/tyr
+ associated_map_datum = /datum/map_z_level/cetus_lateload/valley
diff --git a/modular_chomp/maps/cetus/cetus_events.dm b/modular_chomp/maps/cetus/cetus_events.dm
new file mode 100644
index 0000000000..223f465fa8
--- /dev/null
+++ b/modular_chomp/maps/cetus/cetus_events.dm
@@ -0,0 +1,56 @@
+#define LOC_KITCHEN 0
+#define LOC_ATMOS 1
+#define LOC_CHAPEL 2
+#define LOC_LIBRARY 3
+#define LOC_HYDRO 4
+#define LOC_TECH 5
+#define LOC_HANGAR1 6
+#define LOC_HANGAR2 7
+#define LOC_HANGAR3 8
+#define LOC_VAULT 9
+
+/datum/event/infestation/get_spawn_area() //adding this so maps can override areas if needed
+ var/spawn_area_type
+ switch(location)
+ if(LOC_KITCHEN)
+ spawn_area_type = /area/crew_quarters/kitchen
+ locstring = "the kitchen"
+ if(LOC_ATMOS)
+ spawn_area_type = /area/engineering/Atmospherics_Chamber
+ locstring = "atmospherics"
+ if(LOC_CHAPEL)
+ spawn_area_type = /area/chapel/main
+ locstring = "the chapel"
+ if(LOC_LIBRARY)
+ spawn_area_type = /area/crew_quarters/cetus/Libraryf1
+ locstring = "the library"
+ if(LOC_HYDRO)
+ spawn_area_type = /area/hydroponics
+ locstring = "hydroponics"
+ if(LOC_TECH)
+ spawn_area_type = /area/engineering/cetus/meteor/techstorage
+ locstring = "technical storage"
+ if(LOC_HANGAR1)//no hangar one on cetus, so i'll have a litttle fun with this
+ spawn_area_type = /area/maintenance/cetus/shallow/derelict/hallway
+ locstring = "the HIS Andromeda"
+ if(LOC_HANGAR2)
+ spawn_area_type = /area/hangar/cetus/two
+ locstring = "the hangar deck"
+ if(LOC_HANGAR3)
+ spawn_area_type = /area/hangar/three
+ locstring = "the hangar deck"
+ if(LOC_VAULT)
+ spawn_area_type = /area/security/nuke_storage
+ locstring = "the vault"
+ return spawn_area_type
+
+#undef LOC_KITCHEN
+#undef LOC_ATMOS
+#undef LOC_CHAPEL
+#undef LOC_LIBRARY
+#undef LOC_HYDRO
+#undef LOC_TECH
+#undef LOC_HANGAR1
+#undef LOC_HANGAR2
+#undef LOC_HANGAR3
+#undef LOC_VAULT
diff --git a/modular_chomp/maps/cetus/cetus_shuttles.dm b/modular_chomp/maps/cetus/cetus_shuttles.dm
new file mode 100644
index 0000000000..5bb946642e
--- /dev/null
+++ b/modular_chomp/maps/cetus/cetus_shuttles.dm
@@ -0,0 +1,31 @@
+/datum/shuttle/autodock/ferry/escape_pod/large_escape_pod2
+ defer_initialisation = TRUE
+
+// default shuttle roof type - blanket define our shuttle area ceiling type, we have multi-Zs and the default is none.
+/turf/simulated/floor/reinforced/airless/shuttleroof
+ // A special type just to make sure we don't delete airless reinforced when shuttles depart
+/area/shuttle //blanket define our shuttle area ceiling type, we have multi-Zs and the default is none.
+ ceiling_type = /turf/simulated/floor/reinforced/airless/shuttleroof
+
+/datum/shuttle //blanket define our shuttle area ceiling type, we have multi-Zs and the default is none.
+ ceiling_type = /turf/simulated/floor/reinforced/airless/shuttleroof
+
+#define ESCAPE_POD(NUMBER) \
+/datum/shuttle/autodock/ferry/escape_pod/escape_pod##NUMBER { \
+ name = "Escape Pod " + #NUMBER; \
+ location = FERRY_LOCATION_STATION; \
+ warmup_time = 0; \
+ shuttle_area = /area/shuttle/escape_pod##NUMBER/station; \
+ docking_controller_tag = "escape_pod_" + #NUMBER; \
+ landmark_station = "escape_pod_"+ #NUMBER +"_station"; \
+ landmark_offsite = "escape_pod_"+ #NUMBER +"_offsite"; \
+ landmark_transition = "escape_pod_"+ #NUMBER +"_transit"; \
+ move_time = SHUTTLE_TRANSIT_DURATION_RETURN; \
+}
+
+ESCAPE_POD(1)
+ESCAPE_POD(2)
+ESCAPE_POD(3)
+ESCAPE_POD(4)
+
+#undef ESCAPE_POD
diff --git a/modular_chomp/maps/common/common_defines.dm b/modular_chomp/maps/common/common_defines.dm
index bcec6724c3..65add853c6 100644
--- a/modular_chomp/maps/common/common_defines.dm
+++ b/modular_chomp/maps/common/common_defines.dm
@@ -25,6 +25,15 @@
#define Z_NAME_SN_CENTCOM "Soluna Nexus - Central Command" // Aliased to Z_NAME_ALIAS_CENTCOM
#define Z_NAME_SN_TRANSIT "Soluna Nexus - Transit"
+// Cetus
+#define Z_LEVEL_CETUS_STATION_ONE 1
+#define Z_LEVEL_CETUS_STATION_TWO 2
+#define Z_LEVEL_CETUS_STATION_THREE 3
+
+#define Z_NAME_CETUS_MISC "Cetus - Misc" // Aliased to Z_NAME_ALIAS_MISC
+#define Z_NAME_CETUS_CENTCOM "Cetus - Central Command" // Aliased to Z_NAME_ALIAS_CENTCOM
+#define Z_NAME_CETUS_TRANSIT "Cetus - Transit"
+
// Relic Base
#define Z_LEVEL_RB_CATACOMBS 1
#define Z_LEVEL_RB_UNDERGROUND 2
diff --git a/modular_chomp/maps/common/common_elevators.dm b/modular_chomp/maps/common/common_elevators.dm
index 2bb2ef85ce..d1d62f4c45 100644
--- a/modular_chomp/maps/common/common_elevators.dm
+++ b/modular_chomp/maps/common/common_elevators.dm
@@ -124,3 +124,30 @@
/area/turbolift/port_deck_one,
/area/turbolift/port_deck_two
)
+
+/obj/turbolift_map_holder/cetus
+ icon = 'icons/obj/turbolift_preview_5x5.dmi'
+ depth = 3
+ lift_size_x = 4
+ lift_size_y = 4
+
+/obj/turbolift_map_holder/cetus/atrium
+ name = "Cetus turbolift map placeholder - Atrium"
+ dir = NORTH
+ wall_type = null
+
+ areas_to_use = list(
+ /area/turbolift/atrium_deck_one,
+ /area/turbolift/atrium_deck_two,
+ /area/turbolift/atrium_deck_three
+ )
+
+/obj/turbolift_map_holder/cetus/utility
+ name = "Cetus turbolift map placeholder - Utility Atrium"
+ dir = WEST
+
+ areas_to_use = list(
+ /area/turbolift/utility_atrium_deck_one,
+ /area/turbolift/utility_atrium_deck_two,
+ /area/turbolift/utility_atrium_deck_three
+ )
diff --git a/modular_chomp/maps/common/common_machinery.dm b/modular_chomp/maps/common/common_machinery.dm
index ba8b56b03f..419be7692a 100644
--- a/modular_chomp/maps/common/common_machinery.dm
+++ b/modular_chomp/maps/common/common_machinery.dm
@@ -39,3 +39,50 @@
model_text = "Pilot"
req_access = null
req_one_access = list(ACCESS_PILOT,ACCESS_EXPLORER)
+
+/obj/machinery/light/fluorescent
+ name = "fluorescent light fixture"
+ nightshift_allowed = FALSE
+ overlay_color = LIGHT_COLOR_FLUORESCENT_TUBE
+ light_type = /obj/item/light/tube/fluorescent
+
+/obj/machinery/light/small/fluorescent
+ name = "fluorescent light fixture"
+ nightshift_allowed = FALSE
+ overlay_color = LIGHT_COLOR_FLUORESCENT_TUBE
+ light_type = /obj/item/light/bulb/fluorescent
+
+/obj/item/light/tube/fluorescent
+ desc = "A harsh, bright fluorescent light tube"
+ brightness_color = LIGHT_COLOR_FLUORESCENT_TUBE
+
+/obj/item/light/bulb/fluorescent
+ desc = "A harsh, bright fluorescent light tube"
+ brightness_color = LIGHT_COLOR_FLUORESCENT_TUBE
+
+/obj/machinery/light/yellowed
+ desc = "This light fixture displays a sickly yellow hue"
+ overlay_color = LIGHT_COLOR_YELLOW
+ nightshift_allowed = FALSE
+ light_type = /obj/item/light/tube/yellowed
+
+/obj/machinery/light/small/yellowed
+ desc = "This light fixture displays a sickly yellow hue"
+ overlay_color = LIGHT_COLOR_YELLOW
+ nightshift_allowed = FALSE
+ light_type = /obj/item/light/bulb/yellowed
+ brightness_power = 0.5
+
+/obj/item/light/tube/yellowed
+ desc = "An old, yellowed light tube."
+ color = COLOR_YELLOW
+ brightness_color = LIGHT_COLOR_YELLOW
+ brightness_power = 0.45
+ init_brightness_power = 0.45
+
+/obj/item/light/bulb/yellowed
+ desc = "An old, yellowed light bulb."
+ color = COLOR_YELLOW
+ brightness_color = LIGHT_COLOR_YELLOW
+ brightness_power = 0.5
+ init_brightness_power = 0.5
diff --git a/modular_chomp/maps/common/common_objects.dm b/modular_chomp/maps/common/common_objects.dm
new file mode 100644
index 0000000000..1b6f26f030
--- /dev/null
+++ b/modular_chomp/maps/common/common_objects.dm
@@ -0,0 +1,12 @@
+/obj/structure/railing/overhang/bronze
+ icon_modifier = "wbronze_"
+ icon_state = "wbronze_railing0"
+ interactable = TRUE
+
+/obj/structure/railing/overhang/grey
+ name = "steel ledge"
+ desc = "A metallic overhang that supports an elevated platform."
+ icon = 'modular_chomp/maps/overmap/aegis_carrier/aegis_icons/greyledge.dmi'
+ icon_modifier = "grey_"
+ icon_state = "grey_railing0"
+ interactable = TRUE
diff --git a/modular_chomp/maps/common/common_things.dm b/modular_chomp/maps/common/common_things.dm
index 6ffc9d90b4..42dddc59de 100644
--- a/modular_chomp/maps/common/common_things.dm
+++ b/modular_chomp/maps/common/common_things.dm
@@ -78,3 +78,15 @@
STOP_PROCESSING(SSobj, src)
depleted = TRUE
return
+
+/obj/effect/map_effect/portal/master/side_a/retreat_west
+ portal_id = "retreat_west"
+
+/obj/effect/map_effect/portal/master/side_b/retreat_west
+ portal_id = "retreat_west"
+
+/obj/effect/map_effect/portal/master/side_a/retreat_east
+ portal_id = "retreat_east"
+
+/obj/effect/map_effect/portal/master/side_b/retreat_east
+ portal_id = "retreat_east"
diff --git a/modular_chomp/maps/common/common_turfs.dm b/modular_chomp/maps/common/common_turfs.dm
index 854855562c..2e776822b9 100644
--- a/modular_chomp/maps/common/common_turfs.dm
+++ b/modular_chomp/maps/common/common_turfs.dm
@@ -63,3 +63,104 @@
name = ""
icon = 'icons/effects/effects.dmi'
icon_state = "1"
+
+/turf/simulated/mineral/cetus
+ desc = "Solid rock"
+ floor_name = "rocks"
+ outdoors = FALSE
+ ignore_cavegen = TRUE
+ sand_icon_path = 'icons/turf/outdoors.dmi'
+ sand_icon_state = "rock_brown"
+ oxygen = MOLES_O2STANDARD
+ nitrogen = MOLES_N2STANDARD
+ temperature = T20C
+
+/turf/simulated/mineral/cetus/Initialize(mapload)
+ if(!ignore_mapgen && prob(5))
+ turf_resource_types |= TURF_HAS_ORE
+ . = ..()
+
+
+/turf/simulated/floor/outdoors/rocks/cetus
+ name = "rocks"
+ outdoors = FALSE
+ icon_state = "rock_brown"
+ oxygen = MOLES_O2STANDARD
+ nitrogen = MOLES_N2STANDARD
+ temperature = T20C
+ initial_flooring = /decl/flooring/rock/cetus
+ flags = TURF_UNSHIELDABLE
+
+/decl/flooring/rock/cetus
+ icon_base = "rock_brown"
+
+/turf/simulated/mineral/cetus/edge
+ name = "cold rock"
+ desc = "Solid rock. It's cool to the touch. Digging through this will probably expose the area to hard vacuum!"
+ outdoors = TRUE
+ sand_icon_path = 'icons/turf/outdoors.dmi'
+ sand_icon_state = "rock_brown"
+ icon_state = "rock-dark"
+ ignore_mapgen = TRUE
+ oxygen = 0
+ nitrogen = 0
+ temperature = TCMB
+
+/turf/simulated/floor/outdoors/rocks/cetus/edge
+ outdoors = TRUE
+ icon_state = "rock_brown"
+ oxygen = 0
+ nitrogen = 0
+ temperature = TCMB
+ flags = null
+
+/turf/simulated/floor/outdoors/mud/cetus
+ flags = TURF_UNSHIELDABLE
+ outdoors = FALSE
+
+/turf/simulated/floor/water/indoors/station
+ name = "shallow water"
+ oxygen = MOLES_O2STANDARD
+ nitrogen = MOLES_N2STANDARD
+ temperature = T20C
+
+/turf/simulated/floor/water/deep/indoors/station
+ oxygen = MOLES_O2STANDARD
+ nitrogen = MOLES_N2STANDARD
+ temperature = T20C
+
+/turf/simulated/floor/water/hotspring/station
+ oxygen = MOLES_O2STANDARD
+ nitrogen = MOLES_N2STANDARD
+ temperature = T20C
+
+/turf/simulated/floor/water/pool/station
+ oxygen = MOLES_O2STANDARD
+ nitrogen = MOLES_N2STANDARD
+ temperature = T20C
+
+/turf/simulated/floor/water/deep/pool/station
+ oxygen = MOLES_O2STANDARD
+ nitrogen = MOLES_N2STANDARD
+ temperature = T20C
+
+
+/turf/simulated/floor/carpet/graycarpet
+ name = "gray carpet"
+ desc = "A dusty, gray carpeted floor."
+ icon = 'modular_chomp/icons/turf/flooring/carpet.dmi'
+ icon_state = "gcarpet"
+ initial_flooring = /decl/flooring/carpet/gray
+
+/decl/flooring/carpet/gray
+ name = "gray carpet"
+ desc = "A dusty, gray carpeted floor."
+ icon = 'modular_chomp/icons/turf/flooring/carpet.dmi'
+ icon_base = "gcarpet"
+ build_type = /obj/item/stack/tile/carpet/gray
+ flags = TURF_REMOVE_CROWBAR | TURF_CAN_BURN
+
+/obj/item/stack/tile/carpet/gray
+ name = "gray carpet"
+ icon_state = "tile"
+ desc = "A piece dusty, gray carpet. It is the same size as a normal floor tile!"
diff --git a/modular_chomp/maps/common_areas/station/ai.dm b/modular_chomp/maps/common_areas/station/ai.dm
index 2ff2396775..478ae66040 100644
--- a/modular_chomp/maps/common_areas/station/ai.dm
+++ b/modular_chomp/maps/common_areas/station/ai.dm
@@ -24,3 +24,14 @@
/area/ai_monitored/storage/eva/aux
name = "Auxiliary EVA Storage"
icon_state = "eva"
+
+/area/ai_monitored/aihall
+ name = "\improper AI Core Entry Hall"
+ icon_state = "ai_foyer"
+ holomap_color = HOLOMAP_AREACOLOR_COMMAND
+
+/area/ai_upload
+ holomap_color = HOLOMAP_AREACOLOR_COMMAND
+
+/area/ai_upload_foyer
+ holomap_color = HOLOMAP_AREACOLOR_COMMAND
diff --git a/modular_chomp/maps/common_areas/station/bridge.dm b/modular_chomp/maps/common_areas/station/bridge.dm
index 18017b7e6a..427e39afd9 100644
--- a/modular_chomp/maps/common_areas/station/bridge.dm
+++ b/modular_chomp/maps/common_areas/station/bridge.dm
@@ -92,3 +92,6 @@
/area/bridge/Vault
name = "\improper Vault"
icon_state = "bridge"
+
+/area/bridge/secretaryoffice
+ name = "\improper Command Secretary's Office"
diff --git a/modular_chomp/maps/common_areas/station/cargo.dm b/modular_chomp/maps/common_areas/station/cargo.dm
index afde6ea57f..94d31e1672 100644
--- a/modular_chomp/maps/common_areas/station/cargo.dm
+++ b/modular_chomp/maps/common_areas/station/cargo.dm
@@ -93,3 +93,9 @@
/area/quartermaster/lockerroom
name = "\improper Cargo Locker Room"
icon_state = "quart"
+
+/area/quartermaster/storage
+ holomap_color = HOLOMAP_AREACOLOR_CARGO
+
+/area/quartermaster/Recycling
+ holomap_color = HOLOMAP_AREACOLOR_CARGO
diff --git a/modular_chomp/maps/common_areas/station/droms.dm b/modular_chomp/maps/common_areas/station/droms.dm
index 64b22a3d55..03d3b5346d 100644
--- a/modular_chomp/maps/common_areas/station/droms.dm
+++ b/modular_chomp/maps/common_areas/station/droms.dm
@@ -347,3 +347,210 @@
/area/crew_quarters/seconddeck/gameroom
name = "\improper Game Room"
icon_state = "gaming"
+
+/area/chapel/chapel_morgue/cetus/crypt
+ name = "\improper Chapel Crypt"
+ base_turf = /turf/simulated/floor/outdoors/rocks/cetus
+ ambience = AMBIENCE_GHOSTLY
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus
+ flags = RAD_SHIELDED | AREA_FORBID_EVENTS | AREA_FORBID_SINGULO | AREA_ALLOW_CLOCKOUT
+
+/area/crew_quarters/cetus/theater
+ name = "\improper Theater"
+ icon_state = "Theatre"
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/dressing
+ name = "\improper Dressing Room"
+ icon_state = "Theatre"
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/clown
+ name = "\improper Clown Dressing Room"
+ icon_state = "Theatre"
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/mime
+ name = "\improper Mime Dressing Room"
+ icon_state = "Theatre"
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/lounge
+ name = "\improper Overlook Lounge"
+ icon_state = "lounge"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/jrlounge
+ name = "\improper Joint Research Lounge"
+ icon_state = "lounge"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/Libraryf1
+ name = "\improper Library Ground Floor"
+ icon_state = "library"
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/Libraryf2
+ name = "\improper Library Loft"
+ icon_state = "library"
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/Galleryf1
+ name = "\improper Art Gallery"
+ icon_state = "library"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/Galleryf2
+ name = "\improper Gallery Cafe"
+ icon_state = "coffee_shop"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+
+/area/crew_quarters/cetus/meteor
+ base_turf = /turf/simulated/floor/outdoors/rocks/cetus
+
+/area/crew_quarters/cetus/meteor/pool
+ name = "\improper Pool"
+ icon_state = "pool"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/meteor/showers
+ name = "\improper Pool Showers"
+ icon_state = "restrooms"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/meteor/restrooms
+ name = "\improper Dormitory Restrooms"
+ icon_state = "restrooms"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/meteor/barrestrooms
+ name = "\improper Bar Restrooms"
+ icon_state = "restrooms"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/meteor/laundry
+ name = "\improper Dorm Laundry Rooms"
+ icon_state = "laundry"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/meteor/vr
+ name = "\improper VR"
+ icon_state = "gaming"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/meteor/lounge
+ name = "\improper Cryo Lounge"
+ icon_state = "lounge"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/meteor/hallway1
+ name = "\improper Pool Hallway"
+ icon_state = "recreation_area_hallway"
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+
+/area/crew_quarters/cetus/meteor/hallway2
+ name = "\improper Dormitories Hallway"
+ icon_state = "recreation_area_hallway"
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+
+/area/crew_quarters/cetus/meteor/bar
+ name = "\improper Bar"
+ icon_state = "bar"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/meteor/cafeteriaf1
+ name = "\improper Cafeteria Ground Floor"
+ icon_state = "bar"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/cafeteriaf2
+ name = "\improper Cafeteria Deck Two"
+ icon_state = "bar"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/jrrestrooms
+ name = "\improper Joint Research Restrooms"
+ icon_state = "restrooms"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/dockrestrooms
+ name = "\improper Arrivals Restrooms"
+ icon_state = "restrooms"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/arcadestorage
+ name = "\improper Gaming Storage"
+ icon_state = "arcade"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/servicecloset
+ name = "\improper Service Closet"
+ icon_state = "storage"
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/cetus/docklock
+ name = "\improper Arrivals Locker Rooms"
+ icon_state = "crew_quarters"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/crew_quarters/sleep/cetus
+ icon_state = "Sleep"
+
+/area/crew_quarters/sleep/cetus/jrdorm1
+ name = "\improper Joint Research Dormitory 01"
+
+/area/crew_quarters/sleep/cetus/jrdorm2
+ name = "\improper Joint Research Dormitory 02"
+
+/area/crew_quarters/sleep/cetus/jrdorm3
+ name = "\improper Joint Research Dormitory 03"
+
+/area/crew_quarters/sleep/cetus/jrdorm4
+ name = "\improper Joint Research Dormitory 04"
+
+/area/crew_quarters/sleep/cetus/quartermaster
+ name = "\improper Quartermaster Quarters"
+
+/area/crew_quarters/sleep/cetus/meteor
+ base_turf = /turf/simulated/floor/outdoors/rocks/cetus
+
+/area/crew_quarters/sleep/cetus/meteor/dorm1
+ name = "\improper Dormitory 01"
+
+/area/crew_quarters/sleep/cetus/meteor/dorm2
+ name = "\improper Dormitory 02"
+
+/area/crew_quarters/sleep/cetus/meteor/dorm3
+ name = "\improper Dormitory 03"
+
+/area/crew_quarters/sleep/cetus/meteor/dorm4
+ name = "\improper Dormitory 04"
+
+/area/crew_quarters/sleep/cetus/meteor/dorm5
+ name = "\improper Dormitory 05"
+
+/area/crew_quarters/sleep/cetus/meteor/dorm6
+ name = "\improper Dormitory 06"
+
+/area/crew_quarters/sleep/cetus/meteor/dorm7
+ name = "\improper Dormitory 07"
+
+/area/crew_quarters/sleep/cetus/meteor/dorm8
+ name = "\improper Dormitory 08"
+
+/area/crew_quarters/sleep/cetus/meteor/dorm9
+ name = "\improper Dormitory 09"
+
+/area/crew_quarters/sleep/cetus/meteor/dorm10
+ name = "\improper Dormitory 10"
diff --git a/modular_chomp/maps/common_areas/station/engineering.dm b/modular_chomp/maps/common_areas/station/engineering.dm
index aa14ea4f41..35d1349dea 100644
--- a/modular_chomp/maps/common_areas/station/engineering.dm
+++ b/modular_chomp/maps/common_areas/station/engineering.dm
@@ -260,3 +260,109 @@
/area/engineering/gravgen
name = "Gravity Generator"
icon_state = "engineering"
+
+/area/engineering/cetus/portsubstation
+ name = "\improper Port Substation"
+ icon_state = "substation"
+ ambience = AMBIENCE_SUBSTATION
+ flags = RAD_SHIELDED | AREA_ALLOW_CLOCKOUT
+
+/area/engineering/cetus/aftsubstation
+ name = "\improper Aft Substation"
+ icon_state = "substation"
+ ambience = AMBIENCE_SUBSTATION
+ flags = RAD_SHIELDED | AREA_ALLOW_CLOCKOUT
+
+/area/engineering/cetus/foresubstation
+ name = "\improper Fore Substation"
+ icon_state = "substation"
+ ambience = AMBIENCE_SUBSTATION
+ flags = RAD_SHIELDED | AREA_ALLOW_CLOCKOUT
+
+/area/engineering/cetus/starsubstation
+ name = "\improper Starboard Substation"
+ icon_state = "substation"
+ ambience = AMBIENCE_SUBSTATION
+ flags = RAD_SHIELDED | AREA_ALLOW_CLOCKOUT
+
+/area/engineering/cetus/jointsubstation
+ name = "\improper Joint Research Substation"
+ icon_state = "substation"
+ ambience = AMBIENCE_SUBSTATION
+ flags = RAD_SHIELDED | AREA_ALLOW_CLOCKOUT
+
+/area/solar/cetus/joint
+ name = "\improper Joint Research Solar Array"
+ icon_state = "panelsP"
+
+/area/engineering/cetus/meteor
+ base_turf = /turf/simulated/floor/outdoors/rocks/cetus
+
+/area/engineering/cetus/meteor/gravgen
+ name = "\improper Gravity Generator"
+ icon_state = "engineering"
+ ambience = AMBIENCE_SUBSTATION
+
+/area/engineering/cetus/meteor/gravsubstation
+ name = "\improper Gravity Generator Substation"
+ icon_state = "substation"
+ ambience = AMBIENCE_SUBSTATION
+ flags = RAD_SHIELDED | AREA_ALLOW_CLOCKOUT
+
+/area/engineering/cetus/meteor/techstorage
+ name = "\improper Technical Storage"
+ icon_state = "engineering_storage"
+
+/area/engineering/cetus/meteor/refinery
+ name = "\improper Refinery"
+ icon_state = "engineering"
+ flags = RAD_SHIELDED
+ sound_env = SOUND_ENVIRONMENT_CAVE
+ lightswitch = FALSE
+
+/area/engineering/cetus/meteor/shieldgen
+ name = "\improper Shield Generator"
+ icon_state = "engineering"
+ sound_env = SMALL_ENCLOSED
+
+/area/engineering/cetus/meteor/dronefab
+ name = "\improper Drone Fabrication"
+ icon_state = "drone_fab"
+ sound_env = SMALL_ENCLOSED
+
+/area/engineering/cetus/meteor/smes
+ name = "\improper Engineering SMES"
+ icon_state = "engine_smes"
+ sound_env = SMALL_ENCLOSED
+
+/area/engineering/cetus/meteor/airlock
+ name = "\improper Engine Airlock"
+ icon_state = "engine"
+ sound_env = SMALL_ENCLOSED
+
+/area/engineering/cetus/meteor/engineroom
+ name = "\improper Engine Room"
+ icon_state = "engine"
+ sound_env = LARGE_ENCLOSED
+ flags = AREA_FORBID_EVENTS
+
+/area/engineering/cetus/meteor/enginemonitor
+ name = "\improper Engine Monitoring Room"
+ icon_state = "engine_monitoring"
+
+/area/engineering/cetus/meteor/enginewaste
+ name = "\improper Engine Waste Handling"
+ icon_state = "engine_waste"
+
+/area/engineering/cetus/meteor/atriumdeck1
+ name = "\improper Engineering Atrium Deck One"
+ icon_state = "engineering"
+
+/area/engineering/cetus/atriumdeck2
+ name = "\improper Engineering Atrium Deck Two"
+ icon_state = "engineering"
+
+/area/tcomm/entrance/cetus
+ name = "\improper Teleporter"
+ icon_state = "teleporter"
+ holomap_color = HOLOMAP_AREACOLOR_COMMAND
diff --git a/modular_chomp/maps/common_areas/station/hallway.dm b/modular_chomp/maps/common_areas/station/hallway.dm
index 63c07d2976..ac0e479fcc 100644
--- a/modular_chomp/maps/common_areas/station/hallway.dm
+++ b/modular_chomp/maps/common_areas/station/hallway.dm
@@ -415,3 +415,74 @@
/area/hallway/primary/thirddeck/aftdoorm
name = "\improper Third Deck Aft Doorm Hallway"
icon_state = "docking_hallway"
+
+/area/crew_quarters/cetus/meteor/stairwellf1
+ name = "\improper Primary Stairwell Deck One"
+ icon_state = "hallC"
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+
+/area/hallway/cetus/stairwellf2
+ name = "\improper Primary Stairwell Deck Two"
+ icon_state = "hallC"
+
+/area/hallway/cetus/stairwellf3
+ name = "\improper Primary Stairwell Deck Three"
+ icon_state = "hallC"
+
+/area/crew_quarters/cetus/jrhallway
+ name = "Joint Research Dormitory Hallway"
+ icon_state = "hallC"
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+
+/area/crew_quarters/cetus/atrium
+ icon_state = "hallC"
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+
+/area/crew_quarters/cetus/escapepodjr
+ name = "\improper Joint Research Escape Pod Lounge"
+ icon_state = "docking_lounge"
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+
+/area/crew_quarters/cetus/escapepodfore
+ name = "\improper Fore Escape Pod Lounge"
+ icon_state = "docking_lounge"
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+
+/area/crew_quarters/cetus/escapepodaft
+ name = "\improper Aft Escape Pod Lounge"
+ icon_state = "docking_lounge"
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+
+/area/crew_quarters/cetus/escapepodstar
+ name = "\improper Starboard Escape Pod Lounge"
+ icon_state = "docking_lounge"
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+
+/area/crew_quarters/cetus/escapepodport
+ name = "\improper Port Escape Pod Lounge"
+ icon_state = "docking_lounge"
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+
+/area/crew_quarters/cetus/atrium/primary
+ name = "\improper Primary Atrium"
+
+/area/crew_quarters/cetus/meteor/atrium
+ name = "\improper Secondary Atrium Deck One"
+ icon_state = "hallC"
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+
+/area/crew_quarters/cetus/atrium/secondaryf2
+ name = "\improper Secondary Atrium Deck Two"
+
+/area/crew_quarters/cetus/atrium/secondaryf3
+ name = "\improper Secondary Atrium Deck Three"
+
+/area/crew_quarters/cetus/meteor/hallway1
+ name = "\improper Pool Hallway"
+ icon_state = "recreation_area_hallway"
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+
+/area/crew_quarters/cetus/meteor/hallway2
+ name = "\improper Dormitories Hallway"
+ icon_state = "recreation_area_hallway"
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
diff --git a/modular_chomp/maps/common_areas/station/maints.dm b/modular_chomp/maps/common_areas/station/maints.dm
index ff489c965b..8eb68d22b3 100644
--- a/modular_chomp/maps/common_areas/station/maints.dm
+++ b/modular_chomp/maps/common_areas/station/maints.dm
@@ -318,7 +318,7 @@
icon_state = "fsmaint"
/area/maintenance/ab_GeneralStore
- name = "\improper abandoned GeneralStore"
+ name = "\improper Abandoned General Store"
icon_state = "fsmaint"
/area/maintenance/ab_Kitchen
@@ -1069,3 +1069,377 @@
icon_state = "engineering"
ambience = AMBIENCE_SUBSTATION
lightswitch = 1
+
+/area/maintenance/cetus
+ icon_state = "maint"
+ flags = RAD_SHIELDED | AREA_ALLOW_CLOCKOUT
+
+/area/maintenance/cetus/shallow
+ turf_initializer = new /datum/turf_initializer/maintenance/shallow()
+ sound_env = SOUND_ENVIRONMENT_CARPETED_HALLWAY
+ ambience = AMBIENCE_RUINS
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+
+/area/maintenance/cetus/meteor
+ base_turf = /turf/simulated/floor/outdoors/rocks/cetus
+
+/area/maintenance/cetus/meteor/jrfore
+ name = "\improper Joint Research Deck One Fore Maintenance"
+ icon_state = "fmaint"
+
+/area/maintenance/cetus/meteor/jraft
+ name = "\improper Joint Research Deck One Aft Maintenance"
+ icon_state = "amaint"
+ ambience = AMBIENCE_TECH_RUINS
+
+/area/maintenance/cetus/meteor/star
+ name = "\improper Deck One Starboard Maintenance"
+ icon_state = "smaint"
+
+/area/maintenance/cetus/meteor/aftstar
+ name = "\improper Deck One Aft Starboard Maintenance"
+ icon_state = "asmaint"
+ sound_env = SOUND_ENVIRONMENT_CAVE
+
+/area/maintenance/cetus/meteor/central
+ name = "\improper Deck One Central Maintenance"
+ icon_state = "maintcentral"
+ sound_env = SOUND_ENVIRONMENT_CAVE
+ flags = RAD_SHIELDED | AREA_FORBID_SINGULO | AREA_ALLOW_CLOCKOUT// no singulo here, meaning this section of maints protects dorms if tesla gets loose
+
+/area/maintenance/cetus/meteor/starsec
+ name = "\improper Deck One Starboard Security Maintenance"
+ icon_state = "maint_security_starboard"
+ sound_env = SOUND_ENVIRONMENT_CAVE
+
+/area/maintenance/cetus/meteor/portsec
+ name = "\improper Deck One Port Security Maintenance"
+ icon_state = "maint_security_port"
+ sound_env = SOUND_ENVIRONMENT_CAVE
+
+/area/maintenance/cetus/meteor/pond
+ name = "\improper Topsoil Storage"
+ sound_env = SOUND_ENVIRONMENT_CAVE
+
+/area/maintenance/cetus/meteor/ragecage
+ name = "\improper Underdome"
+ sound_env = SOUND_ENVIRONMENT_CAVE
+
+/area/maintenance/cetus/meteor/foremed
+ name = "\improper Deck One Fore Medbay Maintenance"
+ icon_state = "maint_medbay_fore"
+ sound_env = SOUND_ENVIRONMENT_CAVE
+
+/area/maintenance/cetus/aftmed
+ name = "\improper Deck One Aft Medbay Maintenance"
+ icon_state = "maint_medbay_aft"
+
+/area/maintenance/cetus/ripperdock
+ name = "\improper Abandoned Private Physiology"
+ icon_state = "maint_medbay"
+ ambience = AMBIENCE_FOREBODING
+ lightswitch = FALSE
+
+/area/maintenance/cetus/dentist
+ name = "\improper Abandoned Dental"
+ icon_state = "maint_medbay"
+ ambience = AMBIENCE_GHOSTLY
+ lightswitch = FALSE
+
+/area/maintenance/cetus/stylist
+ name = "\improper Abandoned Barbershop"
+ lightswitch = FALSE
+
+/area/maintenance/cetus/mechbay
+ name = "\improper Abandoned Mechbay"
+ icon_state = "maint_research"
+ lightswitch = FALSE
+
+/area/maintenance/cetus/tech
+ name = "\improper Abandoned Technological Workshop"
+ icon_state = "maint_research"
+ ambience = AMBIENCE_HIGHSEC
+ lightswitch = FALSE
+
+/area/maintenance/cetus/cozyobservatory
+ name = "\improper Abandoned Observatory"
+ icon_state = "maint_dormitory"
+ lightswitch = FALSE
+
+/area/maintenance/cetus/hallway
+ name = "\improper Abandoned Primary Hallway"
+ icon_state = "maintcentral"
+ holomap_color = HOLOMAP_AREACOLOR_HALLWAYS
+
+/area/maintenance/cetus/janitorial
+ name = "\improper Abandoned Broom Closet"
+ lightswitch = FALSE
+
+/area/maintenance/cetus/nanites
+ name = "\improper Nanite Storage"
+ ambience= AMBIENCE_HIGHSEC
+ lightswitch = FALSE
+
+/area/maintenance/cetus/workshop
+ name = "\improper Abandoned Workshop"
+ icon_state = "maint_engineering"
+ lightswitch = FALSE
+
+/area/maintenance/cetus/construction
+ name = "\improper Designation Not Set"
+ icon_state = "maint_engineering"
+ lightswitch = FALSE
+
+/area/maintenance/cetus/d1port
+ name = "\improper Deck One Port Maintenance"
+ icon_state = "pmaint"
+
+/area/maintenance/cetus/engine
+ name = "\improper Incomplete Engine Room"
+ icon_state = "maint_engineering"
+ ambience = AMBIENCE_SUBSTATION
+ sound_env = SOUND_ENVIRONMENT_CAVE
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_ENGINEERING
+
+/area/maintenance/cetus/twojrport
+ name = "\improper Joint Research Deck Two Port Maintenance"
+ icon_state = "maint_research_port"
+ sound_env = SOUND_ENVIRONMENT_CAVE
+ ambience = AMBIENCE_OTHERWORLDLY
+
+/area/maintenance/cetus/twojrstar
+ name = "\improper Joint Research Deck Two Starboard Maintenance"
+ icon_state = "maint_research_starboard"
+
+/area/maintenance/cetus/mainsupport
+ name = "\improper Main Support Structure"
+ ambience = AMBIENCE_SPACE
+ turf_initializer = null
+
+/area/maintenance/cetus/auxsupport
+ name = "\improper Auxilliary Support Structure"
+ ambience = AMBIENCE_SPACE
+ turf_initializer = null
+
+/area/maintenance/cetus/solars
+ name = "\improper Solars Maintenance"
+ ambience = AMBIENCE_OTHERWORLDLY
+
+/area/maintenance/cetus/twosci
+ name = "\improper Deck Two Research Maintenance"
+ icon_state = "maint_research_port"
+
+/area/maintenance/cetus/twomed
+ name = "\improper Deck Two Medical Maintenance"
+ icon_state = "maint_medbay"
+
+/area/maintenance/cetus/twofp
+ name = "\improper Deck Two Fore Port Maintenance"
+ icon_state = "fpmaint"
+
+/area/maintenance/cetus/twoap
+ name = "\improper Deck Two aft Port Maintenance"
+ icon_state = "apmaint"
+
+/area/maintenance/cetus/comissary
+ name = "\improper Abandoned Comissary"
+
+/area/maintenance/cetus/twobar
+ name = "\improper Deck Two Bar Maintenance"
+ icon_state = "maint_bar"
+ sound_env = SOUND_ENVIRONMENT_CAVE
+
+/area/maintenance/cetus/twosec
+ name = "\improper Deck Two Security Maintenance"
+ icon_state = "maint_security_starboard"
+ sound_env = SOUND_ENVIRONMENT_CAVE
+
+/area/maintenance/cetus/twocave
+ name = "\improper Atrium Maintenance Shaft"
+ icon_state = "maintcentral"
+ sound_env = SOUND_ENVIRONMENT_CAVE
+
+/area/maintenance/cetus/twocargo
+ name = "\improper Deck Two Cargo Maintenance"
+ icon_state = "maint_cargo"
+ sound_env = SOUND_ENVIRONMENT_CAVE
+
+/area/maintenance/cetus/twostar
+ name = "\improper Deck Two Starboard Maintenance"
+ icon_state = "smaint"
+
+/area/maintenance/cetus/jrthreeport
+ name = "\improper Joint Research Deck Three Port Maintenance"
+ icon_state = "maint_research_port"
+ sound_env = SOUND_ENVIRONMENT_CAVE
+ ambience = AMBIENCE_OTHERWORLDLY
+
+/area/maintenance/cetus/jrthreestar
+ name = "\improper Joint Research Deck Three Starboard Maintenance"
+ icon_state = "maint_research_starboard"
+ sound_env = SOUND_ENVIRONMENT_CAVE
+
+/area/maintenance/cetus/sex
+ name = "\improper Accomodations Room"
+ icon_state = "maint_dormitory"
+ lightswitch = FALSE
+
+/area/maintenance/cetus/threefp
+ name = "\improper Deck Three Fore Port Maintenance"
+ icon_state = "fpmaint"
+
+/area/maintenance/cetus/threeap
+ name = "\improper Deck Three Aft Port Maintenance"
+ icon_state = "apmaint"
+
+/area/maintenance/cetus/threefs
+ name = "\improper Deck Three Fore Starboard Maintenance"
+ icon_state = "fsmaint"
+
+/area/maintenance/cetus/threeas
+ name = "\improper Deck Three Aft Starboard Maintenance"
+ icon_state = "asmaint"
+
+/area/maintenance/cetus/threecp
+ name = "\improper Deck Three Central Port Maintenance"
+ icon_state = "pmaint"
+
+/area/maintenance/cetus/disposals
+ name = "\improper Disposals"
+ icon_state = "disposal"
+
+/area/maintenance/cetus/shallow/flooded
+ name = "\improper Flooded Maintenance"
+ icon_state = "maint_pool"
+ ambience = AMBIENCE_HOLY
+ holomap_color = null
+
+/area/maintenance/cetus/shallow/fp
+ name = "\improper Fore Port Corridors"
+ icon_state = "fpmaint"
+
+/area/maintenance/cetus/shallow/ap
+ name = "\improper Aft Port Corridors"
+ icon_state = "apmaint"
+
+/area/maintenance/cetus/shallow/starboard
+ name = "\improper Starboard Corridors"
+ icon_state = "smaint"
+
+/area/maintenance/cetus/shallow/backstage
+ name = "\improper Theater Corridors"
+ icon_state = "maint"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/maintenance/cetus/d3bar
+ name = "\improper Deck 3 Bar Maintenance"
+ icon_state = "maint_bar"
+
+/area/maintenance/cetus/d3docks
+ name = "\improper Deck 3 Arrivals Maintenance"
+ icon_state = "maint_arrivals"
+
+/area/maintenance/cetus/badsnuggles
+ name = "\improper Abandoned Lounge"
+ icon_state = "maint_dormitory"
+ ambience = AMBIENCE_GHOSTLY
+
+/area/maintenance/cetus/arcade
+ name = "\improper Abandoned arcade"
+ icon_state = "arcade2"
+ ambience = AMBIENCE_AESTHETIC
+
+
+/area/maintenance/cetus/shallow/bodyguard
+ name = "\improper Private Security"
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/maintenance/cetus/shallow/detective
+ name = "\improper Private Investigations"
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/maintenance/cetus/shallow/law
+ name = "\improper Private Legal Office"
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/maintenance/cetus/shallow/quack
+ name = "\improper Alternative Visions"
+ ambience = AMBIENCE_OTHERWORLDLY
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+
+/area/maintenance/cetus/shallow/derelict
+ sound_env = STANDARD_STATION
+ ambience = AMBIENCE_FOREBODING
+
+/area/maintenance/cetus/shallow/derelict/hallway
+ name = "\improper Derelict Hallway"
+ icon_state = "hallC"
+
+/area/maintenance/cetus/shallow/derelict/eva
+ name = "\improper Derelict EVA"
+ holomap_color = HOLOMAP_AREACOLOR_COMMAND
+
+/area/maintenance/cetus/shallow/derelict/atmos
+ name = "\improper Derelict Atmospherics"
+ icon_state = "atmos"
+ holomap_color = HOLOMAP_AREACOLOR_ENGINEERING
+
+/area/maintenance/cetus/shallow/derelict/engine
+ name = "\improper Derelict Reactor"
+ icon_state = "engine"
+ holomap_color = HOLOMAP_AREACOLOR_ENGINEERING
+
+/area/maintenance/cetus/shallow/derelict/dorms
+ name = "\improper Derelict Dormitory"
+ icon_state = "maint_dormitory"
+ holomap_color = HOLOMAP_AREACOLOR_DORMS
+
+/area/maintenance/cetus/shallow/derelict/medbay
+ name = "\improper Derelict Medbay"
+ icon_state = "maint_medbay"
+ holomap_color = HOLOMAP_AREACOLOR_MEDICAL
+
+/area/maintenance/cetus/shallow/derelict/dock
+ name = "\improper Derelict Dock"
+ icon_state = "maint_arrivals"
+
+/area/maintenance/cetus/shallow/derelict/bridge
+ name = "\improper Derelict Bridge"
+ holomap_color = HOLOMAP_AREACOLOR_COMMAND
+
+/area/maintenance/cetus/shallow/derelict/kitchen
+ name = "\improper Derelict Cafeteria"
+ icon_state = "maint_bar"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/maintenance/cetus/shallow/derelict/locker
+ name = "\improper Derelict Locker Room"
+ icon_state = "maint_locker"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/maintenance/cetus/shallow/derelict/bathroom
+ name = "\improper Derelict Bathroom"
+ icon_state = "restrooms"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/maintenance/cetus/shallow/gamba
+ name = "\improper Abandoned Gambling Den"
+ icon_state = "gaming"
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/maintenance/cetus/fishery
+ name = "\improper Abandoned Bait and Tackle"
+ lightswitch = FALSE
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+/area/maintenance/cetus/lobby
+ name = "\improper Commercial Hall Reception"
+ ambience = AMBIENCE_HIGHSEC
+ holomap_color = HOLOMAP_AREACOLOR_CIV
diff --git a/modular_chomp/maps/common_areas/station/medical.dm b/modular_chomp/maps/common_areas/station/medical.dm
index f69842bdf8..a779f3e446 100644
--- a/modular_chomp/maps/common_areas/station/medical.dm
+++ b/modular_chomp/maps/common_areas/station/medical.dm
@@ -201,3 +201,30 @@
name ="\improper Patient B"
icon_state = "medbay_patient_room_b"
flags = RAD_SHIELDED
+
+/area/medical/cetus/atriumd1
+ name = "\improper Medical Atrium Deck One"
+ base_turf = /turf/simulated/floor/outdoors/rocks/cetus
+
+/area/medical/cetus/atriumd2
+ name = "\improper Medical Atrium Deck Two"
+
+/area/medical/cetus/hall
+ name = "\improper Medical Port Hallway"
+
+/area/medical/cetus/jrfirstaid
+ name = "\improper Joint Research Medical Station"
+
+/area/medical/cetus/dormfirstaid
+ name = "\improper Recreation Medical Station"
+ base_turf = /turf/simulated/floor/outdoors/rocks/cetus
+ flags = RAD_SHIELDED | AREA_FORBID_EVENTS | AREA_FORBID_SINGULO
+
+/area/medical/cetus/sleevelobby
+ name = "\improper EMT Lobby"
+ icon_state = "medbay_emt_bay"
+
+/area/medical/morgue/cetus
+ base_turf = /turf/simulated/floor/outdoors/rocks/cetus
+ ambience = AMBIENCE_GHOSTLY
+ lightswitch = FALSE
diff --git a/modular_chomp/maps/common_areas/station/research.dm b/modular_chomp/maps/common_areas/station/research.dm
index a7690d05bd..acc82c7c36 100644
--- a/modular_chomp/maps/common_areas/station/research.dm
+++ b/modular_chomp/maps/common_areas/station/research.dm
@@ -117,3 +117,45 @@
/area/rnd/mixing/simulated_caves
base_turf = /turf/simulated/floor/outdoors/rocks/caves
+
+/area/rnd/cetus
+ icon_state = "research"
+
+/area/rnd/cetus/entry
+ name = "\improper Joint Research Public Entry"
+
+/area/rnd/cetus/stairwelljr3
+ name = "\improper Joint Research Stairwell Deck 3"
+
+/area/rnd/cetus/jrhall
+ name = "\improper Joint Research Primary Hallway"
+
+/area/rnd/cetus/hall
+ name = "\improper Research Primary Hallway"
+
+/area/rnd/cetus/observatory
+ name = "\improper Research Observatory"
+
+/area/rnd/cetus/chem
+ name = "\improper Joint Research Chemical Lab"
+
+/area/rnd/cetus/meteor
+ base_turf = /turf/simulated/floor/outdoors/rocks/cetus
+
+/area/rnd/cetus/meteor/dangerousspecimens
+ name = "\improper Joint Research Dangerous Specimens Testing"
+
+/area/rnd/cetus/meteor/carbonresearch
+ name = "\improper Joint Research Carbon Testing"
+
+/area/rnd/cetus/meteor/stairwelljr1
+ name = "\improper Joint Research Stairwell Deck 1"
+
+/area/rnd/cetus/meteor/toxstorage
+ name = "\improper Toxins Storage"
+
+/area/rnd/cetus/meteor/toxins
+ name = "\improper Toxins Mixing"
+
+/area/rnd/cetus/meteor/toxtest
+ name = "\improper Toxins Testing"
diff --git a/modular_chomp/maps/common_areas/station/security.dm b/modular_chomp/maps/common_areas/station/security.dm
index 27457f6ffc..c464096a18 100644
--- a/modular_chomp/maps/common_areas/station/security.dm
+++ b/modular_chomp/maps/common_areas/station/security.dm
@@ -139,3 +139,24 @@
/area/security/tactical/simulated_caves
base_turf = /turf/simulated/floor/outdoors/rocks/caves
+
+/area/security/cetus/meteor
+ base_turf = /turf/simulated/floor/outdoors/rocks/cetus
+
+/area/security/cetus/meteor/armory
+ name = "\improper Armory"
+ icon_state = "armory"
+ ambience = AMBIENCE_HIGHSEC
+
+/area/security/cetus/meteor/brig
+ name = "\improper Prison General Population"
+ icon_state = "brig"
+ flags = RAD_SHIELDED
+
+/area/security/cetus/meteor/forensic
+ name = "\improper Forensic Lab"
+ icon_state = "detective"
+
+/area/security/cetus/meteor/hallway
+ name = "\improper Lower Security"
+ icon_state = "security"
diff --git a/modular_chomp/maps/common_areas/station/station.dm b/modular_chomp/maps/common_areas/station/station.dm
index 6e5ce555a9..2c6632d2be 100644
--- a/modular_chomp/maps/common_areas/station/station.dm
+++ b/modular_chomp/maps/common_areas/station/station.dm
@@ -36,3 +36,52 @@
/area/teleporter/firstdeck/prep
name = "Teleporter Bay Prep"
+
+
+/area/hangar/cetus/two
+ name = "\improper Hangar Two"
+ base_turf = /turf/simulated/floor/outdoors/rocks/cetus
+ holomap_color = HOLOMAP_AREACOLOR_SCIENCE
+
+/area/hangar/cetus/explofoyer
+ name = "\improper Exploration Foyer"
+ icon_state = "hangarcontrol"
+ holomap_color = HOLOMAP_AREACOLOR_SCIENCE
+
+/area/hangar/cetus/explolocker
+ name = "\improper Exploration Locker Room"
+ icon_state = "hangarcontrol"
+ base_turf = /turf/simulated/floor/outdoors/rocks/cetus
+ holomap_color = HOLOMAP_AREACOLOR_SCIENCE
+
+/area/teleporter/arrivals
+ name = "\improper Arrivals Teleporter"
+
+/area/teleporter/departure
+ name = "\improper Departure Teleporter"
+ holomap_color = HOLOMAP_AREACOLOR_CIV
+
+
+/area/asteroid/cetus
+ flags = AREA_FORBID_EVENTS | AREA_FLAG_IS_NOT_PERSISTENT
+ icon_state = "away"
+ requires_power = TRUE
+
+/area/asteroid/cetus/d1
+ name = "\improper Primary Meteor Deck One"
+ base_turf = /turf/simulated/floor/outdoors/rocks/cetus
+
+/area/asteroid/cetus/d1/jr
+ name = "\improper Secondary Meteor Deck One"
+
+/area/asteroid/cetus/d2
+ name = "\improper Primary Meteor Deck Two"
+
+/area/asteroid/cetus/d2/jr
+ name = "\improper Secondary Meteor Deck Two"
+
+/area/asteroid/cetus/d3
+ name = "\improper Primary Meteor Deck Three"
+
+/area/asteroid/cetus/d3/jr
+ name = "\improper Secondary Meteor Deck Three"
diff --git a/modular_chomp/maps/common_areas/station/turbolift.dm b/modular_chomp/maps/common_areas/station/turbolift.dm
index 91f70e6bd1..0118fdd799 100644
--- a/modular_chomp/maps/common_areas/station/turbolift.dm
+++ b/modular_chomp/maps/common_areas/station/turbolift.dm
@@ -133,3 +133,41 @@
lift_floor_label = "Deck 3"
lift_floor_name = "Command Deck"
lift_announce_str = "Arriving at Command Deck: Bridge. Meeting Room. Command Quarters. AI Core. Solars."
+
+/area/turbolift/atrium_deck_one
+ name = "lift (first deck)"
+ lift_floor_label = "Deck 1"
+ lift_floor_name = "Leisure Deck"
+ lift_announce_str = "Arriving at Leisure Deck: Pool, Dormitory. Bar. Virtual Reality. Cryogenic Storage."
+ base_turf = /turf/simulated/floor/plating/eris/under
+
+/area/turbolift/atrium_deck_two
+ name = "lift (second deck)"
+ lift_floor_label = "Deck 2"
+ lift_floor_name = "Operations Deck"
+ lift_announce_str = "Arriving at Operations Deck: Engineering. Cargo. Medbay. Research. Security. Crew Facilities. Shuttle Docks. Teleporter."
+
+/area/turbolift/atrium_deck_three
+ name = "lift (third deck)"
+ lift_floor_label = "Deck 3"
+ lift_floor_name = "Command Deck"
+ lift_announce_str = "Arriving at Command Deck: Bridge. Meeting Room. Command Quarters. AI Core. Solars."
+
+/area/turbolift/utility_atrium_deck_one
+ name = "lift (first deck)"
+ lift_floor_label = "Deck 1"
+ lift_floor_name = "Utility Atrium, deck one"
+ lift_announce_str = "Arriving at Utility Atrium, deck one: Gravity Generator. Technical Storage."
+ base_turf = /turf/simulated/floor/plating/eris/under
+
+/area/turbolift/utility_atrium_deck_two
+ name = "lift (second deck)"
+ lift_floor_label = "Deck 2"
+ lift_floor_name = "Utility Atrium, deck two"
+ lift_announce_str = "Arriving at Utility Atrium, deck two: Engineering. Cargo."
+
+/area/turbolift/utility_atrium_deck_three
+ name = "lift (third deck)"
+ lift_floor_label = "Deck 3"
+ lift_floor_name = "Utility Atrium, deck three"
+ lift_announce_str = "Utility Atrium, deck three: Theater. Mining. Unused Sector. Atmospherics."
diff --git a/modular_chomp/maps/overmap/aegis_carrier/aegis_icons/greyledge.dmi b/modular_chomp/maps/overmap/aegis_carrier/aegis_icons/greyledge.dmi
index 97968472f8..3cb11325e8 100644
Binary files a/modular_chomp/maps/overmap/aegis_carrier/aegis_icons/greyledge.dmi and b/modular_chomp/maps/overmap/aegis_carrier/aegis_icons/greyledge.dmi differ
diff --git a/modular_chomp/maps/overmap/sectors/common_overmap.dm b/modular_chomp/maps/overmap/sectors/common_overmap.dm
index eb5c75a742..c001f21ca5 100644
--- a/modular_chomp/maps/overmap/sectors/common_overmap.dm
+++ b/modular_chomp/maps/overmap/sectors/common_overmap.dm
@@ -181,6 +181,94 @@ GLOBAL_LIST_EMPTY(station_waypoints) //Create global list for station waypoints,
GLOB.station_waypoints -= src
. = ..()
+/obj/effect/overmap/visitable/sector/Cetus
+ name = "Cetus"
+ icon = 'modular_chomp/icons/obj/overmap.dmi'
+ icon_state = "cetus"
+ desc = "Cetus station, orbiting Sif."
+ scanner_desc = @{"[i]Registration[/i]: NSS Cetus
+[i]Class[/i]: Installation
+[i]Transponder[/i]: Transmitting (NT), NanoTrasen IFF
+[b]Notice[/b]: NanoTrasen research station, authorized personnel only"}
+ base = 1
+ in_space = 1
+ start_x = 10
+ start_y = 10
+ known = 1 // lets Sectors appear on shuttle navigation for easy finding.
+
+ extra_z_levels = list(Z_NAME_CETUS_TRANSIT, Z_NAME_ALIAS_MISC, Z_NAME_ALIAS_SURFACE, Z_NAME_ALIAS_SURFACE_MINES, Z_NAME_ALIAS_SURFACE_WILDS) //This should allow for comms to reach people from the station. Basically this defines all the areas of Southern Cross and the Sif local system on the overmap.
+ // "Z_LEVEL_SURFACE_SKYLANDS, " //removed due to lack of use
+ mob_announce_cooldown = 0
+
+
+ initial_generic_waypoints = list(
+ "w1_a",
+ "w1_b",
+ "w2_a",
+ "w3_a",
+ "w3_b",
+ "w3_c",
+ "hangar_2",
+ "andromeda_1",
+ "andromeda_2",
+ "andromeda_3",
+ "d1_near_jr",
+ "d1_near_se",
+ "d1_near_sw",
+ "d2_near_n",
+ "d2_near_se",
+ "d2_near_sw",
+ "d3_near_jr",
+ "d3_near_se",
+ "d3_near_sw",
+ "baby_mammoth_dock",
+ "ursula_dock",
+ "stargazer_dock",
+ "needle_dock",
+ "echidna_dock"
+ )
+
+/obj/effect/overmap/visitable/sector/Cetus/get_space_zlevels() //These are the primary levels that our space station resides in. This also indicates what levels astronauts can drift into.
+ return list(
+ Z_LEVEL_CETUS_STATION_ONE,
+ Z_LEVEL_CETUS_STATION_TWO,
+ Z_LEVEL_CETUS_STATION_THREE,
+ GLOB.map_templates_loaded[Z_NAME_ALIAS_MISC])
+
+/obj/effect/overmap/visitable/sector/Cetus/Crossed(var/atom/movable/AM)
+ . = ..()
+ announce_atc(AM,going = FALSE)
+
+/obj/effect/overmap/visitable/sector/Cetus/Uncrossed(var/atom/movable/AM)
+ . = ..()
+ announce_atc(AM,going = TRUE)
+
+/obj/effect/overmap/visitable/sector/Cetus/announce_atc(var/atom/movable/AM, var/going = FALSE)
+ if(istype(AM, /obj/effect/overmap/visitable/ship/simplemob))
+ if(world.time < mob_announce_cooldown)
+ return
+ else
+ mob_announce_cooldown = world.time + 5 MINUTES
+ var/message = "Sensor contact for vessel '[AM.name]' has [going ? "left" : "entered"] ATC control area."
+ //For landables, we need to see if their shuttle is cloaked
+ if(istype(AM, /obj/effect/overmap/visitable/ship/landable))
+ var/obj/effect/overmap/visitable/ship/landable/SL = AM //Phew
+ var/datum/shuttle/autodock/multi/shuttle = SSshuttles.shuttles[SL.shuttle]
+ if(!istype(shuttle) || !shuttle.cloaked) //Not a multishuttle (the only kind that can cloak) or not cloaked
+ SSatc.msg(message)
+
+ //For ships, it's safe to assume they're big enough to not be sneaky
+ else if(istype(AM, /obj/effect/overmap/visitable/ship))
+ SSatc.msg(message)
+
+/obj/effect/overmap/visitable/sector/Cetus/Initialize(mapload)
+ . = ..()
+ GLOB.station_waypoints += src
+
+/obj/effect/overmap/visitable/sector/Cetus/Destroy()
+ GLOB.station_waypoints -= src
+ . = ..()
+
/obj/effect/overmap/visitable/ship/explo_carrier
name = "NEV Aegis"
icon_state = "nt_destroyer_g"
@@ -196,8 +284,9 @@ GLOBAL_LIST_EMPTY(station_waypoints) //Create global list for station waypoints,
/obj/effect/overmap/visitable/ship/explo_carrier/Initialize(mapload)
. = ..()
- for(var/obj/effect/overmap/visitable/sector/Southern_Cross/sc in GLOB.station_waypoints) //Scan the global list for our station, get docking codes so all other ships that spawn on it init with the correct ones.
- src.docking_codes = sc.docking_codes
+ for(var/obj/effect/overmap/visitable/sector/sc in GLOB.station_waypoints) //Scan the global list for our station, get docking codes so all other ships that spawn on it init with the correct ones.
+ if(istype(sc, /obj/effect/overmap/visitable/sector/Soluna_Nexus) || istype(sc, /obj/effect/overmap/visitable/sector/Cetus) || istype(sc, /obj/effect/overmap/visitable/sector/Southern_Cross))
+ src.docking_codes = sc.docking_codes
// Overmap object for Thor, hanging in the void of space
/obj/effect/overmap/visitable/planet/Thor
diff --git a/modular_chomp/maps/~map_system/_map_selection.dm b/modular_chomp/maps/~map_system/_map_selection.dm
index f9df3d7cbf..b05f921168 100644
--- a/modular_chomp/maps/~map_system/_map_selection.dm
+++ b/modular_chomp/maps/~map_system/_map_selection.dm
@@ -5,7 +5,7 @@
/* FOR LIVE SERVER */
/*********************/
-#define USE_MAP_SOUTHERN_CROSS
+#define USE_MAP_CETUS
// #define USE_MAP_SOLUNA_NEXUS
// #define USE_MAP_RELIC_BASE
@@ -28,6 +28,11 @@
#include "../soluna_nexus/soluna_nexus.dm"
#endif
+// Cetus
+#ifdef USE_MAP_CETUS
+#include "../cetus/cetus.dm"
+#endif
+
// Relic Base
#ifdef USE_MAP_RELIC_BASE
#include "../relic_base/relicbase.dm"
diff --git a/vorestation.dme b/vorestation.dme
index 2c75aad1aa..f12e28d89f 100644
--- a/vorestation.dme
+++ b/vorestation.dme
@@ -5378,6 +5378,7 @@
#include "modular_chomp\maps\common\common_loadout.dm"
#include "modular_chomp\maps\common\common_machinery.dm"
#include "modular_chomp\maps\common\common_munitions.dm"
+#include "modular_chomp\maps\common\common_objects.dm"
#include "modular_chomp\maps\common\common_outfits.dm"
#include "modular_chomp\maps\common\common_overmap_shuttles.dm"
#include "modular_chomp\maps\common\common_presets.dm"