diff --git a/code/datums/datacore.dm b/code/datums/datacore.dm
index 48c08f9328c..b2ff9beff49 100644
--- a/code/datums/datacore.dm
+++ b/code/datums/datacore.dm
@@ -301,7 +301,7 @@ var/global/list/PDA_Manifest = list()
manifest_inject(H)
return
-/datum/datacore/proc/manifest_modify(var/name, var/assignment)
+/datum/datacore/proc/manifest_modify(var/name, var/assignment, var/rank)
ResetPDAManifest()
var/datum/data/record/foundrecord
var/real_title = assignment
@@ -315,11 +315,17 @@ var/global/list/PDA_Manifest = list()
var/list/all_jobs = get_job_datums()
for(var/datum/job/J in all_jobs)
- var/list/alttitles = get_alternate_titles(J.title)
- if(!J) continue
- if(assignment in alttitles)
- real_title = J.title
+ if(J.title == rank) //If we have a rank, just default to using that.
+ real_title = rank
break
+ else if(J.title == assignment)
+ real_title = assignment
+ break
+ else
+ var/list/alttitles = get_alternate_titles(J.title)
+ if(assignment in alttitles)
+ real_title = J.title
+ break
if(foundrecord)
foundrecord.fields["rank"] = assignment
@@ -332,7 +338,7 @@ var/global/list/PDA_Manifest = list()
var/datum/job/J = SSjob.get_job(H.mind.assigned_role)
hidden = J?.offmap_spawn
- /* Note: Due to cached_character_icon, a number of emergent properties occur due to the initialization
+ /* Note: Due to cached_character_icon, a number of emergent properties occur due to the initialization
* order of readied-up vs latejoiners. Namely, latejoiners will get a uniform in their datacore picture, but readied-up will
* not. This is due to the fact that SSticker calls data_core.manifest_inject() inside of ticker/proc/create_characters(),
* but does not equip them until ticker/proc/equip_characters(), which is called later. So, this proc is literally called before
diff --git a/code/game/machinery/computer/card.dm b/code/game/machinery/computer/card.dm
index 0f52e67b8c0..c08bcb2d82b 100644
--- a/code/game/machinery/computer/card.dm
+++ b/code/game/machinery/computer/card.dm
@@ -157,7 +157,7 @@
switch(action)
if("modify")
if(modify)
- data_core.manifest_modify(modify.registered_name, modify.assignment)
+ data_core.manifest_modify(modify.registered_name, modify.assignment, modify.rank)
modify.name = "[modify.registered_name]'s ID Card ([modify.assignment])"
if(ishuman(usr))
modify.forceMove(get_turf(src))
diff --git a/code/game/machinery/computer/timeclock_vr.dm b/code/game/machinery/computer/timeclock_vr.dm
index 8cfc711c188..80ce7a701db 100644
--- a/code/game/machinery/computer/timeclock_vr.dm
+++ b/code/game/machinery/computer/timeclock_vr.dm
@@ -177,7 +177,7 @@
card.rank = newjob.title
card.assignment = newassignment
card.name = text("[card.registered_name]'s ID Card ([card.assignment])")
- data_core.manifest_modify(card.registered_name, card.assignment)
+ data_core.manifest_modify(card.registered_name, card.assignment, card.rank)
card.last_job_switch = world.time
callHook("reassign_employee", list(card))
newjob.current_positions++
@@ -203,7 +203,7 @@
card.rank = ptojob.title
card.assignment = ptojob.title
card.name = text("[card.registered_name]'s ID Card ([card.assignment])")
- data_core.manifest_modify(card.registered_name, card.assignment)
+ data_core.manifest_modify(card.registered_name, card.assignment, card.rank)
card.last_job_switch = world.time
callHook("reassign_employee", list(card))
var/mob/living/carbon/human/H = usr
diff --git a/code/game/machinery/computer3/computers/card.dm b/code/game/machinery/computer3/computers/card.dm
index 35eb699531e..f9e43aaa7d7 100644
--- a/code/game/machinery/computer3/computers/card.dm
+++ b/code/game/machinery/computer3/computers/card.dm
@@ -312,14 +312,14 @@
writer.assignment = t1
writer.name = text("[writer.registered_name]'s ID Card ([writer.assignment])")
- data_core.manifest_modify(writer.registered_name, writer.assignment)
+ data_core.manifest_modify(writer.registered_name, writer.assignment, writer.rank)
callHook("reassign_employee", list(writer))
if("reg" in href_list)
if(auth)
writer.registered_name = href_list["reg"]
writer.name = text("[writer.registered_name]'s ID Card ([writer.assignment])")
- data_core.manifest_modify(writer.registered_name, writer.assignment)
+ data_core.manifest_modify(writer.registered_name, writer.assignment, writer.rank)
callHook("reassign_employee", list(writer))
computer.updateUsrDialog()
diff --git a/code/game/objects/items/devices/translocator_vr.dm b/code/game/objects/items/devices/translocator_vr.dm
index fc35d21fc79..2b8fac56da8 100644
--- a/code/game/objects/items/devices/translocator_vr.dm
+++ b/code/game/objects/items/devices/translocator_vr.dm
@@ -552,3 +552,7 @@ GLOBAL_LIST_BOILERPLATE(premade_tele_beacons, /obj/item/device/perfect_tele_beac
loc_network = "unkthree"
/obj/item/device/perfect_tele/frontier/unknown/four
loc_network = "unkfour"
+/obj/item/device/perfect_tele/frontier/unknown/five
+ loc_network = "unkfive"
+/obj/item/device/perfect_tele/frontier/unknown/six
+ loc_network = "unksix"
diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm
index 6fe715bb741..26e30011290 100644
--- a/code/modules/admin/verbs/randomverbs.dm
+++ b/code/modules/admin/verbs/randomverbs.dm
@@ -527,6 +527,8 @@ Traitors and the like can also be revived with the previous role mostly intact.
if(equipment)
if(charjob)
job_master.EquipRank(new_character, charjob, 1)
+ new_character.mind.assigned_role = charjob
+ new_character.mind.role_alt_title = job_master.GetPlayerAltTitle(new_character, charjob)
//equip_custom_items(new_character) //VOREStation Removal
//If desired, add records.
@@ -534,7 +536,7 @@ Traitors and the like can also be revived with the previous role mostly intact.
data_core.manifest_inject(new_character)
//A redraw for good measure
- new_character.update_icons_all()
+ new_character.regenerate_icons()
//If we're announcing their arrival
if(announce)
diff --git a/code/modules/ai/ai_holder_combat.dm b/code/modules/ai/ai_holder_combat.dm
index 075a9196d89..e2e1ecbdea0 100644
--- a/code/modules/ai/ai_holder_combat.dm
+++ b/code/modules/ai/ai_holder_combat.dm
@@ -9,7 +9,7 @@
var/violent_breakthrough = TRUE // If false, the AI is not allowed to destroy things like windows or other structures in the way. Requires above var to be true.
var/stand_ground = FALSE // If true, the AI won't try to get closer to an enemy if out of range.
-
+
// This does the actual attacking.
/datum/ai_holder/proc/engage_target()
ai_log("engage_target() : Entering.", AI_LOG_DEBUG)
@@ -293,7 +293,7 @@
// Kill common obstacle in the way like tables.
var/obj/structure/obstacle = locate(/obj/structure, problem_turf)
- if(istype(obstacle, /obj/structure/window) || istype(obstacle, /obj/structure/closet) || istype(obstacle, /obj/structure/table) || istype(obstacle, /obj/structure/grille))
+ if(istype(obstacle, /obj/structure/window) || istype(obstacle, /obj/structure/closet) || istype(obstacle, /obj/structure/table) || istype(obstacle, /obj/structure/grille) || istype(obstacle, /obj/effect/weaversilk/wall)) //VOREStation Edit: spdr
ai_log("destroy_surroundings() : Attacking generic structure.", AI_LOG_INFO)
return melee_attack(obstacle)
diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm
index f398353556b..72d53be19bd 100644
--- a/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm
+++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm
@@ -7,6 +7,29 @@
anchored = 1
density = 0
+/obj/effect/weaversilk/ex_act(severity)
+ qdel(src)
+ return
+
+/obj/effect/weaversilk/attackby(var/obj/item/weapon/W, var/mob/user)
+ user.setClickCooldown(user.get_attack_speed(W))
+
+ if(W.force)
+ visible_message("\The [src] has been [pick(W.attack_verb)] with \the [W][(user ? " by [user]." : ".")]")
+ qdel(src)
+
+/obj/effect/weaversilk/bullet_act(var/obj/item/projectile/Proj)
+ ..()
+ if(Proj.get_structure_damage())
+ qdel(src)
+
+/obj/effect/weaversilk/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume)
+ qdel(src)
+
+/obj/effect/weaversilk/attack_generic(mob/user as mob, var/damage)
+ if(damage)
+ qdel(src)
+
/obj/effect/weaversilk/attack_hand(mob/user as mob)
..()
if(user.a_intent == I_HURT)
@@ -82,11 +105,11 @@
"You hear a squishy noise!"
)
set_dir(L.dir)
- can_buckle = 1
+ can_buckle = TRUE
buckle_mob(L)
- L.Stun(1 SECOND)
+ L.Stun(1)
to_chat(L, "The sticky fibers of \the [src] ensnare, trapping you in place!")
- trap_active = 0
+ trap_active = FALSE
can_buckle = initial(can_buckle)
desc += " Actually, it looks like it's been all spent."
..()
diff --git a/code/modules/tgui/modules/ntos-only/cardmod.dm b/code/modules/tgui/modules/ntos-only/cardmod.dm
index c5aecd8808a..a05dbf0ff76 100644
--- a/code/modules/tgui/modules/ntos-only/cardmod.dm
+++ b/code/modules/tgui/modules/ntos-only/cardmod.dm
@@ -167,7 +167,7 @@
if("modify")
if(computer && computer.card_slot)
if(id_card)
- data_core.manifest_modify(id_card.registered_name, id_card.assignment)
+ data_core.manifest_modify(id_card.registered_name, id_card.assignment, id_card.rank)
computer.proc_eject_id(usr)
. = TRUE
if("terminate")
diff --git a/maps/offmap_vr/om_ships/mercship.dm b/maps/offmap_vr/om_ships/mercship.dm
index 7f056e8d6d4..e4bc8477d1c 100644
--- a/maps/offmap_vr/om_ships/mercship.dm
+++ b/maps/offmap_vr/om_ships/mercship.dm
@@ -6,7 +6,7 @@
// Map template for spawning the shuttle
/datum/map_template/om_ships/syndicatecarrier
- name = "OM Ship - Mercenary Ship (New Z)"
+ name = "OM Ship - Generic Cruiser (New Z)"
desc = "Mercenary Ship."
mappath = 'mercship.dmm'
diff --git a/maps/offmap_vr/om_ships/shelter_6.dmm b/maps/offmap_vr/om_ships/shelter_6.dmm
index 93d7e9dedfd..132d4b6c49c 100644
--- a/maps/offmap_vr/om_ships/shelter_6.dmm
+++ b/maps/offmap_vr/om_ships/shelter_6.dmm
@@ -501,6 +501,171 @@
},
/turf/simulated/floor/reinforced,
/area/shuttle/tabiranth)
+"ay" = (
+/obj/machinery/smartfridge/survival_pod,
+/obj/item/clothing/under/ert,
+/obj/item/clothing/under/ert,
+/obj/item/clothing/under/ert,
+/obj/item/clothing/under/ert,
+/obj/item/clothing/under/ert,
+/obj/item/clothing/under/ert,
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/device/perfect_tele,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/backpack/ert/commander,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
+/obj/item/weapon/gun/projectile/pistol,
+/obj/item/weapon/gun/projectile/pistol,
+/obj/item/weapon/gun/projectile/pistol,
+/obj/item/ammo_magazine/m9mm/compact,
+/obj/item/ammo_magazine/m9mm/compact,
+/obj/item/ammo_magazine/m9mm/compact,
+/obj/item/ammo_magazine/m9mm/compact,
+/obj/item/ammo_magazine/m9mm/compact,
+/obj/item/ammo_magazine/m9mm/compact,
+/obj/item/ammo_magazine/m9mm/compact/flash,
+/obj/item/ammo_magazine/m9mm/compact/flash,
+/obj/item/ammo_magazine/m9mm/compact/flash,
+/obj/item/ammo_magazine/m9mm/compact/rubber,
+/obj/item/ammo_magazine/m9mm/compact/rubber,
+/obj/item/ammo_magazine/m9mm/compact/rubber,
+/obj/item/ammo_magazine/m9mm/compact/practice,
+/obj/item/ammo_magazine/m9mm/compact/practice,
+/obj/item/ammo_magazine/m9mm/compact/practice,
+/obj/item/clothing/glasses/thermal,
+/obj/item/clothing/glasses/thermal,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/device/binoculars,
+/obj/item/device/binoculars,
+/obj/item/device/binoculars,
+/obj/item/device/binoculars,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxury,
+/obj/item/device/survivalcapsule/luxurybar,
+/obj/item/device/survivalcapsule/luxurybar,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/clothing/suit/space/void/refurb/officer,
+/obj/item/modular_computer/laptop/preset/custom_loadout/hybrid,
+/obj/item/weapon/gun/magnetic/railgun/automatic,
+/obj/item/weapon/gun/magnetic/railgun/automatic,
+/turf/simulated/floor/tiled/white,
+/area/shuttle/tabiranth)
"aA" = (
/obj/machinery/atmospherics/portables_connector,
/obj/machinery/portable_atmospherics/canister/air{
@@ -719,168 +884,6 @@
/obj/machinery/sleeper/survival_pod,
/turf/simulated/floor/tiled/white,
/area/shuttle/tabiranth)
-"aO" = (
-/obj/machinery/smartfridge/survival_pod,
-/obj/item/clothing/under/ert,
-/obj/item/clothing/under/ert,
-/obj/item/clothing/under/ert,
-/obj/item/clothing/under/ert,
-/obj/item/clothing/under/ert,
-/obj/item/clothing/under/ert,
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/obj/item/device/perfect_tele,
-/obj/item/weapon/storage/belt/utility/chief/full,
-/obj/item/weapon/storage/belt/utility/chief/full,
-/obj/item/weapon/storage/belt/utility/chief/full,
-/obj/item/weapon/storage/belt/utility/chief/full,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/backpack/ert/commander,
-/obj/item/weapon/storage/backpack/ert/engineer,
-/obj/item/weapon/storage/backpack/ert/engineer,
-/obj/item/weapon/storage/backpack/ert/medical,
-/obj/item/weapon/storage/backpack/ert/medical,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,
-/obj/item/weapon/gun/projectile/pistol,
-/obj/item/weapon/gun/projectile/pistol,
-/obj/item/weapon/gun/projectile/pistol,
-/obj/item/ammo_magazine/m9mm/compact,
-/obj/item/ammo_magazine/m9mm/compact,
-/obj/item/ammo_magazine/m9mm/compact,
-/obj/item/ammo_magazine/m9mm/compact,
-/obj/item/ammo_magazine/m9mm/compact,
-/obj/item/ammo_magazine/m9mm/compact,
-/obj/item/ammo_magazine/m9mm/compact/flash,
-/obj/item/ammo_magazine/m9mm/compact/flash,
-/obj/item/ammo_magazine/m9mm/compact/flash,
-/obj/item/ammo_magazine/m9mm/compact/rubber,
-/obj/item/ammo_magazine/m9mm/compact/rubber,
-/obj/item/ammo_magazine/m9mm/compact/rubber,
-/obj/item/ammo_magazine/m9mm/compact/practice,
-/obj/item/ammo_magazine/m9mm/compact/practice,
-/obj/item/ammo_magazine/m9mm/compact/practice,
-/obj/item/clothing/glasses/thermal,
-/obj/item/clothing/glasses/thermal,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/device/binoculars,
-/obj/item/device/binoculars,
-/obj/item/device/binoculars,
-/obj/item/device/binoculars,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
-/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
-/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
-/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
-/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
-/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxury,
-/obj/item/device/survivalcapsule/luxurybar,
-/obj/item/device/survivalcapsule/luxurybar,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/weapon/tank/emergency/oxygen/double,
-/obj/item/clothing/suit/space/void/refurb/officer,
-/turf/simulated/floor/tiled/white,
-/area/shuttle/tabiranth)
"aP" = (
/obj/machinery/telecomms/allinone,
/turf/simulated/floor/bluegrid,
@@ -1377,7 +1380,7 @@
/obj/item/device/radio/uplink,
/obj/item/device/spaceflare,
/obj/item/device/spaceflare,
-/obj/item/device/perfect_tele/frontier/unknown/four,
+/obj/item/device/perfect_tele/frontier/unknown/six,
/obj/item/device/healthanalyzer/phasic,
/obj/item/device/bluespaceradio/tether_prelinked,
/obj/item/weapon/cat_box,
@@ -1871,7 +1874,7 @@ av
aA
aF
ad
-aO
+ay
aC
bb
ac
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index 7a06ab20d5a..6ba2b3f2f9e 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -102,6 +102,10 @@
/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
+"aq" = (
+/obj/machinery/telecomms/relay/preset/tether,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
"ax" = (
/obj/structure/shuttle/engine/propulsion{
dir = 4
@@ -298,10 +302,6 @@
},
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/hallways_aft)
-"cL" = (
-/obj/machinery/telecomms/allinone/ert,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/atmos)
"cO" = (
/obj/machinery/computer/operating,
/turf/simulated/floor/tiled/white,
@@ -734,7 +734,7 @@
/obj/mecha/combat/gygax/serenity,
/obj/effect/floor_decal/industrial/outline,
/obj/machinery/button/remote/blast_door{
- description_fluff = "\(OOC) DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
+ description_fluff = "\\(OOC) DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
dir = 4;
id = "NRV_MECHS";
name = "MECH BAY CONTROL";
@@ -1168,10 +1168,6 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/mech_bay)
-"kd" = (
-/obj/item/device/multitool/tether_buffered,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/atmos)
"kf" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/gun/projectile/automatic/pdw,
@@ -5402,7 +5398,7 @@
},
/obj/machinery/atmospherics/unary/vent_pump/on,
/obj/machinery/button/remote/blast_door{
- description_fluff = "\(OOC) DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
+ description_fluff = "\\(OOC) DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
dir = 1;
id = "NRV_DELTA";
name = "DELTA ACCESS CONTROL";
@@ -6813,10 +6809,6 @@
/obj/structure/curtain/open/bed,
/turf/simulated/floor/wood,
/area/ship/ert/commander)
-"Wd" = (
-/obj/machinery/telecomms/relay,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/atmos)
"Wj" = (
/obj/machinery/light/no_nightshift{
dir = 8
@@ -13444,8 +13436,8 @@ pV
kP
kP
rS
-Wd
-kd
+aq
+gA
CT
qR
pV
@@ -14013,7 +14005,7 @@ ls
ls
ls
Lm
-cL
+gA
DQ
Ip
pV
diff --git a/maps/expedition_vr/space/_guttersite.dm b/maps/submaps/admin_use_vr/guttersite.dm
similarity index 81%
rename from maps/expedition_vr/space/_guttersite.dm
rename to maps/submaps/admin_use_vr/guttersite.dm
index 655c067f265..23c54af9801 100644
--- a/maps/expedition_vr/space/_guttersite.dm
+++ b/maps/submaps/admin_use_vr/guttersite.dm
@@ -49,40 +49,40 @@
//TFF 26/12/19 - Sub-areas for the APCs.
/area/tether_away/guttersite/engines
- name = "POI - Gutter Engineering"
+ name = "Gutter - Gutter Engineering"
/area/tether_away/guttersite/security
- name = "POI - Gutter Security and Holding"
+ name = "Gutter - Gutter Security and Holding"
/area/tether_away/guttersite/docking
- name = "POI - Gutter Docks"
+ name = "Gutter - Gutter Docks"
/area/tether_away/guttersite/office
- name = "POI - Gutter Offices"
+ name = "Gutter - Gutter Offices"
/area/tether_away/guttersite/atmos
- name = "POI - Gutter Atmospherics"
+ name = "Gutter - Gutter Atmospherics"
/area/tether_away/guttersite/maint
- name = "POI - Gutter Maintenance"
+ name = "Gutter - Gutter Maintenance"
/area/tether_away/guttersite/vault
- name = "POI - Gutter Vault"
+ name = "Gutter - Gutter Vault"
/area/tether_away/guttersite/bridge
- name = "POI - Gutter Bridge"
+ name = "Gutter - Gutter Bridge"
/area/tether_away/guttersite/walkway
- name = "POI - Gutter Walkway"
+ name = "Gutter - Gutter Walkway"
/area/tether_away/guttersite/medbay
- name = "POI - Gutter Medbay"
+ name = "Gutter - Gutter Medbay"
/area/tether_away/guttersite/commons
- name = "POI - Gutter Commons"
+ name = "Gutter - Gutter Commons"
/area/tether_away/guttersite/storage
- name = "POI - Gutter Tool Storage"
+ name = "Gutter - Gutter Tool Storage"
/area/tether_away/guttersite/teleporter
- name = "POI - Gutter Teleporter"
+ name = "Gutter - Gutter Teleporter"
diff --git a/maps/expedition_vr/space/guttersite.dmm b/maps/submaps/admin_use_vr/guttersite.dmm
similarity index 100%
rename from maps/expedition_vr/space/guttersite.dmm
rename to maps/submaps/admin_use_vr/guttersite.dmm
diff --git a/maps/submaps/depreciated_vr/_depreciated.dm b/maps/submaps/depreciated_vr/_depreciated.dm
new file mode 100644
index 00000000000..facff5db09a
--- /dev/null
+++ b/maps/submaps/depreciated_vr/_depreciated.dm
@@ -0,0 +1,9 @@
+/datum/map_template/admin_use/old_mercenary
+ name = "Special Area - Old Merc Base"
+ desc = "So much red!"
+ mappath = 'maps/submaps/admin_use_vr/mercbase.dmm'
+
+/datum/map_template/admin_use/ert
+ name = "Special Area - ERT"
+ desc = "ERT Base."
+ mappath = 'maps/submaps/admin_use_vr/ert_base.dmm'
diff --git a/maps/submaps/admin_use_vr/ert_base.dmm b/maps/submaps/depreciated_vr/ert_base.dmm
similarity index 100%
rename from maps/submaps/admin_use_vr/ert_base.dmm
rename to maps/submaps/depreciated_vr/ert_base.dmm
diff --git a/maps/submaps/admin_use_vr/mercbase.dmm b/maps/submaps/depreciated_vr/mercbase.dmm
similarity index 100%
rename from maps/submaps/admin_use_vr/mercbase.dmm
rename to maps/submaps/depreciated_vr/mercbase.dmm
diff --git a/maps/tether/submaps/_tether_submaps.dm b/maps/tether/submaps/_tether_submaps.dm
index 639d56f1214..a7b7fac5f9e 100644
--- a/maps/tether/submaps/_tether_submaps.dm
+++ b/maps/tether/submaps/_tether_submaps.dm
@@ -57,6 +57,7 @@
#include "../../submaps/admin_use_vr/ert.dm"
#include "../../submaps/admin_use_vr/mercship.dm"
+#include "../../submaps/admin_use_vr/guttersite.dm"
/datum/map_template/admin_use/ert
name = "Special Area - ERT"
@@ -78,11 +79,6 @@
desc = "Prepare tae be boarded, arr!"
mappath = 'maps/submaps/admin_use_vr/kk_mercship.dmm'
-/datum/map_template/admin_use/old_mercenary
- name = "Special Area - Old Merc Base"
- desc = "So much red!"
- mappath = 'maps/submaps/admin_use_vr/mercbase.dmm'
-
/datum/map_template/admin_use/skipjack
name = "Special Area - Skipjack Base"
desc = "Stinky!"
@@ -103,6 +99,11 @@
desc = "Sneaky"
mappath = 'maps/submaps/admin_use_vr/dojo.dmm'
+/datum/map_template/admin_use/guttersite
+ name = "Special Area - Guttersite"
+ desc = "A space for bad guys to hang out"
+ mappath = 'maps/submaps/admin_use_vr/guttersite.dmm'
+
//////////////////////////////////////////////////////////////////////////////
//Rogue Mines Stuff
@@ -130,30 +131,6 @@
flags = MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER
z = Z_LEVEL_ROGUEMINE_2
-/datum/map_template/tether_lateload/tether_roguemines3
- name = "Asteroid Belt 3"
- desc = "Mining, but rogue. Zone 3"
- mappath = 'maps/submaps/rogue_mines_vr/rogue_mine3.dmm'
-
- associated_map_datum = /datum/map_z_level/tether_lateload/roguemines3
-
-/datum/map_z_level/tether_lateload/roguemines3
- name = "Belt 3"
- flags = MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER
- z = Z_LEVEL_ROGUEMINE_3
-
-/datum/map_template/tether_lateload/tether_roguemines4
- name = "Asteroid Belt 4"
- desc = "Mining, but rogue. Zone 4"
- mappath = 'maps/submaps/rogue_mines_vr/rogue_mine4.dmm'
-
- associated_map_datum = /datum/map_z_level/tether_lateload/roguemines4
-
-/datum/map_z_level/tether_lateload/roguemines4
- name = "Belt 4"
- flags = MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER
- z = Z_LEVEL_ROGUEMINE_4
-
//////////////////////////////////////////////////////////////////////////////
/// Away Missions
#if AWAY_MISSION_TEST
@@ -164,7 +141,6 @@
#include "../../expedition_vr/aerostat/surface.dmm"
#include "../../expedition_vr/space/debrisfield.dmm"
#include "../../expedition_vr/space/fueldepot.dmm"
-#include "../../expedition_vr/space/guttersite.dmm"
#endif
#include "../../expedition_vr/beach/_beach.dm"
@@ -248,7 +224,6 @@
#include "../../expedition_vr/space/_fueldepot.dm"
#include "../../submaps/pois_vr/debris_field/_templates.dm"
#include "../../submaps/pois_vr/debris_field/debrisfield_things.dm"
-#include "../../expedition_vr/space/_guttersite.dm"
/datum/map_template/tether_lateload/away_debrisfield
name = "Debris Field - Z1 Space"
desc = "The Virgo 3 Debris Field away mission."
@@ -274,17 +249,6 @@
name = "Away Mission - Fuel Depot"
z = Z_LEVEL_FUELDEPOT
-/datum/map_template/tether_lateload/away_guttersite
- name = "Gutter Site - Z1 Space"
- desc = "The Virgo Erigone Space Away Site."
- mappath = 'maps/expedition_vr/space/guttersite.dmm'
- associated_map_datum = /datum/map_z_level/tether_lateload/away_guttersite
-
-/datum/map_z_level/tether_lateload/away_guttersite
- name = "Away Mission - Gutter Site"
- z = Z_LEVEL_GUTTERSITE
-
-
//////////////////////////////////////////////////////////////////////////////////////
// Gateway submaps go here
diff --git a/maps/tether/submaps/tether_misc.dmm b/maps/tether/submaps/tether_misc.dmm
index f2c0e029e96..0524f4097e7 100644
--- a/maps/tether/submaps/tether_misc.dmm
+++ b/maps/tether/submaps/tether_misc.dmm
@@ -1,25126 +1,25392 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"aa" = (
-/obj/machinery/vending/coffee,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"ab" = (
-/obj/structure/window/reinforced/holowindow{
- dir = 8
- },
-/obj/structure/flora/pottedplant{
- icon_state = "plant-10"
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_courtroom)
-"ac" = (
-/obj/structure/window/reinforced/holowindow{
- dir = 8
- },
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"ad" = (
-/obj/machinery/door/window/holowindoor{
- dir = 8
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_courtroom)
-"ae" = (
-/turf/unsimulated/mineral/virgo3b,
-/area/space)
-"ag" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 6
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"ah" = (
-/obj/machinery/door/window/holowindoor{
- dir = 1;
- name = "Jury Box"
- },
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 9
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"aj" = (
-/obj/structure/sign/warning{
- name = "\improper STAND AWAY FROM TRACK EDGE"
- },
-/turf/unsimulated/wall,
-/area/centcom/simulated/terminal)
-"ak" = (
-/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)
-"al" = (
-/obj/structure/window/reinforced/holowindow{
- dir = 8
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_courtroom)
-"am" = (
-/obj/machinery/door/window/holowindoor{
- dir = 8;
- name = "Red Team"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_emptycourt)
-"an" = (
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/source_picnicarea)
-"ao" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 9
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"ap" = (
-/turf/space,
-/area/space)
-"aq" = (
-/obj/effect/step_trigger/teleporter/random,
-/turf/space,
-/area/space)
-"ar" = (
-/turf/unsimulated/wall,
-/area/space)
-"as" = (
-/obj/structure/window/reinforced,
-/turf/unsimulated/wall,
-/area/space)
-"at" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 5
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"au" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet/corners{
- dir = 5
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"av" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"aw" = (
-/obj/structure/table/woodentable/holotable,
-/obj/structure/window/reinforced/holowindow{
- dir = 4
- },
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"ax" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood/corner{
- dir = 4
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"ay" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"az" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"aA" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 10
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"aB" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood/corner{
- dir = 8
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"aC" = (
-/obj/machinery/door/window/holowindoor{
- base_state = "right";
- dir = 8;
- icon_state = "right"
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_courtroom)
-"aD" = (
-/obj/machinery/door/window/holowindoor{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Green Team"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_emptycourt)
-"aE" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 10
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"aF" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/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)
-"aG" = (
-/obj/structure/window/reinforced/holowindow{
- dir = 8
- },
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"aH" = (
-/obj/structure/window/reinforced/holowindow{
- dir = 8
- },
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"aI" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/unsimulated/wall,
-/area/space)
-"aJ" = (
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/source_desert)
-"aK" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/source_desert)
-"aL" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/unsimulated/wall,
-/area/space)
-"aM" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"aN" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"aO" = (
-/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)
-"aP" = (
-/obj/effect/landmark/costume,
-/obj/structure/table/rack/holorack,
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_theatre)
-"aQ" = (
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_courtroom)
-"aR" = (
-/obj/machinery/door/window/holowindoor{
- dir = 8;
- name = "Red Team"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_basketball)
-"aS" = (
-/obj/structure/table/woodentable/holotable,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"aT" = (
-/turf/simulated/floor/holofloor/reinforced,
-/area/holodeck/source_wildlife)
-"aU" = (
-/turf/simulated/floor/holofloor/reinforced,
-/area/holodeck/source_plating)
-"aV" = (
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_emptycourt)
-"aW" = (
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"aX" = (
-/obj/machinery/door/window/holowindoor{
- dir = 8;
- name = "Red Team"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_thunderdomecourt)
-"aY" = (
-/obj/effect/floor_decal/corner/red/full{
- dir = 8
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"aZ" = (
-/obj/effect/floor_decal/corner/red{
- dir = 5
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"ba" = (
-/obj/effect/floor_decal/corner/red/full{
- dir = 1
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"bb" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/unsimulated/wall,
-/area/space)
-"bc" = (
-/turf/simulated/shuttle/wall,
-/area/shuttle/supply)
-"bd" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/source_desert)
-"be" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"bf" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"bg" = (
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_theatre)
-"bh" = (
-/obj/machinery/door/window/holowindoor{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Green Team"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_basketball)
-"bi" = (
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bj" = (
-/obj/effect/landmark{
- name = "Holocarp Spawn"
- },
-/turf/simulated/floor/holofloor/reinforced,
-/area/holodeck/source_wildlife)
-"bk" = (
-/obj/effect/floor_decal/corner/red{
- dir = 9
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"bl" = (
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"bm" = (
-/obj/effect/floor_decal/corner/red{
- dir = 6
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"bn" = (
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"bo" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood/corner,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"bp" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/effect/floor_decal/spline/fancy/wood,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"bq" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"br" = (
-/obj/machinery/door/window/holowindoor{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Green Team"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_thunderdomecourt)
-"bs" = (
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bt" = (
-/obj/structure/bed/chair/holochair,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bu" = (
-/obj/structure/fitness/boxing_ropes{
- dir = 1
- },
-/obj/structure/fitness/boxing_turnbuckle{
- dir = 8;
- layer = 3.4
- },
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bv" = (
-/obj/structure/window/reinforced/holowindow{
- dir = 1
- },
-/obj/structure/table/woodentable/holotable,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bw" = (
-/obj/structure/fitness/boxing_ropes{
- dir = 1
- },
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bx" = (
-/obj/structure/fitness/boxing_ropes{
- dir = 1
- },
-/obj/structure/fitness/boxing_turnbuckle{
- dir = 4;
- layer = 3.4
- },
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"by" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"bz" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"bA" = (
-/obj/structure/fitness/boxing_ropes{
- dir = 8
- },
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bB" = (
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/source_picnicarea)
-"bC" = (
-/obj/structure/fitness/boxing_ropes{
- dir = 4
- },
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bD" = (
-/obj/structure/fitness/boxing_turnbuckle{
- dir = 8
- },
-/obj/structure/fitness/boxing_ropes_bottom,
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bE" = (
-/obj/structure/fitness/boxing_ropes_bottom,
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bF" = (
-/obj/structure/fitness/boxing_turnbuckle{
- dir = 4
- },
-/obj/structure/fitness/boxing_ropes_bottom,
-/turf/simulated/fitness,
-/area/holodeck/source_boxingcourt)
-"bG" = (
-/obj/effect/floor_decal/spline/plain{
- dir = 1
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_theatre)
-"bH" = (
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/obj/effect/floor_decal/carpet{
- dir = 9
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"bI" = (
-/obj/structure/window/reinforced/holowindow,
-/obj/machinery/door/window/holowindoor{
- dir = 1;
- name = "Court Reporter's Box"
- },
-/obj/structure/bed/chair/holochair,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bJ" = (
-/obj/structure/table/woodentable/holotable,
-/obj/structure/window/reinforced/holowindow,
-/obj/structure/window/reinforced/holowindow{
- dir = 8
- },
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bK" = (
-/obj/structure/table/woodentable/holotable,
-/obj/structure/window/reinforced/holowindow,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bL" = (
-/obj/structure/table/woodentable/holotable,
-/obj/structure/window/reinforced/holowindow,
-/obj/structure/window/reinforced/holowindow{
- dir = 4
- },
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bM" = (
-/obj/structure/window/reinforced/holowindow,
-/obj/machinery/door/window/holowindoor{
- base_state = "right";
- dir = 1;
- icon_state = "right";
- name = "Witness Box"
- },
-/obj/structure/bed/chair/holochair,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_courtroom)
-"bN" = (
-/obj/effect/landmark/ai_multicam_room,
-/turf/unsimulated/ai_visible,
-/area/ai_multicam_room)
-"bO" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_l"
- },
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry{
- dir = 1
- },
-/area/shuttle/supply)
-"bP" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry{
- dir = 1
- },
-/area/shuttle/supply)
-"bQ" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "supply_shuttle_hatch";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/supply)
-"bR" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"bS" = (
-/obj/structure/table/woodentable/holotable,
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/source_picnicarea)
-"bT" = (
-/obj/structure/shuttle/engine/propulsion,
-/obj/effect/shuttle_landmark{
- base_area = /area/space;
- base_turf = /turf/space;
- landmark_tag = "supply_cc";
- name = "Centcom Supply Depot"
- },
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry{
- dir = 1
- },
-/area/shuttle/supply)
-"bU" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 4
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"bV" = (
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_theatre)
-"bW" = (
-/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_theatre)
-"bX" = (
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"bY" = (
-/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_theatre)
-"bZ" = (
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"ca" = (
-/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_courtroom)
-"cb" = (
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cc" = (
-/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_courtroom)
-"cd" = (
-/turf/unsimulated/wall,
-/area/ai_multicam_room)
-"ce" = (
-/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b,
-/turf/space/transit/south,
-/area/space)
-"cf" = (
-/turf/space/transit/south,
-/area/space)
-"cg" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_leftnostop"
- },
-/turf/space/transit/south,
-/area/space)
-"ch" = (
-/obj/effect/shuttle_landmark/transit{
- base_area = /area/space;
- base_turf = /turf/space/transit/east;
- landmark_tag = "belter_transit";
- name = "Belter Transit"
- },
-/turf/space/transit/south,
-/area/space)
-"ci" = (
-/turf/unsimulated/ai_visible,
-/area/ai_multicam_room)
-"cj" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/space)
-"ck" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_r"
- },
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry{
- dir = 1
- },
-/area/shuttle/supply)
-"cl" = (
-/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,
-/turf/space/transit/north,
-/area/space)
-"cm" = (
-/obj/item/toy/chess/pawn_white,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"cq" = (
-/obj/structure/bed/chair/shuttle{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"cs" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "supply_shuttle_hatch";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"ct" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"cu" = (
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"cv" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"cw" = (
-/obj/structure/table/woodentable/holotable,
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cx" = (
-/obj/structure/table/woodentable/holotable,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cy" = (
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cz" = (
-/obj/structure/table/woodentable/holotable,
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cA" = (
-/obj/effect/floor_decal/corner/green{
- dir = 9
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"cB" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"cO" = (
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- frequency = 1380;
- id_tag = "supply_shuttle";
- pixel_x = -25;
- req_one_access = list(13,31);
- tag_door = "supply_shuttle_hatch"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"cP" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"cQ" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood{
- dir = 1
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"cS" = (
-/obj/structure/bed/chair/holochair{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cT" = (
-/obj/structure/bed/chair/holochair{
- dir = 1
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"cU" = (
-/obj/structure/bed/chair/holochair{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"da" = (
-/obj/structure/flora/ausbushes/brflowers,
-/obj/effect/floor_decal/spline/fancy/wood/corner{
- dir = 1
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/source_picnicarea)
-"dd" = (
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"de" = (
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"dg" = (
-/turf/unsimulated/wall{
- icon = 'icons/turf/transit_vr.dmi'
- },
-/area/space)
-"dh" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "supply_shuttle_hatch";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/supply)
-"di" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/turf/simulated/shuttle/floor,
-/area/shuttle/supply)
-"dj" = (
-/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_theatre)
-"dk" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"dl" = (
-/obj/structure/holostool,
-/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_theatre)
-"dm" = (
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 6
- },
-/obj/effect/floor_decal/carpet{
- dir = 10
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"dq" = (
-/obj/structure/flora/pottedplant{
- icon_state = "plant-06"
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_theatre)
-"dr" = (
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/obj/effect/floor_decal/carpet{
- dir = 6
- },
-/obj/effect/floor_decal/carpet{
- dir = 10
- },
-/obj/effect/floor_decal/carpet{
- dir = 9
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_theatre)
-"ds" = (
-/obj/structure/bed/chair/holochair{
- dir = 1
- },
-/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)
-"dt" = (
-/obj/structure/bed/chair/holochair{
- dir = 1
- },
-/obj/effect/floor_decal/carpet,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_courtroom)
-"du" = (
-/obj/structure/bed/chair/holochair{
- dir = 1
- },
-/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)
-"dv" = (
-/obj/effect/floor_decal/corner/green/full,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"dw" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"dx" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 4
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_emptycourt)
-"dA" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/unsimulated/wall,
-/area/space)
-"dB" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced,
-/turf/unsimulated/wall,
-/area/space)
-"dD" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "escape_shuttle_hatch_station";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"dE" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/airless,
-/area/shuttle/supply)
-"dF" = (
-/turf/simulated/floor/holofloor/space,
-/area/holodeck/source_space)
-"dG" = (
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/source_snowfield)
-"dH" = (
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_meetinghall)
-"dI" = (
-/obj/structure/flora/pottedplant{
- icon_state = "plant-06"
- },
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_meetinghall)
-"dJ" = (
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_basketball)
-"dK" = (
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"dM" = (
-/obj/effect/floor_decal/corner/red/full{
- dir = 8
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"dN" = (
-/obj/effect/floor_decal/corner/red{
- dir = 5
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"dO" = (
-/obj/structure/holohoop,
-/obj/effect/floor_decal/corner/red{
- dir = 5
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"dP" = (
-/obj/effect/floor_decal/corner/red/full{
- dir = 1
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"dQ" = (
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/source_beach)
-"dR" = (
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_thunderdomecourt)
-"dS" = (
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"dU" = (
-/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)
-"dV" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/head/helmet/thunderdome,
-/obj/item/clothing/suit/armor/tdome/red,
-/obj/item/clothing/under/color/red,
-/obj/item/weapon/holo/esword/red,
-/obj/effect/floor_decal/corner/red{
- dir = 5
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"dW" = (
-/obj/structure/table/holotable,
-/obj/effect/floor_decal/corner/red/full{
- dir = 1
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"dX" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/gloves/boxing/hologlove,
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_boxingcourt)
-"dY" = (
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_boxingcourt)
-"dZ" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/terminal)
-"ec" = (
-/obj/effect/landmark{
- name = "Holocarp Spawn Random"
- },
-/turf/simulated/floor/holofloor/space,
-/area/holodeck/source_space)
-"ed" = (
-/obj/structure/flora/grass/both,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/source_snowfield)
-"ee" = (
-/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)
-"ef" = (
-/obj/effect/floor_decal/carpet,
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"eg" = (
-/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)
-"eh" = (
-/obj/effect/floor_decal/corner/red{
- dir = 9
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"ei" = (
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"ej" = (
-/obj/effect/floor_decal/corner/red{
- dir = 6
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"ek" = (
-/obj/effect/overlay/palmtree_r,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/source_beach)
-"el" = (
-/obj/effect/floor_decal/corner/red{
- dir = 9
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"em" = (
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"en" = (
-/obj/effect/floor_decal/corner/red{
- dir = 6
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"eo" = (
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_boxingcourt)
-"ep" = (
-/obj/structure/flora/tree/pine,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/source_snowfield)
-"eq" = (
-/obj/structure/table/woodentable/holotable,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_meetinghall)
-"es" = (
-/obj/item/clothing/glasses/sunglasses,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/source_beach)
-"et" = (
-/obj/effect/overlay/palmtree_l,
-/obj/effect/overlay/coconut,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/source_beach)
-"eD" = (
-/obj/effect/floor_decal/sign/small_4,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"eJ" = (
-/obj/structure/flora/tree/dead,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/source_snowfield)
-"eK" = (
-/turf/simulated/floor/holofloor/lino,
-/area/holodeck/source_meetinghall)
-"eL" = (
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/source_meetinghall)
-"eM" = (
-/obj/item/weapon/beach_ball,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/source_beach)
-"eS" = (
-/obj/effect/floor_decal/industrial/danger,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"eT" = (
-/obj/structure/flora/grass/green,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/source_snowfield)
-"eU" = (
-/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)
-"eV" = (
-/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)
-"eW" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"eX" = (
-/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)
-"eY" = (
-/obj/effect/floor_decal/corner/red/full,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"eZ" = (
-/obj/effect/floor_decal/corner/red{
- dir = 10
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fa" = (
-/obj/item/weapon/beach_ball/holoball,
-/obj/effect/floor_decal/corner/red{
- dir = 10
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fb" = (
-/obj/effect/floor_decal/corner/red/full{
- dir = 4
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fc" = (
-/obj/item/weapon/inflatable_duck,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/source_beach)
-"fd" = (
-/obj/structure/window/reinforced/holowindow/disappearing,
-/obj/effect/floor_decal/corner/red/full,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fe" = (
-/obj/structure/window/reinforced/holowindow/disappearing,
-/obj/effect/floor_decal/corner/red{
- dir = 10
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"ff" = (
-/obj/structure/window/reinforced/holowindow/disappearing,
-/obj/effect/floor_decal/corner/red/full{
- dir = 4
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fn" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"fo" = (
-/obj/structure/holostool,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"fp" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"fq" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 8
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fr" = (
-/obj/effect/floor_decal/corner/green{
- dir = 5
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fs" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 1
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"ft" = (
-/obj/structure/window/reinforced/holowindow/disappearing{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/full{
- dir = 8
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fu" = (
-/obj/structure/window/reinforced/holowindow/disappearing{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green{
- dir = 5
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fv" = (
-/obj/structure/window/reinforced/holowindow/disappearing{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green/full{
- dir = 1
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fz" = (
-/obj/effect/floor_decal/corner/green{
- dir = 9
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fA" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fB" = (
-/obj/effect/floor_decal/corner/green{
- dir = 9
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fC" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fG" = (
-/obj/structure/flora/grass/brown,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/source_snowfield)
-"fH" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet{
- dir = 8
- },
-/area/holodeck/source_meetinghall)
-"fJ" = (
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fK" = (
-/turf/unsimulated/beach/sand{
- icon_state = "beach"
- },
-/area/holodeck/source_beach)
-"fO" = (
-/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)
-"fP" = (
-/obj/structure/holostool,
-/obj/effect/floor_decal/carpet,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/source_meetinghall)
-"fQ" = (
-/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)
-"fR" = (
-/turf/simulated/floor/holofloor/beach/water,
-/area/holodeck/source_beach)
-"fS" = (
-/obj/effect/floor_decal/corner/green/full,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fT" = (
-/obj/structure/holohoop{
- dir = 1
- },
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fU" = (
-/obj/effect/floor_decal/corner/green/full{
- dir = 4
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_basketball)
-"fV" = (
-/obj/structure/table/holotable,
-/obj/effect/floor_decal/corner/green/full,
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fW" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/head/helmet/thunderdome,
-/obj/item/clothing/suit/armor/tdome/green,
-/obj/item/clothing/under/color/green,
-/obj/item/weapon/holo/esword/green,
-/obj/effect/floor_decal/corner/green{
- dir = 10
- },
-/turf/simulated/floor/holofloor/tiled,
-/area/holodeck/source_thunderdomecourt)
-"fX" = (
-/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)
-"fY" = (
-/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)
-"fZ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/unsimulated/wall,
-/area/space)
-"ga" = (
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/holodorm/source_basic)
-"gb" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/holodorm/source_basic)
-"gc" = (
-/obj/structure/table/woodentable/holotable,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/holodorm/source_basic)
-"gd" = (
-/obj/structure/bed/chair/holochair{
- dir = 8
- },
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/holodorm/source_basic)
-"ge" = (
-/obj/effect/overlay/palmtree_r,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/holodorm/source_beach)
-"gf" = (
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/holodorm/source_beach)
-"gg" = (
-/obj/effect/overlay/coconut,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/holodorm/source_beach)
-"gh" = (
-/obj/item/clothing/glasses/sunglasses,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/holodorm/source_beach)
-"gi" = (
-/obj/effect/overlay/palmtree_l,
-/turf/simulated/floor/holofloor/beach/sand,
-/area/holodeck/holodorm/source_beach)
-"gj" = (
-/obj/structure/flora/grass/brown,
-/obj/structure/flora/tree/dead,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/holodorm/source_snow)
-"gk" = (
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/holodorm/source_snow)
-"gl" = (
-/turf/unsimulated/beach/sand{
- icon_state = "beach"
- },
-/area/holodeck/holodorm/source_beach)
-"gm" = (
-/obj/effect/landmark{
- name = "Wolfgirl Spawn"
- },
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/holodorm/source_snow)
-"gn" = (
-/obj/structure/flora/grass/brown,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/holodorm/source_snow)
-"go" = (
-/obj/structure/flora/grass/green,
-/obj/structure/flora/tree/pine,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/holodorm/source_snow)
-"gq" = (
-/obj/structure/bed/holobed,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/holodorm/source_basic)
-"gr" = (
-/turf/simulated/floor/holofloor/beach/water,
-/area/holodeck/holodorm/source_beach)
-"gs" = (
-/obj/structure/flora/grass/green,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/holodorm/source_snow)
-"gt" = (
-/obj/structure/flora/grass/both,
-/turf/simulated/floor/holofloor/snow,
-/area/holodeck/holodorm/source_snow)
-"gE" = (
-/obj/structure/closet/hydrant{
- pixel_y = 32
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"gN" = (
-/obj/structure/flora/ausbushes/fullgrass,
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/holodorm/source_desert)
-"gO" = (
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/holodorm/source_desert)
-"gP" = (
-/obj/structure/flora/ausbushes/sparsegrass,
-/turf/simulated/floor/holofloor/desert,
-/area/holodeck/holodorm/source_desert)
-"gQ" = (
-/obj/structure/flora/ausbushes/brflowers,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/holodorm/source_garden)
-"gR" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/holodorm/source_garden)
-"gS" = (
-/turf/simulated/floor/holofloor/reinforced,
-/area/holodeck/holodorm/source_off)
-"gU" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/industrial/danger,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"hg" = (
-/obj/structure/flora/ausbushes/ywflowers,
-/obj/effect/landmark{
- name = "Catgirl Spawn"
- },
-/turf/simulated/floor/holofloor/grass,
-/area/holodeck/holodorm/source_garden)
-"hx" = (
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/holodorm/source_seating)
-"hy" = (
-/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/holodorm/source_seating)
-"hz" = (
-/obj/structure/bed/chair/holochair,
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hA" = (
-/obj/effect/floor_decal/carpet{
- dir = 1
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 5
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hB" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/gloves/boxing/hologlove,
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/holodorm/source_boxing)
-"hC" = (
-/obj/effect/floor_decal/corner/red{
- dir = 9
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/holodorm/source_boxing)
-"hD" = (
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/holodorm/source_boxing)
-"hE" = (
-/obj/effect/floor_decal/corner/green{
- dir = 6
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/holodorm/source_boxing)
-"hF" = (
-/turf/simulated/floor/holofloor/space,
-/area/holodeck/holodorm/source_space)
-"hJ" = (
-/obj/structure/bed/chair/holochair{
- dir = 4
- },
-/obj/effect/floor_decal/carpet{
- dir = 8
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hK" = (
-/obj/structure/table/woodentable/holotable,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hL" = (
-/obj/structure/bed/chair/holochair{
- dir = 8
- },
-/obj/effect/floor_decal/carpet{
- dir = 4
- },
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hO" = (
-/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/holodorm/source_seating)
-"hP" = (
-/obj/structure/bed/chair/holochair{
- dir = 1
- },
-/obj/effect/floor_decal/carpet,
-/turf/simulated/floor/holofloor/carpet,
-/area/holodeck/holodorm/source_seating)
-"hQ" = (
-/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/holodorm/source_seating)
-"hR" = (
-/obj/structure/table/holotable,
-/obj/item/clothing/gloves/boxing/hologlove{
- icon_state = "boxinggreen";
- item_state = "boxinggreen"
- },
-/turf/simulated/floor/holofloor/tiled/dark,
-/area/holodeck/holodorm/source_boxing)
-"ig" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/obj/effect/transit/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"ih" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"ii" = (
-/obj/structure/bed/chair/shuttle{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"in" = (
-/obj/effect/step_trigger/lost_in_space/tram,
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"ix" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"iO" = (
-/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)
-"iU" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"jf" = (
-/turf/space/transit/north,
-/area/space)
-"jr" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"jL" = (
-/obj/effect/step_trigger/lost_in_space/tram,
-/turf/simulated/floor/maglev{
- icon = 'icons/turf/transit_vr.dmi'
- },
-/area/space)
-"jQ" = (
-/obj/effect/shuttle_landmark/transit{
- base_area = /area/space;
- base_turf = /turf/space/transit/east;
- landmark_tag = "specops_transit";
- name = "Specops Transit"
- },
-/turf/space/transit/west,
-/area/space)
-"kh" = (
-/obj/machinery/telecomms/relay/preset/centcom/tether,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"kn" = (
-/obj/structure/fake_stairs/north/bottom{
- _stair_tag = "stairtest"
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"kr" = (
-/obj/machinery/telecomms/server/presets/centcomm,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"kw" = (
-/obj/effect/floor_decal/sign/small_5,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"lf" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"li" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/grille,
-/turf/simulated/floor/plating/eris/under,
-/area/shuttle/escape)
-"lE" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"mb" = (
-/obj/effect/step_trigger/lost_in_space/tram,
-/obj/effect/floor_decal/transit/orange{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"mF" = (
-/obj/effect/shuttle_landmark{
- base_area = null;
- base_turf = null;
- docking_controller = null;
- landmark_tag = "escape_transit";
- name = "Escape Transit"
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"nj" = (
-/obj/item/toy/chess/rook_white,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"nn" = (
-/obj/machinery/telecomms/allinone/antag{
- intercept = 1
- },
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"nB" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"nC" = (
-/obj/structure/table/standard,
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = 32
- },
-/obj/item/toy/nanotrasenballoon,
-/obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"nV" = (
-/obj/item/toy/chess/rook_black,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"nW" = (
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"oI" = (
-/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b,
-/turf/space/transit/east,
-/area/space)
-"oT" = (
-/obj/item/toy/chess/pawn_black,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"pb" = (
-/obj/machinery/telecomms/processor/preset_cent,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"pf" = (
-/obj/effect/floor_decal/sign/small_8,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"pk" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"pv" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "escape_shuttle_hatch_offsite";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"pF" = (
-/obj/effect/shuttle_landmark/transit{
- base_area = /area/space;
- base_turf = /turf/space/transit/east;
- landmark_tag = "escapepod1_transit";
- name = "Escapepod 1 Transit"
- },
-/turf/space/transit/east,
-/area/space)
-"pT" = (
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"pX" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 4
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/centcom/simulated/terminal)
-"qc" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"qn" = (
-/turf/space/transit/east,
-/area/space)
-"qv" = (
-/obj/effect/floor_decal/sign/small_h,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"qz" = (
-/turf/space,
-/turf/space/internal_edge/bottomright,
-/area/space)
-"qV" = (
-/obj/effect/floor_decal/sign/small_6,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"qY" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"rh" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"ru" = (
-/obj/item/toy/chess/pawn_black,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"rE" = (
-/obj/machinery/telecomms/bus/preset_cent,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"sb" = (
-/obj/item/toy/chess/knight_white,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"sl" = (
-/turf/space/internal_edge/top,
-/area/space)
-"sp" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"sx" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/centcom/simulated/terminal)
-"sF" = (
-/obj/effect/overmap/bluespace_rift,
-/turf/unsimulated/map,
-/area/overmap)
-"sN" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 8
- },
-/obj/effect/transit/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"sT" = (
-/obj/structure/closet/hydrant{
- pixel_y = -32
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"ti" = (
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"tp" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"tu" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 4
- },
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"tC" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/space)
-"tD" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdown";
- stopper = 0;
- tiles = 0
- },
-/turf/space/transit/east,
-/area/space)
-"tH" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 8
- },
-/obj/effect/transit/light{
- dir = 8
- },
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"tS" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"uc" = (
-/turf/unsimulated/wall,
-/area/centcom/suppy)
-"ud" = (
-/obj/machinery/status_display/supply_display,
-/turf/unsimulated/wall,
-/area/centcom/suppy)
-"ue" = (
-/obj/structure/closet/crate,
-/turf/unsimulated/floor{
- dir = 1;
- icon_state = "vault"
- },
-/area/centcom/suppy)
-"uf" = (
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/suppy)
-"ug" = (
-/obj/item/weapon/paper{
- info = "You're not supposed to be here.";
- name = "unnerving letter"
- },
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
-/area/centcom/suppy)
-"uG" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"uM" = (
-/obj/item/toy/chess/knight_black,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"vu" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/structure/grille,
-/turf/simulated/floor/plating/eris/under,
-/area/shuttle/escape)
-"vz" = (
-/obj/effect/floor_decal/industrial/outline/blue,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"vW" = (
-/obj/effect/floor_decal/sign/small_a,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"wa" = (
-/obj/effect/floor_decal/sign/small_3,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"wd" = (
-/obj/structure/sign/warning/nosmoking_2,
-/turf/unsimulated/wall,
-/area/centcom/simulated/terminal)
-"wh" = (
-/obj/item/toy/chess/knight_black,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"wj" = (
-/turf/space/internal_edge/left,
-/area/space)
-"wl" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/evac)
-"wn" = (
-/obj/structure/fake_stairs/south/top{
- _stair_tag = "stairtest"
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"wy" = (
-/turf/unsimulated/wall,
-/area/centcom/control)
-"wZ" = (
-/turf/unsimulated/floor{
- icon_state = "sandwater"
- },
-/area/beach)
-"xe" = (
-/obj/machinery/account_database{
- dir = 1;
- name = "CentComm Accounts database"
- },
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"xi" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/unsimulated/wall,
-/area/centcom/simulated/terminal)
-"xl" = (
-/obj/structure/table/standard,
-/obj/random/maintenance/clean,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"xM" = (
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"ya" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- direction = 4;
- name = "thrower_escapeshuttletop(right)";
- tiles = 0
- },
-/turf/simulated/sky/virgo3b/south,
-/area/space)
-"ym" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"yA" = (
-/obj/machinery/telecomms/receiver/preset_cent,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"yK" = (
-/obj/machinery/door/airlock/multi_tile/metal,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"yU" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"zb" = (
-/obj/effect/step_trigger/thrower{
- direction = 1;
- name = "thrower_throwup";
- tiles = 0
- },
-/turf/space/transit/east,
-/area/space)
-"zv" = (
-/obj/effect/transit/light{
- dir = 8
- },
-/obj/effect/floor_decal/transit/orange{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"zw" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "escape_shuttle_hatch_offsite";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"zH" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 8
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/centcom/simulated/terminal)
-"zK" = (
-/obj/machinery/door/blast/regular{
- dir = 4
- },
-/turf/unsimulated/wall,
-/area/centcom/simulated/terminal)
-"Al" = (
-/obj/structure/bed/chair/shuttle,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Av" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/floor/maglev{
- icon = 'icons/turf/transit_vr.dmi'
- },
-/area/space)
-"Ax" = (
-/turf/unsimulated/beach/coastline{
- density = 1;
- opacity = 1
- },
-/area/beach)
-"Az" = (
-/turf/unsimulated/beach/coastline,
-/area/beach)
-"AD" = (
-/obj/effect/floor_decal/borderfloor/corner,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Bm" = (
-/obj/item/toy/chess/bishop_black,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"Bs" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "escape_shuttle_hatch_station";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Bw" = (
-/turf/unsimulated/beach/water,
-/area/beach)
-"BD" = (
-/obj/effect/overlay/palmtree_r,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"BG" = (
-/obj/item/toy/chess/king_black,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"BK" = (
-/turf/space,
-/turf/space/internal_edge/bottomleft,
-/area/space)
-"Cd" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Cn" = (
-/turf/simulated/sky/virgo3b/south,
-/area/space)
-"Cp" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/effect/shuttle_landmark{
- base_area = /area/centcom/simulated/terminal;
- base_turf = /turf/simulated/floor/tiled/techfloor/grid;
- docking_controller = null;
- landmark_tag = "escape_cc";
- name = "Escape Centcom"
- },
-/obj/structure/grille,
-/turf/simulated/floor/plating/eris/under,
-/area/shuttle/escape)
-"Ct" = (
-/obj/machinery/ntnet_relay,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"Cw" = (
-/obj/machinery/r_n_d/server/centcom,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"Cy" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"CG" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"CJ" = (
-/obj/item/toy/chess/pawn_white,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"CK" = (
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"Di" = (
-/obj/effect/floor_decal/sign/small_2,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"Dk" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/space)
-"Dm" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Dn" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Dw" = (
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/food/snacks/chips,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"DF" = (
-/turf/space,
-/turf/space/internal_edge/topright,
-/area/space)
-"DI" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"DL" = (
-/obj/effect/floor_decal/sign/small_b,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"El" = (
-/turf/space/transit/west,
-/area/space)
-"Eo" = (
-/obj/effect/floor_decal/sign/small_g,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"Et" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/status_display{
- pixel_y = 32
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"ET" = (
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/centcom/simulated/terminal)
-"EX" = (
-/obj/item/toy/chess/bishop_black,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"Fa" = (
-/obj/structure/table/standard,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"Fe" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/turf/simulated/floor/plating/eris/under,
-/area/shuttle/escape)
-"Fp" = (
-/turf/simulated/floor/maglev,
-/area/centcom/simulated/terminal)
-"Ft" = (
-/obj/effect/transit/light{
- dir = 4
- },
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"FH" = (
-/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)
-"FJ" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"FT" = (
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"FX" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/obj/effect/transit/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"FY" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Ga" = (
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"Gq" = (
-/turf/unsimulated/wall,
-/area/beach)
-"Gs" = (
-/turf/space,
-/turf/space/transit/north,
-/area/space)
-"Gw" = (
-/obj/effect/overlay/palmtree_l,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"GW" = (
-/obj/item/toy/chess/king_white,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"Hf" = (
-/obj/effect/shuttle_landmark/transit{
- base_area = /area/space;
- base_turf = /turf/space/transit/north;
- landmark_tag = "ninja_transit";
- name = "Ninja Transit"
- },
-/turf/space/transit/north,
-/area/space)
-"Hk" = (
-/obj/effect/floor_decal/sign/small_7,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"Hr" = (
-/obj/item/toy/chess/rook_black,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"Hy" = (
-/turf/unsimulated/mineral{
- icon = 'icons/turf/transit_vr.dmi';
- icon_state = "rock"
- },
-/area/space)
-"HL" = (
-/obj/effect/floor_decal/sign/small_1,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"HQ" = (
-/obj/machinery/telecomms/broadcaster/preset_cent,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"HW" = (
-/obj/machinery/status_display{
- pixel_y = -30
- },
-/obj/structure/bed/chair/shuttle{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"HX" = (
-/obj/structure/table/standard,
-/obj/structure/closet/walllocker/medical/west,
-/obj/item/weapon/storage/firstaid,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Ic" = (
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Ik" = (
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
-/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
-/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
-/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
-/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
-/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"In" = (
-/obj/effect/shuttle_landmark/transit{
- base_area = /area/space;
- base_turf = /turf/space/transit/north;
- landmark_tag = "skipjack_transit";
- name = "Skipjack Transit"
- },
-/turf/space/transit/north,
-/area/space)
-"Iq" = (
-/obj/machinery/telecomms/hub/preset_cent,
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"IN" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 8
- },
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"IR" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdown";
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/sky/virgo3b/south,
-/area/space)
-"Jc" = (
-/obj/item/toy/chess/bishop_white,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"Jq" = (
-/obj/structure/sign/warning/docking_area,
-/turf/unsimulated/wall,
-/area/centcom/simulated/terminal)
-"Jw" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Jx" = (
-/obj/effect/floor_decal/corner_steel_grid/diagonal,
-/obj/effect/floor_decal/corner_steel_grid/diagonal{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"Jz" = (
-/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)
-"JI" = (
-/obj/item/toy/chess/rook_white,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"JL" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdown";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/space/transit/north,
-/area/space)
-"JR" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "TelelockdownC";
- name = "Security Doors";
- opacity = 0
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"JW" = (
-/turf/unsimulated/beach/water{
- density = 1;
- opacity = 1
- },
-/area/beach)
-"JZ" = (
-/turf/space/internal_edge/right,
-/area/space)
-"Kj" = (
-/obj/effect/shuttle_landmark/transit{
- base_area = /area/space;
- base_turf = /turf/simulated/sky/virgo3b/south;
- landmark_tag = "tether_backup_transit";
- name = "Tether Backup Transit"
- },
-/turf/simulated/sky/virgo3b/south,
-/area/space)
-"Kn" = (
-/obj/effect/floor_decal/sign/small_d,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"KQ" = (
-/obj/effect/floor_decal/sign/small_f,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"Lg" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/tiled/steel,
-/area/space)
-"Lz" = (
-/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b,
-/turf/simulated/sky/virgo3b/south,
-/area/space)
-"LD" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Mb" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"Me" = (
-/turf/simulated/floor/smole/desert,
-/area/holodeck/source_smoleworld)
-"Mf" = (
-/obj/effect/step_trigger/lost_in_space/tram,
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"Mi" = (
-/obj/item/toy/chess/bishop_white,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"Mq" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"ME" = (
-/obj/machinery/computer/rdservercontrol{
- badmin = 1;
- dir = 1;
- name = "Master R&D Server Controller"
- },
-/turf/unsimulated/floor/steel,
-/area/centcom/control)
-"MK" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"ML" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_leftnostop"
- },
-/turf/space/transit/east,
-/area/space)
-"Nj" = (
-/obj/item/clothing/head/collectable/paper,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"No" = (
-/obj/item/weapon/beach_ball,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"Nq" = (
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"Nr" = (
-/obj/machinery/cryopod/robot/door/gateway,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Nt" = (
-/turf/unsimulated/beach/sand{
- density = 1;
- opacity = 1
- },
-/area/beach)
-"NA" = (
-/obj/structure/closet/hydrant{
- pixel_y = -32
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor/corner,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"NW" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/adv,
-/obj/structure/closet/walllocker/medical/east,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Oj" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- direction = 8;
- name = "thrower_escapeshuttletop(left)";
- tiles = 0
- },
-/turf/simulated/sky/virgo3b/south,
-/area/space)
-"Or" = (
-/obj/item/toy/chess/knight_white,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"OY" = (
-/turf/unsimulated/map,
-/area/overmap)
-"Pe" = (
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/grille,
-/turf/simulated/floor/plating/eris/under,
-/area/shuttle/escape)
-"Pf" = (
-/obj/structure/table/woodentable{
- dir = 5
- },
-/obj/structure/flora/pottedplant{
- pixel_y = 8
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"Pg" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Pi" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdown";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/space/transit/west,
-/area/space)
-"Pq" = (
-/turf/simulated/floor/maglev{
- icon = 'icons/turf/transit_vr.dmi'
- },
-/area/space)
-"Py" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"PM" = (
-/turf/simulated/floor/smole/megablocks,
-/area/holodeck/source_smoleworld)
-"PU" = (
-/obj/effect/floor_decal/transit/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"Qa" = (
-/obj/structure/table/standard,
-/obj/random/soap,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Qs" = (
-/obj/item/toy/chess/queen_black,
-/turf/simulated/floor/holofloor/bmarble,
-/area/holodeck/source_chess)
-"QY" = (
-/obj/structure/flora/pottedplant{
- icon_state = "plant-21"
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"Rc" = (
-/obj/effect/floor_decal/techfloor/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor/grid,
-/area/centcom/simulated/terminal)
-"Rd" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Re" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Rg" = (
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Ri" = (
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Rk" = (
-/obj/structure/bed/chair/shuttle,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Rm" = (
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Ro" = (
-/obj/structure/closet/hydrant{
- pixel_y = 32
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Rq" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "TelelockdownC";
- name = "Security Doors";
- opacity = 0
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Rr" = (
-/obj/structure/flora/pottedplant{
- icon_state = "plant-22"
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"Rs" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Ru" = (
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"Rv" = (
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "TelelockdownC";
- name = "Security Doors";
- opacity = 0
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Rz" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"RA" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"RC" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"RD" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"RE" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"RF" = (
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"RG" = (
-/obj/structure/table/standard,
-/obj/effect/floor_decal/borderfloor,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"RV" = (
-/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/sky/virgo3b/south,
-/area/space)
-"RY" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloor{
- dir = 10
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Sh" = (
-/obj/effect/step_trigger/thrower{
- affect_ghosts = 1;
- name = "thrower_throwdownside";
- nostop = 1;
- stopper = 0;
- tiles = 0
- },
-/turf/simulated/floor/tiled/techfloor/grid{
- icon = 'icons/turf/transit_vr.dmi';
- initial_flooring = null
- },
-/area/space)
-"Sl" = (
-/obj/structure/sign/nanotrasen,
-/turf/simulated/wall/thull,
-/area/shuttle/escape)
-"Sm" = (
-/turf/simulated/shuttle/wall/alien/blue/hard_corner,
-/area/unknown/dorm4)
-"Sn" = (
-/turf/simulated/shuttle/wall/alien/blue,
-/area/unknown/dorm4)
-"So" = (
-/obj/machinery/recharge_station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"Sp" = (
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"Sq" = (
-/obj/structure/toilet,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"Sr" = (
-/obj/machinery/shower{
- pixel_y = 13
- },
-/obj/structure/curtain/open/shower,
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"Ss" = (
-/obj/machinery/door/airlock/alien/blue/public,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"Su" = (
-/obj/structure/closet/alien,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"Sw" = (
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"Sx" = (
-/obj/structure/fans,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"Sy" = (
-/obj/machinery/light,
-/obj/effect/floor_decal/borderfloor{
- dir = 6
- },
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/escape)
-"Sz" = (
-/obj/machinery/smartfridge/survival_pod,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/towel/random,
-/obj/item/weapon/towel/random,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SA" = (
-/obj/machinery/sleeper/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SB" = (
-/obj/structure/table/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SC" = (
-/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "Unknown";
- tele_network = "unkfour"
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"SD" = (
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/hopdouble,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SE" = (
-/obj/structure/prop/alien/computer/hybrid{
- dir = 8
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SF" = (
-/obj/structure/prop/alien/dispenser,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SG" = (
-/obj/structure/table/standard,
-/obj/structure/closet/walllocker/emerglocker{
- pixel_x = -32
- },
-/obj/item/clothing/head/beret/nanotrasen,
-/obj/item/clothing/head/soft/nanotrasen,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"SH" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"SK" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SN" = (
-/obj/structure/bed/chair/comfy/black,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SO" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SP" = (
-/obj/structure/table/alien/blue,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm4)
-"SQ" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/teleport/hub,
-/turf/simulated/shuttle/floor/voidcraft,
-/area/unknown/dorm4)
-"SR" = (
-/obj/machinery/teleport/station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"SS" = (
-/obj/machinery/computer/teleporter{
- dir = 1
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"ST" = (
-/obj/structure/prop/alien/power,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm4)
-"SV" = (
-/obj/effect/floor_decal/steeldecal/steel_decals5{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"SW" = (
-/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "Transfer";
- tele_network = "centcom"
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"SX" = (
-/turf/simulated/shuttle/wall/alien/blue/hard_corner,
-/area/unknown/dorm3)
-"SY" = (
-/turf/simulated/shuttle/wall/alien/blue,
-/area/unknown/dorm3)
-"SZ" = (
-/obj/machinery/recharge_station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"Ta" = (
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"Tb" = (
-/obj/structure/toilet,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"Tc" = (
-/obj/machinery/shower{
- pixel_y = 13
- },
-/obj/structure/curtain/open/shower,
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"Td" = (
-/obj/machinery/door/airlock/alien/blue/public,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"Tf" = (
-/obj/machinery/cryopod/robot/door/gateway,
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Th" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Ti" = (
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Tj" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Tk" = (
-/obj/structure/closet/alien,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tl" = (
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tm" = (
-/obj/structure/fans,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tn" = (
-/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)
-"To" = (
-/obj/machinery/smartfridge/survival_pod,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/towel/random,
-/obj/item/weapon/towel/random,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tp" = (
-/obj/machinery/sleeper/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tq" = (
-/obj/structure/table/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tr" = (
-/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "Unknown";
- tele_network = "unkthree"
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"Ts" = (
-/obj/effect/overlay/coconut,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"Tt" = (
-/obj/structure/bed/double/padded,
-/obj/item/weapon/bedsheet/hopdouble,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tu" = (
-/obj/structure/prop/alien/computer/hybrid{
- dir = 8
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tv" = (
-/obj/structure/bed/chair/shuttle{
- dir = 8
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"Tx" = (
-/obj/structure/prop/alien/dispenser,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Ty" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"Tz" = (
-/obj/structure/bed/chair/comfy/black,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"TA" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"TB" = (
-/obj/structure/table/alien/blue,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm3)
-"TC" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/teleport/hub,
-/turf/simulated/shuttle/floor/voidcraft,
-/area/unknown/dorm3)
-"TD" = (
-/obj/machinery/teleport/station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"TE" = (
-/obj/machinery/computer/teleporter{
- dir = 1
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"TF" = (
-/obj/structure/bed/chair,
-/obj/effect/landmark{
- name = "endgame_exit"
- },
-/turf/unsimulated/beach/sand,
-/area/beach)
-"TG" = (
-/obj/effect/landmark{
- name = "endgame_exit"
- },
-/turf/unsimulated/beach/sand,
-/area/beach)
-"TH" = (
-/obj/structure/prop/alien/power,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm3)
-"TI" = (
-/obj/effect/wingrille_spawn/reinforced/crescent,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/centcom/simulated/terminal)
-"TJ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/multi_tile/glass,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"TK" = (
-/turf/simulated/shuttle/wall/alien/hard_corner,
-/area/unknown/dorm2)
-"TM" = (
-/turf/simulated/shuttle/wall/alien,
-/area/unknown/dorm2)
-"TN" = (
-/obj/machinery/recharge_station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"TP" = (
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"TQ" = (
-/obj/structure/toilet,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"TR" = (
-/obj/machinery/shower{
- pixel_y = 13
- },
-/obj/structure/curtain/open/shower,
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"TS" = (
-/obj/machinery/door/airlock/alien/public,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"TT" = (
-/obj/structure/closet/alien,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"TU" = (
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"TV" = (
-/obj/structure/fans,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"TW" = (
-/obj/machinery/smartfridge/survival_pod,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/towel/random,
-/obj/item/weapon/towel/random,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"TX" = (
-/obj/machinery/sleeper/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"TY" = (
-/obj/machinery/door/firedoor,
-/turf/unsimulated/floor/steel,
-/area/centcom/simulated/terminal)
-"TZ" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Ua" = (
-/obj/structure/table/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Ub" = (
-/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "Unknown";
- tele_network = "unktwo"
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"Uc" = (
-/obj/item/weapon/bedsheet/rddouble,
-/obj/structure/bed/double/padded,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Ud" = (
-/obj/structure/prop/alien/computer{
- dir = 8
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Uf" = (
-/obj/structure/prop/alien/dispenser,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Ug" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Uh" = (
-/obj/structure/bed/chair/comfy/black,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Ui" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Uj" = (
-/obj/structure/table/alien,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm2)
-"Uk" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/teleport/hub,
-/turf/simulated/shuttle/floor/voidcraft,
-/area/unknown/dorm2)
-"Ul" = (
-/obj/machinery/teleport/station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"Um" = (
-/obj/machinery/computer/teleporter{
- dir = 1
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"Uo" = (
-/obj/structure/prop/alien/power,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm2)
-"Up" = (
-/obj/effect/floor_decal/industrial/warning/dust,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Ur" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/floor_decal/industrial/warning/dust,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Us" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Ut" = (
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Uu" = (
-/obj/effect/floor_decal/industrial/warning/dust,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Uv" = (
-/obj/effect/floor_decal/industrial/outline,
-/obj/structure/bed/chair,
-/turf/unsimulated/floor/steel,
-/area/centcom/simulated/main_hall)
-"Uw" = (
-/turf/simulated/shuttle/wall/alien/hard_corner,
-/area/unknown/dorm1)
-"Ux" = (
-/turf/simulated/shuttle/wall/alien,
-/area/unknown/dorm1)
-"Uz" = (
-/obj/machinery/recharge_station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UA" = (
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UC" = (
-/obj/structure/toilet,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UD" = (
-/obj/machinery/shower{
- pixel_y = 13
- },
-/obj/structure/curtain/open/shower,
-/obj/effect/floor_decal/steeldecal/steel_decals10{
- dir = 5
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UE" = (
-/obj/effect/floor_decal/industrial/outline,
-/obj/structure/bed/chair,
-/obj/machinery/status_display{
- pixel_y = 29
- },
-/turf/unsimulated/floor/steel,
-/area/centcom/simulated/main_hall)
-"UF" = (
-/obj/machinery/door/airlock/alien/public,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UG" = (
-/obj/structure/closet/alien,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UH" = (
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UI" = (
-/obj/structure/fans,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UJ" = (
-/obj/machinery/smartfridge/survival_pod,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu13,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu10,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/menu9,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/storage/mre/random,
-/obj/item/weapon/towel/random,
-/obj/item/weapon/towel/random,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UK" = (
-/obj/machinery/sleeper/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UM" = (
-/obj/structure/table/survival_pod,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UN" = (
-/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "Unknown";
- tele_network = "unkone"
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UP" = (
-/obj/item/weapon/bedsheet/rddouble,
-/obj/structure/bed/double/padded,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UQ" = (
-/obj/structure/prop/alien/computer{
- dir = 8
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UR" = (
-/obj/structure/prop/alien/dispenser,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"US" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UT" = (
-/obj/structure/bed/chair/comfy/black,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UU" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 4
- },
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UV" = (
-/obj/structure/table/alien,
-/turf/simulated/shuttle/floor/alien,
-/area/unknown/dorm1)
-"UW" = (
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/obj/machinery/teleport/hub,
-/turf/simulated/shuttle/floor/voidcraft,
-/area/unknown/dorm1)
-"UX" = (
-/obj/machinery/teleport/station,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UY" = (
-/obj/machinery/computer/teleporter{
- dir = 1
- },
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"UZ" = (
-/obj/structure/prop/alien/power,
-/turf/simulated/shuttle/floor/alienplating,
-/area/unknown/dorm1)
-"Va" = (
-/obj/effect/floor_decal/rust/steel_decals_rusted2,
-/obj/effect/floor_decal/industrial/warning/dust,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vb" = (
-/obj/machinery/recharge_station,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/bathroom)
-"Vc" = (
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/bathroom)
-"Vd" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/medical)
-"Ve" = (
-/obj/effect/wingrille_spawn/reinforced/crescent,
-/obj/structure/sign/department/medbay,
-/turf/unsimulated/floor{
- icon_state = "plating";
- name = "plating"
- },
-/area/centcom/simulated/medical)
-"Vf" = (
-/obj/machinery/door/airlock{
- name = "Unit 4"
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/bathroom)
-"Vg" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/living)
-"Vh" = (
-/obj/effect/floor_decal/corner_steel_grid/diagonal,
-/obj/effect/floor_decal/corner_steel_grid/diagonal{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"Vi" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vj" = (
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/large_escape_pod2/centcom{
- base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b
- })
-"Vk" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/bathroom)
-"Vl" = (
-/obj/structure/sign/warning{
- name = "\improper STAND AWAY FROM TRACK EDGE"
- },
-/turf/unsimulated/wall,
-/area/centcom/simulated/living)
-"Vm" = (
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/large_escape_pod2/centcom{
- base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b
- })
-"Vn" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 10
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vo" = (
-/obj/machinery/door/blast/regular,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vp" = (
-/obj/effect/floor_decal/rust/part_rusted3,
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vq" = (
-/obj/effect/floor_decal/rust/part_rusted3,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vr" = (
-/obj/effect/floor_decal/rust,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vs" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vt" = (
-/obj/effect/floor_decal/rust/mono_rusted3,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Vu" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/main_hall)
-"Vv" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 1
- },
-/obj/machinery/door/firedoor,
-/turf/unsimulated/floor/steel,
-/area/centcom/simulated/terminal)
-"Vw" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"Vy" = (
-/obj/machinery/door/airlock{
- name = "Unit 3"
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/bathroom)
-"Vz" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/bathroom)
-"VB" = (
-/obj/effect/floor_decal/sign/dock/one,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VC" = (
-/turf/unsimulated/beach/sand,
-/area/beach)
-"VD" = (
-/obj/effect/floor_decal/corner_steel_grid/diagonal,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VE" = (
-/obj/effect/shuttle_landmark{
- base_area = /area/centcom/simulated/evac;
- base_turf = /turf/unsimulated/floor/steel;
- docking_controller = null;
- landmark_tag = "escapepod1_cc";
- name = "Centcom Recovery Area"
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VF" = (
-/obj/effect/floor_decal/sign/dock/two,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 8
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VI" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"VJ" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VK" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/multi_tile/glass,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/restaurant)
-"VL" = (
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/restaurant)
-"VM" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/restaurant)
-"VN" = (
-/obj/effect/floor_decal/corner_steel_grid/diagonal,
-/turf/simulated/floor/tiled/steel,
-/area/shuttle/large_escape_pod2/centcom{
- base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b
- })
-"VO" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VP" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VQ" = (
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"VR" = (
-/obj/structure/bed/chair/wood/wings,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"VS" = (
-/obj/effect/floor_decal/corner_steel_grid/diagonal,
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VU" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VV" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VW" = (
-/turf/space,
-/turf/space/internal_edge/topleft,
-/area/space)
-"VX" = (
-/obj/effect/floor_decal/industrial/warning/dust/corner{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"VY" = (
-/obj/structure/closet/crate/bin,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"VZ" = (
-/obj/structure/bed/chair/wood/wings{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wb" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/pastatomato,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wc" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/meatballspagetti,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wd" = (
-/obj/structure/bed/chair/wood/wings{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"We" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/fries,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wf" = (
-/obj/item/toy/chess/queen_white,
-/turf/simulated/floor/holofloor/wmarble,
-/area/holodeck/source_chess)
-"Wh" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Wi" = (
-/obj/machinery/door/airlock{
- name = "Unisex Restrooms"
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/bathroom)
-"Wj" = (
-/obj/effect/blocker,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/living)
-"Wk" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/cheeseburger{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/reagent_containers/food/snacks/cheeseburger,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wl" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/kitsuneudon,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wm" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/lasagna,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wo" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/hotdog,
-/obj/item/weapon/reagent_containers/food/snacks/hotdog{
- pixel_x = -5;
- pixel_y = -3
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wp" = (
-/obj/machinery/cryopod/robot/door/dorms,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Wq" = (
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/obj/machinery/computer/cryopod/dorms{
- name = "Company Property Retention System";
- pixel_y = 32
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Ws" = (
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 8
- },
-/obj/effect/floor_decal/steeldecal/steel_decals9{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"Wt" = (
-/obj/machinery/porta_turret/crescent{
- density = 1
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Wu" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Wv" = (
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Wz" = (
-/obj/structure/bed/chair/wood/wings{
- dir = 1
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"WA" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/grilledcheese,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"WB" = (
-/obj/effect/wingrille_spawn/reinforced/crescent,
-/turf/simulated/floor/plating,
-/area/centcom/simulated/restaurant)
-"WC" = (
-/obj/effect/wingrille_spawn/reinforced/crescent,
-/turf/simulated/floor/plating,
-/area/centcom/simulated/medical)
-"WD" = (
-/obj/effect/overlay/palmtree_r,
-/obj/effect/overlay/coconut,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"WE" = (
-/obj/effect/wingrille_spawn/reinforced/crescent,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "FrontlockC2";
- name = "Security Door";
- opacity = 0
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/plating,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"WF" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/meatballsoup,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"WH" = (
-/obj/item/weapon/stool/padded,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"WI" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/roastbeef,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"WJ" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/brigdoor/northleft{
- req_access = list(63);
- req_one_access = list(1)
- },
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
- },
-/obj/item/weapon/pen,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "FrontlockC2";
- name = "Security Door";
- opacity = 0
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"WK" = (
-/obj/structure/table/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/window/brigdoor/northright{
- req_access = list(63);
- req_one_access = list(1)
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "FrontlockC2";
- name = "Security Door";
- opacity = 0
- },
-/obj/machinery/computer/skills,
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"WL" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/meatsteak,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"WN" = (
-/obj/structure/bed/chair/wood/wings{
- dir = 4
- },
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"WO" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/cola,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"WP" = (
-/obj/structure/table/woodentable,
-/obj/machinery/cash_register/civilian,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"WQ" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"WR" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/snacks/toastedsandwich{
- pixel_y = 10
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"WS" = (
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"WT" = (
-/obj/structure/bed/chair,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"WU" = (
-/obj/structure/table/standard,
-/obj/item/weapon/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/white,
-/area/centcom/simulated/medical)
-"WV" = (
-/obj/structure/table/woodentable,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"WW" = (
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"WZ" = (
-/obj/machinery/vending/coffee,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Xa" = (
-/obj/machinery/vending/sovietsoda,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Xb" = (
-/obj/machinery/vending/snack,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Xc" = (
-/obj/machinery/vending/cola,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Xd" = (
-/obj/machinery/vending/cigarette,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"Xe" = (
-/obj/machinery/smartfridge/drinks,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"Xf" = (
-/obj/machinery/vending/boozeomat,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"Xg" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chemical_dispenser/bar_soft/full,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"Xh" = (
-/obj/structure/table/reinforced,
-/obj/machinery/chemical_dispenser/bar_alc/full,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"Xi" = (
-/turf/unsimulated/wall,
-/area/centcom/simulated/bar)
-"Xj" = (
-/obj/structure/table/standard,
-/obj/item/weapon/storage/firstaid/surgery,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Xk" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/multi_tile/glass,
-/turf/unsimulated/floor/steel{
- icon_state = "white"
- },
-/area/centcom/simulated/medical)
-"Xl" = (
-/turf/unsimulated/map/edge,
-/area/overmap)
-"Xm" = (
-/obj/machinery/door/firedoor,
-/turf/unsimulated/floor/steel{
- icon_state = "white"
- },
-/area/centcom/simulated/medical)
-"Xn" = (
-/obj/structure/sign/greencross,
-/turf/unsimulated/wall,
-/area/centcom/simulated/medical)
-"Xp" = (
-/obj/structure/toilet{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/bathroom)
-"Xr" = (
-/obj/structure/bed/chair,
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Xs" = (
-/obj/machinery/computer/card{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 1;
- frequency = 1475;
- name = "Station Intercom (Security)";
- pixel_y = 27
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Xv" = (
-/obj/structure/bed/chair/office/dark{
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Xw" = (
-/obj/structure/bed/chair/office/dark{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Xx" = (
-/obj/machinery/computer/security{
- dir = 8
- },
-/obj/machinery/camera/network/crescent,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Xy" = (
-/obj/structure/table/standard,
-/obj/item/stack/nanopaste,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Xz" = (
-/obj/effect/floor_decal/industrial/loading,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XA" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 5
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XB" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/obj/structure/sink{
- dir = 4;
- pixel_x = 12;
- pixel_y = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XC" = (
-/obj/machinery/computer/secure_data{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"XD" = (
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"XE" = (
-/turf/simulated/wall/thull,
-/area/shuttle/escape)
-"XH" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"XJ" = (
-/obj/structure/table/glass,
-/obj/item/device/healthanalyzer/improved,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XK" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data{
- icon_keyboard = "laptop_key";
- icon_screen = "medlaptop";
- icon_state = "laptop";
- light_color = "#00b000"
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XM" = (
-/obj/structure/table/glass{
- desc = "It's a table, it has some scracthes..they say 'Mlem'."
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XN" = (
-/obj/structure/table/glass,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XO" = (
-/obj/structure/signpost,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"XP" = (
-/obj/machinery/oxygen_pump/anesthetic,
-/turf/unsimulated/wall,
-/area/centcom/simulated/medical)
-"XQ" = (
-/obj/machinery/optable,
-/obj/machinery/light{
- dir = 8
- },
-/obj/effect/floor_decal/industrial/hatch/yellow,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XR" = (
-/obj/machinery/computer/operating{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XS" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XU" = (
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"XV" = (
-/obj/machinery/turretid/stun{
- check_access = 0;
- check_anomalies = 0;
- check_records = 0;
- control_area = "\improper CentCom Security Arrivals";
- pixel_x = 32;
- req_access = list(101);
- req_one_access = list(101)
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"XW" = (
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/obj/effect/floor_decal/borderfloor{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/escape)
-"XX" = (
-/obj/machinery/computer/crew{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"XY" = (
-/obj/structure/closet,
-/turf/unsimulated/beach/sand,
-/area/beach)
-"XZ" = (
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Ya" = (
-/obj/machinery/camera/network/crescent,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yb" = (
-/obj/structure/table/glass,
-/obj/item/weapon/paper_bin{
- pixel_x = -1;
- pixel_y = 3
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yc" = (
-/obj/structure/table/standard,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yg" = (
-/obj/structure/sign/department/operational,
-/turf/unsimulated/wall,
-/area/centcom/simulated/medical)
-"Yh" = (
-/obj/effect/floor_decal/industrial/loading{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yj" = (
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 9
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yk" = (
-/obj/structure/medical_stand,
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yl" = (
-/obj/machinery/door/airlock/security{
- name = "Security"
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Ym" = (
-/obj/machinery/vending/medical,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yo" = (
-/obj/structure/closet/secure_closet/medical2,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yr" = (
-/obj/structure/table/reinforced,
-/obj/machinery/microwave{
- pixel_y = 5
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Ys" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = 4;
- pixel_y = 26
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Yt" = (
-/obj/effect/floor_decal/rust,
-/obj/effect/floor_decal/industrial/warning/dust{
- dir = 1
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/evac)
-"Yu" = (
-/obj/machinery/camera/network/crescent,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Yv" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- req_access = list(5)
- },
-/obj/machinery/door/firedoor/multi_tile,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yw" = (
-/obj/machinery/door/airlock/medical{
- name = "Operating Theatre";
- req_access = list(45)
- },
-/obj/machinery/door/firedoor,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Yx" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"Yy" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"YB" = (
-/obj/structure/table/standard,
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 5;
- pixel_y = 5
- },
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
-/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
- pixel_x = 7;
- pixel_y = 1
- },
-/obj/item/weapon/tool/wrench,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YC" = (
-/obj/machinery/atmospherics/unary/cryo_cell,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YD" = (
-/obj/machinery/atmospherics/unary/freezer,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YE" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"YF" = (
-/obj/structure/table/glass,
-/obj/item/device/defib_kit/loaded,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YG" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/living)
-"YH" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/pill_bottle/spaceacillin,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YI" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/melee/baton/loaded,
-/obj/item/weapon/melee/baton/loaded,
-/obj/item/weapon/gun/energy/taser,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"YJ" = (
-/obj/structure/closet/secure_closet/nanotrasen_security,
-/obj/item/weapon/storage/box/handcuffs,
-/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/shield/riot,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"YK" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 6
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YL" = (
-/obj/machinery/atmospherics/pipe/manifold4w/hidden,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YM" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 9
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YO" = (
-/obj/machinery/computer/transhuman/designer{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YP" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 1
- },
-/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YQ" = (
-/obj/structure/table/glass,
-/obj/machinery/chemical_dispenser/full,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YR" = (
-/turf/unsimulated/floor/steel,
-/area/centcom/simulated/main_hall)
-"YT" = (
-/obj/machinery/chem_master,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YU" = (
-/obj/structure/table/glass,
-/obj/machinery/chemical_dispenser/ert,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YV" = (
-/obj/machinery/transhuman/synthprinter,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YW" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YX" = (
-/obj/effect/floor_decal/sign/small_e,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-"YY" = (
-/obj/machinery/bodyscanner{
- dir = 8
- },
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"YZ" = (
-/obj/machinery/body_scanconsole,
-/obj/effect/floor_decal/corner_steel_grid{
- dir = 10
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zb" = (
-/obj/machinery/sleep_console{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zc" = (
-/obj/machinery/sleeper{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zd" = (
-/obj/machinery/computer/transhuman/resleeving{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Ze" = (
-/obj/machinery/transhuman/resleever,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zf" = (
-/obj/structure/filingcabinet/chestdrawer{
- name = "Medical Forms"
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zg" = (
-/obj/machinery/clonepod/transhuman/full,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zh" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,
-/obj/item/weapon/reagent_containers/glass/rag,
-/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"Zi" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/steel,
-/area/centcom/simulated/main_hall)
-"Zj" = (
-/obj/structure/table/standard,
-/obj/item/device/healthanalyzer,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zk" = (
-/obj/structure/table/reinforced,
-/obj/item/device/camera,
-/obj/item/weapon/storage/box/ids,
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Zl" = (
-/obj/structure/table/glass,
-/obj/item/weapon/backup_implanter{
- pixel_y = -8
- },
-/obj/item/weapon/backup_implanter{
- pixel_y = 8
- },
-/obj/item/weapon/backup_implanter,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zn" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zp" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/item/weapon/book/manual/security_space_law,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Zq" = (
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zr" = (
-/obj/structure/table/standard,
-/obj/machinery/light,
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zs" = (
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Zt" = (
-/obj/effect/floor_decal/corner_steel_grid/diagonal,
-/obj/effect/floor_decal/corner_steel_grid/diagonal{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/danger{
- dir = 8
- },
-/obj/machinery/light,
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/terminal)
-"Zw" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/box/donkpockets,
-/obj/item/weapon/storage/box/donkpockets,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/simulated/floor/tiled,
-/area/centcom/simulated/security{
- name = "\improper CentCom Security Arrivals"
- })
-"Zx" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zy" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/firstaid/adv,
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"Zz" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/glass/bottle/biomass{
- pixel_x = -4;
- pixel_y = 8
- },
-/obj/item/weapon/reagent_containers/glass/bottle/biomass{
- pixel_x = -3;
- pixel_y = -2
- },
-/obj/item/weapon/reagent_containers/glass/bottle/biomass{
- pixel_x = 3;
- pixel_y = 5
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/tiled/white,
-/area/centcom/simulated/medical)
-"ZC" = (
-/obj/machinery/light{
- dir = 4
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"ZD" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/reagent_containers/food/drinks/bottle/grenadine,
-/obj/machinery/light{
- dir = 8
- },
-/turf/simulated/floor/wood,
-/area/centcom/simulated/bar)
-"ZE" = (
-/obj/machinery/light,
-/turf/simulated/floor/wood,
-/area/centcom/simulated/restaurant)
-"ZQ" = (
-/obj/effect/floor_decal/sign/small_c,
-/turf/simulated/floor/holofloor/wood,
-/area/holodeck/source_chess)
-
-(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
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-"}
-(2,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-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
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(3,1,1) = {"
-ap
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-ap
-Gq
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Ax
-JW
-JW
-Gq
-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
-ap
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(4,1,1) = {"
-ap
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-ap
-Gq
-Nt
-VC
-Gw
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-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
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(5,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-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
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(6,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-XO
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-Ts
-BD
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-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
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(7,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-Ts
-VC
-Nj
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-Uw
-Ux
-Uw
-Ux
-Ux
-Ux
-Ux
-Ux
-Ux
-Uw
-Ux
-Ux
-Uw
-ae
-ae
-ae
-ae
-ae
-SX
-SY
-SX
-SY
-SY
-SY
-SY
-SY
-SY
-SX
-SY
-SY
-SX
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(8,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-BD
-VC
-TG
-TG
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-Ux
-Uz
-Uw
-UK
-UM
-UG
-UQ
-US
-US
-Uw
-UH
-UW
-Ux
-ae
-ae
-ae
-ae
-ae
-SY
-SZ
-SX
-Tp
-Tq
-Tk
-Tu
-Ty
-Ty
-SX
-Tl
-TC
-SY
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-sF
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(9,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-Ts
-TG
-Fa
-Dw
-TG
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-Ux
-UA
-UF
-UH
-UA
-UN
-UA
-UA
-UH
-UF
-UH
-UX
-Ux
-ae
-ae
-ae
-ae
-ae
-SY
-Ta
-Td
-Tl
-Ta
-Tr
-Ta
-Ta
-Tl
-Td
-Tl
-TD
-SY
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(10,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-XY
-VC
-VC
-VC
-VC
-TG
-Tn
-Ik
-TG
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-Ux
-UC
-Uw
-UI
-UA
-UA
-UA
-UA
-UU
-Uw
-UH
-UY
-Ux
-ae
-ae
-ae
-ae
-ae
-SY
-Tb
-SX
-Tm
-Ta
-Ta
-Ta
-Ta
-TA
-SX
-Tl
-TE
-SY
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(11,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-IR
-IR
-IR
-IR
-IR
-IR
-IR
-IR
-IR
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-XY
-VC
-VC
-VC
-VC
-VC
-TG
-TG
-VC
-VC
-VC
-FH
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-Ux
-UD
-Ux
-UJ
-UH
-UP
-UR
-UT
-UV
-Ux
-UH
-UZ
-Ux
-ae
-ae
-ae
-ae
-ae
-SY
-Tc
-SY
-To
-Tl
-Tt
-Tx
-Tz
-TB
-SY
-Tl
-TH
-SY
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(12,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-Oj
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-IR
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-XY
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-Uw
-Ux
-Uw
-Ux
-Ux
-Ux
-Ux
-Ux
-Ux
-Uw
-Ux
-Ux
-Uw
-ae
-ae
-ae
-ae
-ae
-SX
-SY
-SX
-SY
-SY
-SY
-SY
-SY
-SY
-SX
-SY
-SY
-SX
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(13,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-Oj
-Cn
-Cn
-Cn
-Kj
-Cn
-Cn
-Cn
-IR
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-TF
-VC
-wZ
-Az
-Bw
-JW
-Gq
-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
-ap
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(14,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-Oj
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-IR
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-BD
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-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
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(15,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-ya
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-IR
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-XY
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-TF
-VC
-wZ
-Az
-Bw
-JW
-Gq
-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
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(16,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-ya
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-IR
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-XY
-VC
-VC
-VC
-VC
-VC
-VC
-No
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-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
-ap
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(17,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-IR
-IR
-IR
-IR
-IR
-IR
-IR
-IR
-IR
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-XY
-VC
-Ts
-Gw
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-aa
-VC
-wZ
-Az
-Bw
-JW
-Gq
-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
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(18,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-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
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(19,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Cn
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-TK
-TM
-TK
-TM
-TM
-TM
-TM
-TM
-TM
-TK
-TM
-TM
-TK
-ae
-ae
-ae
-ae
-ae
-Sm
-Sn
-Sm
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-Sm
-Sn
-Sn
-Sm
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(20,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-Gw
-Ts
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-TM
-TN
-TK
-TX
-Ua
-TT
-Ud
-Ug
-Ug
-TK
-TU
-Uk
-TM
-ae
-ae
-ae
-ae
-ae
-Sn
-So
-Sm
-SA
-SB
-Su
-SE
-SK
-SK
-Sm
-Sw
-SQ
-Sn
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(21,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-TM
-TP
-TS
-TU
-TP
-Ub
-TP
-TP
-TU
-TS
-TU
-Ul
-TM
-ae
-ae
-ae
-ae
-ae
-Sn
-Sp
-Ss
-Sw
-Sp
-SC
-Sp
-Sp
-Sw
-Ss
-Sw
-SR
-Sn
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-sF
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(22,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-VC
-WD
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-VC
-wZ
-Az
-Bw
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-TM
-TQ
-TK
-TV
-TP
-TP
-TP
-TP
-Ui
-TK
-TU
-Um
-TM
-ae
-ae
-ae
-ae
-ae
-Sn
-Sq
-Sm
-Sx
-Sp
-Sp
-Sp
-Sp
-SO
-Sm
-Sw
-SS
-Sn
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(23,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-Gq
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Nt
-Ax
-JW
-JW
-Gq
-ae
-ae
-ae
-ae
-ae
-TM
-TR
-TM
-TW
-TU
-Uc
-Uf
-Uh
-Uj
-TM
-TU
-Uo
-TM
-ae
-ae
-ae
-ae
-ae
-Sn
-Sr
-Sn
-Sz
-Sw
-SD
-SF
-SN
-SP
-Sn
-Sw
-ST
-Sn
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(24,1,1) = {"
-ap
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-ap
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-Gq
-ae
-ae
-ae
-ae
-ae
-TK
-TM
-TK
-TM
-TM
-TM
-TM
-TM
-TM
-TK
-TM
-TM
-TK
-ae
-ae
-ae
-ae
-ae
-Sm
-Sn
-Sm
-Sn
-Sn
-Sn
-Sn
-Sn
-Sn
-Sm
-Sn
-Sn
-Sm
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(25,1,1) = {"
-ap
-Lz
-RV
-RV
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-Lz
-RV
-Lz
-RV
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-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
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(26,1,1) = {"
-ap
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-RV
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-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
-ap
-ap
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(27,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
-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
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(28,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-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
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(29,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-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
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(30,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(31,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(32,1,1) = {"
-Hy
-Hy
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(33,1,1) = {"
-Hy
-Hy
-Mb
-Mb
-zv
-Mb
-Mb
-sN
-IN
-IN
-IN
-tH
-IN
-IN
-IN
-tH
-IN
-IN
-IN
-tH
-sp
-IN
-IN
-tH
-IN
-IN
-IN
-tH
-IN
-IN
-IN
-tH
-Mb
-Mb
-Mb
-zv
-Mb
-Mb
-sN
-Mb
-mb
-sN
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(34,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-Sh
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-mF
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-Sh
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-Xl
-"}
-(35,1,1) = {"
-Hy
-Hy
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Av
-Av
-Av
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Av
-Av
-Av
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-jL
-Pq
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-Xl
-"}
-(36,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(37,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(38,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(39,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(40,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(41,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(42,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(43,1,1) = {"
-Hy
-Hy
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Av
-Av
-Av
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Av
-Av
-Av
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-Pq
-jL
-Pq
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(44,1,1) = {"
-Hy
-Hy
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-Sh
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Sh
-Sh
-Sh
-Sh
-Sh
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-FT
-Mf
-FT
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(45,1,1) = {"
-Hy
-Hy
-PU
-PU
-Ft
-PU
-PU
-FX
-Py
-Py
-Py
-ig
-Py
-Py
-Py
-ig
-Py
-Py
-Py
-ig
-tu
-Py
-Py
-ig
-Py
-Py
-Py
-ig
-Py
-Py
-Py
-ig
-PU
-PU
-PU
-Ft
-PU
-PU
-FX
-PU
-in
-FX
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(46,1,1) = {"
-Hy
-Hy
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-dg
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(47,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(48,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(49,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(50,1,1) = {"
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-Hy
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(51,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
-"}
-(52,1,1) = {"
-ar
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-ar
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-aI
-ar
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(53,1,1) = {"
-as
-nW
-pf
-Hk
-qV
-kw
-eD
-wa
-Di
-HL
-nW
-dB
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-fZ
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(54,1,1) = {"
-as
-nW
-nV
-ru
-CK
-pT
-CK
-pT
-cm
-JI
-vW
-dB
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-fZ
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-"}
-(55,1,1) = {"
-as
-nW
-wh
-oT
-pT
-CK
-pT
-CK
-CJ
-sb
-DL
-dB
-Me
-Me
-PM
-PM
-PM
-PM
-PM
-PM
-Me
-Me
-fZ
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(56,1,1) = {"
-as
-nW
-EX
-ru
-CK
-pT
-CK
-pT
-cm
-Jc
-ZQ
-dB
-Me
-Me
-PM
-PM
-PM
-PM
-PM
-PM
-Me
-Me
-fZ
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(57,1,1) = {"
-as
-nW
-Qs
-oT
-pT
-CK
-pT
-CK
-CJ
-Wf
-Kn
-dB
-Me
-Me
-PM
-PM
-PM
-PM
-PM
-PM
-Me
-Me
-fZ
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(58,1,1) = {"
-as
-nW
-BG
-ru
-CK
-pT
-CK
-pT
-cm
-GW
-YX
-dB
-Me
-Me
-PM
-PM
-PM
-PM
-PM
-PM
-Me
-Me
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(59,1,1) = {"
-as
-nW
-Bm
-oT
-pT
-CK
-pT
-CK
-CJ
-Mi
-KQ
-dB
-Me
-Me
-PM
-PM
-PM
-PM
-PM
-PM
-Me
-Me
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(60,1,1) = {"
-as
-nW
-uM
-ru
-CK
-pT
-CK
-pT
-cm
-Or
-Eo
-dB
-Me
-Me
-PM
-PM
-PM
-PM
-PM
-PM
-Me
-Me
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(61,1,1) = {"
-as
-nW
-Hr
-oT
-pT
-CK
-pT
-CK
-CJ
-nj
-qv
-dB
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(62,1,1) = {"
-as
-nW
-nW
-nW
-nW
-nW
-nW
-nW
-nW
-nW
-nW
-dB
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-Me
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(63,1,1) = {"
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(64,1,1) = {"
-as
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aK
-dA
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(65,1,1) = {"
-as
-aJ
-aJ
-bd
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-dA
-dF
-dF
-dF
-ec
-dF
-dF
-dF
-dF
-ec
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(66,1,1) = {"
-as
-aJ
-aJ
-aJ
-aJ
-aK
-aJ
-aJ
-bd
-aJ
-aJ
-dA
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-bN
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(67,1,1) = {"
-as
-aK
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-dA
-dF
-ec
-dF
-dF
-dF
-dF
-ec
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(68,1,1) = {"
-as
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-bd
-dA
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-cl
-cl
-cl
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(69,1,1) = {"
-as
-aJ
-aJ
-aJ
-aK
-aJ
-aJ
-bd
-aJ
-aJ
-aJ
-dA
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(70,1,1) = {"
-as
-aJ
-aJ
-aJ
-aJ
-aK
-aJ
-aJ
-aJ
-aJ
-aJ
-dA
-dF
-dF
-dF
-ec
-dF
-dF
-dF
-dF
-ec
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(71,1,1) = {"
-as
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-dA
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(72,1,1) = {"
-as
-aJ
-bd
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-dA
-dF
-ec
-dF
-dF
-dF
-dF
-ec
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(73,1,1) = {"
-as
-aJ
-aJ
-aJ
-aJ
-aJ
-aJ
-aK
-aJ
-aJ
-bd
-dA
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-dF
-fZ
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(74,1,1) = {"
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-cd
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-ci
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-Hf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(75,1,1) = {"
-as
-aM
-be
-bf
-be
-be
-be
-be
-bf
-be
-aM
-dA
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-fG
-dG
-dG
-fZ
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-cd
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(76,1,1) = {"
-as
-aN
-bf
-be
-bf
-bf
-bf
-bf
-be
-bf
-aN
-dA
-dG
-ed
-dG
-dG
-dG
-dG
-dG
-dG
-eT
-dG
-fZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-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
-Jz
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(77,1,1) = {"
-as
-aM
-be
-bo
-bU
-bU
-bU
-bU
-da
-be
-aM
-dA
-dG
-dG
-dG
-eJ
-dG
-dG
-dG
-dG
-dG
-dG
-fZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-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
-Jz
-jf
-jf
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(78,1,1) = {"
-as
-aN
-bf
-bp
-bB
-bB
-bB
-bB
-cP
-bf
-aN
-dA
-dG
-dG
-dG
-dG
-eT
-dG
-dG
-dG
-eJ
-dG
-fZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-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
-Jz
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(79,1,1) = {"
-as
-aM
-be
-bq
-an
-bS
-bS
-an
-cQ
-be
-aM
-dA
-dG
-dG
-dG
-ep
-dG
-dG
-ed
-dG
-dG
-fG
-fZ
-ae
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Jq
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-xi
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-xi
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-aj
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(80,1,1) = {"
-as
-aM
-bf
-bp
-an
-bS
-bS
-an
-cP
-bf
-aM
-dA
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-fG
-dG
-dG
-fZ
-ae
-Vu
-Ru
-wn
-Cy
-eS
-Vu
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-sx
-sx
-zH
-sx
-sx
-sx
-zH
-sx
-sx
-sx
-sx
-zH
-sx
-zH
-sx
-sx
-sx
-sx
-zH
-sx
-sx
-sx
-zH
-sx
-sx
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(81,1,1) = {"
-as
-aN
-be
-ag
-bB
-bB
-bB
-bB
-at
-be
-aN
-dA
-dG
-ed
-dG
-dG
-dG
-dG
-eJ
-dG
-eT
-dG
-fZ
-ae
-Vu
-Vu
-Vu
-Cy
-gU
-Vu
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-ET
-ET
-ET
-ET
-XE
-XE
-dD
-XE
-Sl
-Bs
-Cp
-li
-Bs
-Sl
-XE
-dD
-XE
-XE
-ET
-ET
-ET
-ET
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(82,1,1) = {"
-as
-aM
-bf
-bB
-bB
-ao
-aA
-bB
-bB
-bf
-aM
-dA
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-dG
-fZ
-ae
-Vu
-Vu
-Vu
-Cy
-eS
-Vu
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-Fp
-Fp
-Fp
-XE
-XE
-XE
-XE
-gE
-yU
-LD
-ix
-yU
-Mq
-ix
-ih
-Mq
-NA
-XE
-XE
-XE
-XE
-Fp
-Fp
-Fp
-Fp
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(83,1,1) = {"
-as
-aN
-be
-bB
-ao
-ax
-aB
-aA
-bB
-bf
-aN
-dA
-dG
-dG
-ep
-dG
-eT
-dG
-dG
-dG
-eJ
-dG
-fZ
-ae
-Vu
-kn
-Ru
-Cy
-eS
-Vu
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-ET
-XE
-Sl
-Al
-HX
-cq
-Re
-Jw
-XW
-FY
-XW
-XW
-FY
-XW
-FJ
-Ic
-Al
-SG
-HW
-XE
-XE
-ET
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(84,1,1) = {"
-as
-aM
-bf
-bB
-at
-bU
-bU
-ag
-bB
-be
-aM
-dA
-dG
-dG
-dG
-dG
-dG
-dG
-ed
-dG
-dG
-fG
-fZ
-ae
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-XE
-XE
-XE
-ti
-Ri
-Ri
-Rg
-Rs
-iU
-RA
-iU
-iU
-RA
-iU
-RG
-qY
-Ri
-Ri
-RY
-Sl
-XE
-XE
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-jQ
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(85,1,1) = {"
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-Pe
-Pg
-Rd
-Rg
-Rk
-Rk
-Rm
-Tv
-RD
-RA
-RD
-RD
-RA
-RD
-tS
-Rm
-ii
-ii
-qY
-lE
-Pg
-vu
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(86,1,1) = {"
-as
-aO
-bg
-bg
-bG
-bV
-bV
-bV
-bV
-bV
-dq
-dA
-dI
-dH
-dH
-eL
-eL
-eL
-eL
-eL
-eL
-eL
-fZ
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-Pe
-Qa
-Re
-Rm
-vz
-vz
-Rm
-DI
-RA
-RA
-RA
-RA
-RA
-RA
-RF
-Rm
-vz
-vz
-Rm
-Ic
-xl
-vu
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(87,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bV
-bV
-bV
-bV
-bV
-bV
-dA
-dH
-dH
-dH
-eK
-eK
-eK
-eK
-eK
-eK
-eK
-fZ
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-Pe
-RD
-jr
-lf
-Rk
-Rk
-Rm
-CG
-Pg
-RA
-Pg
-Pg
-RA
-Pg
-tp
-Rm
-ii
-ii
-AD
-Cd
-RD
-vu
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Gs
-Gs
-Gs
-cl
-iO
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(88,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bW
-ct
-ct
-ct
-dj
-bV
-dA
-dH
-dH
-dH
-eK
-eV
-fn
-fn
-fn
-fO
-eK
-fZ
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-XE
-XE
-XE
-Et
-rh
-rh
-lf
-Rs
-iU
-RA
-iU
-iU
-RA
-iU
-RG
-AD
-rh
-rh
-Sy
-Sl
-XE
-XE
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-cl
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(89,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bX
-cu
-cu
-cu
-dk
-bV
-dA
-dH
-ee
-eq
-eK
-eW
-fo
-fo
-fo
-fP
-eK
-fZ
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-ET
-XE
-Sl
-Al
-nC
-cq
-Re
-qc
-nB
-pk
-nB
-nB
-pk
-nB
-Dn
-Ic
-Al
-NW
-HW
-XE
-XE
-ET
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(90,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bX
-cu
-cu
-cu
-dk
-bV
-dA
-dH
-ef
-eq
-eK
-eW
-fo
-fo
-fo
-fP
-eK
-fZ
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-Fp
-Fp
-Fp
-XE
-XE
-XE
-XE
-Ro
-Rz
-uG
-RC
-Rz
-Dm
-RC
-RE
-Dm
-sT
-XE
-XE
-XE
-XE
-Fp
-Fp
-Fp
-Fp
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(91,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bX
-cu
-cu
-cu
-dk
-bV
-dA
-dH
-ef
-eq
-eK
-eW
-fo
-fo
-fo
-fP
-eK
-fZ
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-ET
-ET
-ET
-ET
-ET
-XE
-XE
-zw
-XE
-Sl
-zw
-Fe
-Fe
-zw
-Sl
-XE
-pv
-XE
-XE
-ET
-ET
-ET
-ET
-ET
-ET
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(92,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bX
-cu
-cu
-cu
-dk
-bV
-dA
-dH
-ef
-eq
-eK
-eW
-fo
-fo
-fo
-fP
-eK
-fZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-zK
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-Rc
-pX
-Rc
-Rc
-Rc
-pX
-Rc
-Rc
-zK
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(93,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bY
-cv
-cv
-cv
-dl
-bV
-dA
-dH
-eg
-eq
-eK
-eW
-fo
-fo
-fo
-fP
-eK
-fZ
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-ae
-ae
-ae
-ae
-ae
-Vg
-Vg
-Vg
-Vl
-Vh
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Jx
-Zt
-aj
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-aj
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(94,1,1) = {"
-as
-aP
-bg
-bg
-bG
-bV
-bV
-bV
-bV
-bV
-bV
-dA
-dH
-dH
-dH
-eK
-eX
-fp
-fp
-fH
-fQ
-eK
-fZ
-Vu
-Ru
-Ru
-xM
-Ru
-Ru
-Ru
-Ru
-xM
-Ru
-Ru
-Ru
-Vu
-ae
-ae
-ae
-ae
-ae
-Vg
-Nr
-Th
-JR
-Nq
-Nq
-Nq
-Nq
-Nq
-Nq
-Yx
-Nq
-Nq
-Nq
-Nq
-Yx
-Nq
-Nq
-Nq
-Nq
-Nq
-Nq
-dZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(95,1,1) = {"
-as
-aP
-bg
-bg
-bH
-bZ
-bZ
-bZ
-bZ
-dm
-dr
-dA
-dH
-dH
-dH
-eK
-eU
-eU
-eK
-eK
-eK
-eK
-fZ
-Vu
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Vu
-ae
-ae
-ae
-ae
-ae
-Vg
-SW
-Ti
-Rq
-Nq
-Nq
-Nq
-Nq
-Nq
-Nq
-wd
-dZ
-TY
-Vv
-dZ
-dZ
-Nq
-Nq
-Nq
-Nq
-Nq
-Nq
-dZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(96,1,1) = {"
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-Vu
-YE
-Ru
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Ru
-Zi
-Vu
-ae
-ae
-ae
-ae
-ae
-Vg
-Tf
-Tj
-Rv
-QY
-Pf
-XH
-SH
-SH
-QY
-TI
-Rr
-SV
-SV
-Rr
-TI
-QY
-SH
-SH
-XH
-Pf
-QY
-dZ
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-Pi
-El
-El
-El
-El
-El
-El
-iO
-"}
-(97,1,1) = {"
-as
-aS
-bi
-ah
-au
-ay
-ay
-ay
-ay
-aE
-aS
-dB
-dM
-eh
-eh
-eh
-eY
-fq
-fz
-fz
-fz
-fS
-fZ
-Vu
-Ru
-Ru
-Vu
-VW
-wj
-wj
-wj
-BK
-Vu
-Ru
-Ru
-Vu
-ae
-ae
-ae
-wy
-wy
-Vg
-Vg
-Vg
-Vg
-TI
-TI
-TI
-TI
-TI
-TI
-dZ
-Ru
-Ru
-Ru
-Ru
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-dZ
-VI
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(98,1,1) = {"
-as
-aS
-bi
-bv
-av
-az
-az
-az
-az
-aF
-aS
-dB
-dN
-ei
-ei
-ei
-eZ
-fr
-ei
-ei
-ei
-fJ
-fZ
-Vu
-Ru
-Ru
-Vu
-sl
-cj
-Dk
-Dk
-Dk
-yK
-Ru
-Ru
-Vu
-ae
-ae
-ae
-wy
-yA
-Ga
-xe
-wl
-TZ
-Vi
-Vi
-Vi
-VJ
-Vi
-VS
-Vu
-YE
-Ru
-Ru
-Wt
-WE
-Xs
-XC
-Zp
-VI
-Yr
-Zw
-YI
-VI
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cf
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(99,1,1) = {"
-as
-aS
-bi
-ak
-aw
-aw
-aw
-aw
-aw
-aw
-aw
-dB
-dM
-eh
-dN
-ei
-eZ
-fr
-ei
-fJ
-fz
-fS
-fZ
-Vu
-Ru
-Ru
-Vu
-sl
-Lg
-tC
-tC
-tC
-ym
-Ru
-Ru
-Vu
-ae
-ae
-ae
-wy
-rE
-Ga
-Iq
-wl
-Up
-Vj
-Vj
-Vj
-Vj
-Vj
-VU
-Vu
-Ru
-Ru
-Ru
-Wv
-WJ
-Xv
-XD
-XD
-VI
-Ys
-XD
-YJ
-VI
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cg
-cf
-cf
-cf
-ce
-ap
-iO
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-El
-iO
-"}
-(100,1,1) = {"
-as
-aS
-bi
-bi
-bI
-ca
-cw
-cS
-dd
-cS
-ds
-dB
-dO
-ei
-dN
-ei
-fa
-fr
-ei
-fJ
-ei
-fT
-fZ
-Vu
-Ru
-Ru
-Vu
-DF
-JZ
-JZ
-JZ
-qz
-Vu
-Ru
-Ru
-Vu
-ae
-ae
-ae
-wy
-HQ
-Ga
-nn
-wl
-Up
-Vj
-Vj
-Vj
-Vj
-Vj
-VU
-Vu
-Ru
-Ru
-Ru
-Wv
-WK
-Xw
-XD
-XD
-VI
-Yu
-XD
-YJ
-VI
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cf
-cf
-cf
-ce
-ap
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-iO
-"}
-(101,1,1) = {"
-as
-aS
-bi
-aS
-bJ
-cb
-cx
-cT
-cy
-cT
-dt
-dB
-dP
-ej
-dN
-ei
-eZ
-fr
-ei
-fJ
-fA
-fU
-fZ
-Vu
-YE
-Ru
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Ru
-Zi
-Vu
-ae
-ae
-ae
-wy
-pb
-Ga
-ME
-wl
-Uu
-Vj
-Vj
-Vm
-Vj
-Vj
-XU
-Vu
-Ru
-Ru
-Ru
-Wt
-WE
-Xx
-Zk
-XV
-Yl
-Zs
-Yy
-XD
-VI
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ch
-cg
-cf
-cf
-cf
-ce
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-"}
-(102,1,1) = {"
-as
-aS
-bi
-bt
-bK
-cb
-cy
-cy
-cy
-cT
-dt
-dB
-dN
-ei
-ei
-ei
-eZ
-fr
-ei
-ei
-ei
-fJ
-fZ
-Vu
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Ru
-Vu
-ae
-ae
-ae
-wy
-kr
-Ga
-Cw
-wl
-Up
-Vj
-Vj
-Vm
-Vj
-Vj
-VU
-Vu
-Ru
-Ru
-Zi
-VI
-VI
-VI
-VI
-VI
-VI
-VI
-VI
-Yl
-VI
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cf
-cf
-cf
-ce
-ap
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-"}
-(103,1,1) = {"
-as
-aS
-bi
-aS
-bL
-cb
-cx
-cT
-cy
-cT
-dt
-dB
-dP
-ej
-ej
-ej
-fb
-fs
-fA
-fA
-fA
-fU
-fZ
-Vu
-Ru
-Ru
-MK
-Ru
-Ru
-Ru
-Ru
-MK
-Ru
-Ru
-Ru
-Vu
-ae
-ae
-ae
-wy
-Ct
-Ga
-kh
-wl
-Ur
-Vm
-Vj
-Vj
-Vj
-Vj
-VU
-Vu
-Ru
-Ru
-Ru
-VM
-VQ
-WN
-VZ
-VQ
-VQ
-WH
-ZD
-WW
-Xe
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cg
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(104,1,1) = {"
-as
-aS
-bi
-bi
-bM
-cc
-cz
-cU
-de
-cU
-du
-dB
-aG
-aG
-aR
-aG
-aG
-aG
-aG
-bh
-aG
-aG
-fZ
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-Vu
-ae
-ae
-ae
-wy
-wy
-Ga
-wy
-wl
-Up
-Vj
-Vj
-Vj
-Vj
-Vj
-VU
-TJ
-Ru
-Ru
-Ru
-WB
-VR
-Wb
-Wl
-Wz
-VQ
-WH
-WO
-WW
-Xf
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cg
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(105,1,1) = {"
-as
-ab
-ad
-al
-al
-al
-al
-al
-aC
-al
-ab
-dB
-dK
-dK
-dJ
-dK
-dK
-dK
-dK
-dJ
-dK
-dK
-fZ
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-ae
-ae
-ae
-ae
-wy
-wy
-wy
-wl
-Up
-Vj
-Vj
-Vj
-Vj
-Vj
-VU
-Vw
-Ru
-Ru
-Ru
-VK
-VR
-Wc
-Wm
-Wz
-VQ
-WH
-WP
-WW
-Xg
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(106,1,1) = {"
-as
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-aQ
-dB
-dJ
-dJ
-dJ
-dJ
-dJ
-dJ
-dJ
-dJ
-dJ
-dJ
-fZ
-aq
-uc
-uc
-uc
-uc
-uc
-uc
-uc
-uc
-uc
-uc
-uc
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Vj
-Vj
-Vj
-Vj
-Vj
-VU
-Vu
-YE
-Ru
-Ru
-VL
-VQ
-Wd
-Wd
-VQ
-VQ
-WH
-WQ
-WW
-Xh
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(107,1,1) = {"
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aq
-uc
-ue
-ue
-uf
-ue
-ue
-ue
-uf
-ue
-ue
-uc
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Vj
-Vm
-Vj
-VN
-Vj
-VU
-Vu
-Ru
-Ru
-Ru
-WB
-VQ
-VQ
-VQ
-VQ
-VQ
-WH
-WR
-WW
-Zh
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(108,1,1) = {"
-as
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-dB
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-uc
-uf
-uf
-uf
-uf
-ug
-uf
-uf
-uf
-uf
-uc
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Uu
-Vj
-Vj
-Vj
-Vj
-Vj
-Yt
-Vu
-Ru
-Ru
-Ru
-WB
-VQ
-VZ
-VZ
-VQ
-VQ
-WH
-WV
-WW
-WW
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(109,1,1) = {"
-as
-aT
-bj
-aT
-aT
-aT
-aT
-aT
-aT
-bj
-aT
-dB
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-uc
-ue
-ue
-uf
-ue
-ue
-ue
-uf
-ue
-ue
-uc
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Vj
-Vj
-Vj
-Vm
-Vj
-VU
-Vu
-Ru
-Ru
-Ru
-WB
-VR
-We
-Wo
-Wz
-VQ
-VQ
-VQ
-ZE
-VM
-Xi
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(110,1,1) = {"
-as
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-dB
-dQ
-ek
-dQ
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-ud
-uf
-uf
-uf
-uf
-uf
-uf
-uf
-uf
-uf
-ud
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Us
-Vn
-Vj
-Vj
-Vm
-VO
-VP
-Vu
-Ru
-Ru
-Zi
-WB
-VR
-Wk
-Wu
-Wz
-VQ
-VQ
-VQ
-WZ
-VM
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(111,1,1) = {"
-as
-aT
-aT
-aT
-bj
-aT
-aT
-bj
-aT
-aT
-aT
-dB
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-bc
-bc
-bc
-bQ
-cs
-bc
-cs
-dh
-bc
-bc
-bc
-aq
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Ut
-Us
-Vs
-VB
-Vs
-VP
-Ut
-Vu
-Ru
-Ru
-Ru
-VK
-VQ
-Wd
-Wd
-VQ
-VZ
-VZ
-VQ
-Xa
-VM
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(112,1,1) = {"
-as
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-dB
-dQ
-dQ
-dQ
-eM
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-bc
-bn
-by
-bR
-bn
-cO
-bn
-di
-by
-bc
-bc
-bO
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-wl
-Vo
-Vo
-Vo
-Vo
-Vo
-wl
-Vu
-Ru
-Ru
-Ru
-VL
-VQ
-VQ
-VQ
-VR
-WA
-WI
-Wz
-Xb
-VM
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(113,1,1) = {"
-as
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-dB
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-bc
-bn
-bn
-bR
-bn
-bn
-bn
-di
-bn
-bn
-dE
-bP
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-TZ
-Vi
-Vi
-Vi
-Vi
-Vi
-VX
-Vu
-Ru
-Ru
-Ru
-WB
-VQ
-VQ
-VQ
-VR
-WF
-WL
-Wz
-Xc
-VM
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-cf
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(114,1,1) = {"
-as
-aT
-aT
-aT
-bj
-aT
-aT
-bj
-aT
-aT
-aT
-dB
-dQ
-dQ
-es
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-bc
-bn
-bn
-bR
-bn
-bn
-bn
-di
-bn
-bn
-dE
-bT
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Va
-Vp
-Ut
-Ut
-Ut
-Ut
-VU
-Vu
-YE
-Ru
-Ru
-VM
-VY
-ZC
-VQ
-VQ
-Wd
-Wd
-ZC
-Xd
-VM
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ce
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(115,1,1) = {"
-as
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-dB
-dQ
-dQ
-et
-dQ
-fc
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-bc
-bn
-bn
-bn
-bn
-bn
-bn
-bn
-bn
-bn
-dE
-bP
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Vq
-Ut
-Vr
-Vr
-Ut
-VU
-Vu
-Ru
-Ru
-Ru
-VM
-VM
-VM
-VM
-VM
-VM
-VM
-VM
-VM
-VM
-VM
-ae
-ae
-ae
-ae
-ae
-ae
-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
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(116,1,1) = {"
-as
-aT
-bj
-aT
-aT
-aT
-aT
-aT
-aT
-bj
-aT
-dB
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-bc
-bn
-bz
-bn
-bn
-bn
-bn
-bn
-bz
-bc
-bc
-ck
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Uu
-Ut
-Vt
-Ut
-Ut
-Ut
-XU
-Vu
-Ru
-Ru
-Ru
-Vd
-WS
-WS
-Zl
-XX
-Ym
-Vd
-YB
-YK
-YP
-Vd
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(117,1,1) = {"
-as
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-aT
-dB
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-dQ
-fK
-fR
-fR
-fZ
-aq
-bc
-bc
-bc
-bc
-bc
-bc
-bc
-bc
-bc
-bc
-bc
-ap
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Ut
-Ut
-Ut
-Ut
-VD
-VU
-Vu
-Ru
-Ru
-Ru
-WC
-WT
-WS
-XJ
-XZ
-WS
-Vd
-YC
-YL
-YP
-Vd
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(118,1,1) = {"
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-aq
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Ut
-Vr
-Ut
-Ut
-Ut
-Wh
-Vu
-Ru
-Ru
-Zi
-Ve
-WS
-WS
-XK
-Ya
-WS
-Vd
-YD
-YM
-XN
-Vd
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(119,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dU
-el
-el
-el
-fd
-ft
-fB
-fB
-fB
-fV
-fZ
-aI
-aI
-aI
-ar
-aI
-aI
-aI
-ar
-aI
-aI
-aI
-ar
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Ut
-Ut
-Ut
-Ut
-Ut
-VU
-TJ
-Ru
-Ru
-Ru
-Xk
-WS
-WS
-XM
-XZ
-WS
-Vd
-YC
-YN
-YQ
-Vd
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(120,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dV
-em
-em
-em
-fe
-fu
-em
-em
-em
-fW
-dB
-ga
-ga
-ga
-dB
-gN
-gO
-gO
-dB
-hx
-hx
-hx
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Vr
-Ut
-Ut
-Ut
-Ut
-VU
-Vw
-Ru
-Ru
-Ru
-Xm
-WS
-WS
-XN
-Yb
-Zq
-Vd
-Zx
-XZ
-YT
-Vd
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(121,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dV
-em
-em
-em
-fe
-fu
-em
-em
-em
-fW
-dB
-gb
-ga
-gq
-dB
-gO
-gO
-gP
-dB
-hy
-hJ
-hO
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Ut
-Ut
-VD
-Ut
-Vr
-VV
-Vu
-Ru
-Ru
-Ru
-Xn
-WS
-WS
-WS
-WS
-WS
-Vd
-XN
-WS
-YU
-Vd
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-ML
-ML
-ML
-ML
-ML
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(122,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dV
-em
-em
-em
-fe
-fu
-em
-em
-em
-fW
-dB
-gc
-ga
-gc
-dB
-gO
-gO
-gO
-dB
-hz
-hK
-hP
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Ut
-Ut
-Ut
-Ut
-Ut
-VU
-Vu
-YE
-Ru
-Ru
-WC
-WT
-WS
-WS
-WS
-WS
-Vd
-Vd
-Yw
-Vd
-Vd
-Vd
-Vd
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(123,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dV
-em
-em
-em
-fe
-fu
-em
-em
-em
-fW
-dB
-gd
-ga
-ga
-dB
-gO
-gN
-gO
-dB
-hz
-hK
-hP
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Uu
-Ut
-Vr
-Ut
-Ut
-Ut
-XU
-Vu
-Ru
-Ru
-Ru
-WC
-WT
-WS
-WS
-WS
-WS
-Vd
-Ym
-WS
-WS
-WS
-WS
-Zf
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(124,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dV
-em
-em
-em
-fe
-fu
-em
-em
-em
-fW
-dB
-gc
-ga
-gq
-dB
-gO
-gO
-gO
-dB
-hA
-hL
-hQ
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Up
-Ut
-Ut
-Ut
-Ut
-VD
-VU
-Vu
-Ru
-Ru
-Ru
-WC
-WT
-WS
-WS
-WS
-WS
-Yv
-WS
-WS
-WS
-YY
-WS
-WS
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(125,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dW
-en
-en
-en
-ff
-fv
-fC
-fC
-fC
-fX
-dB
-gc
-ga
-gc
-dB
-gP
-gO
-gO
-dB
-hx
-hx
-hx
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Us
-Vn
-Ut
-VE
-Ut
-VO
-VP
-Vu
-Ru
-Ru
-Ru
-Vd
-WS
-WS
-Zn
-WS
-WS
-WS
-WS
-WS
-WS
-YZ
-WS
-Zq
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(126,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-aH
-aH
-aX
-aH
-aH
-aH
-aH
-br
-aH
-aH
-fZ
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-ar
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-Ut
-Us
-Vs
-VF
-Vs
-VP
-Ut
-Vu
-Ru
-Ru
-Zi
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-YF
-WS
-WS
-WS
-WS
-WS
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(127,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dS
-dS
-dR
-dS
-dS
-dS
-dS
-dR
-dS
-dS
-dB
-ge
-gl
-gr
-dB
-gQ
-gR
-gQ
-dB
-hB
-hD
-hD
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-wl
-wl
-Vo
-Vo
-Vo
-Vo
-Vo
-wl
-Vu
-Ru
-Ru
-Ru
-Vd
-WU
-Xy
-XP
-Yc
-Yc
-Vd
-Zy
-WS
-WS
-WS
-WS
-WS
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(128,1,1) = {"
-as
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-aU
-dB
-dR
-dR
-dR
-dR
-dR
-dR
-dR
-dR
-dR
-dR
-dB
-gf
-gl
-gr
-dB
-gR
-gQ
-gR
-dB
-hC
-hC
-hC
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-Vk
-Vk
-Vk
-Vk
-Vk
-Vk
-Vk
-Vk
-Uv
-Ru
-Ru
-Ru
-Vd
-Xj
-Xz
-XQ
-Yh
-Yc
-Vd
-YH
-WS
-WS
-Zb
-WS
-WS
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(129,1,1) = {"
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-aL
-as
-gg
-gl
-gr
-dB
-gQ
-hg
-gQ
-dB
-hD
-hD
-hD
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-Vk
-Vc
-Vz
-Vc
-Vc
-Vz
-Vc
-Wi
-YR
-Ru
-Ru
-Ru
-Vd
-Zj
-XA
-XR
-Yj
-Zr
-Yg
-WS
-WS
-WS
-Zc
-WS
-WS
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-In
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(130,1,1) = {"
-as
-aY
-bk
-bk
-bk
-bk
-cA
-cA
-cA
-cA
-dv
-dB
-dX
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dB
-gh
-gl
-gr
-dB
-gR
-gQ
-gR
-dB
-hD
-hD
-hD
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-Vk
-Vc
-Vc
-Vc
-Vc
-Vc
-Vc
-Vk
-UE
-Ru
-Ru
-Ru
-Vd
-Xr
-XB
-YW
-YW
-YW
-Yw
-WS
-WS
-WS
-WS
-WS
-Zq
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(131,1,1) = {"
-as
-aZ
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-dw
-dB
-dX
-dY
-dY
-eo
-eo
-eo
-eo
-dY
-dY
-dY
-dB
-gi
-gl
-gr
-dB
-gQ
-gR
-gQ
-dB
-hE
-hE
-hE
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-Vk
-Vf
-Vk
-Vy
-Vk
-Vy
-Vg
-Vg
-Vg
-Wq
-Ws
-Ws
-Vg
-Vg
-Vg
-WS
-WS
-WS
-Vd
-WS
-WS
-WS
-WS
-WS
-WS
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(132,1,1) = {"
-as
-aZ
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-dw
-dB
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dB
-gf
-gl
-gr
-dB
-gR
-gQ
-gR
-dB
-hD
-hD
-hR
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-Vk
-Vb
-Vk
-Xp
-Vk
-Xp
-Vg
-Wj
-Wp
-Ti
-YG
-Ti
-Wp
-Wj
-Vg
-XS
-Yk
-Yo
-Vd
-Zz
-YO
-YV
-Zd
-Ze
-Zg
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-JL
-jf
-jf
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(133,1,1) = {"
-as
-aZ
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-dw
-dB
-dY
-dY
-dY
-bu
-bA
-bA
-bD
-dY
-eo
-dY
-fZ
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-ar
-aL
-aL
-aL
-ar
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-Vk
-Vk
-Vk
-Vk
-Vk
-Vk
-Vg
-Vg
-Vg
-Wp
-Vg
-Wp
-Vg
-Vg
-Vg
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-Vd
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-zb
-qn
-pF
-qn
-tD
-ML
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-JL
-JL
-JL
-JL
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(134,1,1) = {"
-as
-aZ
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-dw
-dB
-dY
-eo
-dY
-bw
-bs
-bs
-bE
-dY
-eo
-dY
-dB
-gj
-gk
-gs
-dB
-gS
-gS
-gS
-dB
-hF
-hF
-hF
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Vg
-Wj
-Vg
-Wj
-Vg
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-ML
-zb
-zb
-tD
-tD
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(135,1,1) = {"
-as
-aZ
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-bl
-dw
-dB
-dY
-eo
-dY
-bw
-bs
-bs
-bE
-dY
-eo
-dY
-dB
-gk
-gm
-gk
-dB
-gS
-gS
-gS
-dB
-hF
-hF
-hF
-fZ
-ap
-ap
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-Vg
-Vg
-Vg
-Vg
-Vg
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ae
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(136,1,1) = {"
-as
-ba
-bm
-bm
-bm
-bm
-cB
-cB
-cB
-cB
-dx
-dB
-dY
-eo
-dY
-bx
-bC
-bC
-bF
-dY
-dY
-dY
-dB
-gk
-gn
-gk
-dB
-gS
-gS
-gS
-dB
-hF
-hF
-hF
-fZ
-ap
-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
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(137,1,1) = {"
-as
-ac
-ac
-am
-ac
-ac
-ac
-ac
-aD
-ac
-ac
-dB
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dB
-gk
-go
-gk
-dB
-gS
-gS
-gS
-dB
-hF
-hF
-hF
-fZ
-ap
-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
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(138,1,1) = {"
-as
-aW
-aW
-aV
-aW
-aW
-aW
-aW
-aV
-aW
-aW
-dB
-dY
-dY
-dY
-eo
-eo
-eo
-eo
-dY
-dY
-fY
-dB
-gk
-gk
-gk
-dB
-gS
-gS
-gS
-dB
-hF
-hF
-hF
-fZ
-ap
-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
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(139,1,1) = {"
-as
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-aV
-dB
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-dY
-fY
-dB
-gk
-gk
-gt
-dB
-gS
-gS
-gS
-dB
-hF
-hF
-hF
-fZ
-ap
-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
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-qn
-oI
-ap
-Jz
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-jf
-Jz
-"}
-(140,1,1) = {"
-ar
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-ar
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-bb
-ar
-bb
-bb
-bb
-ar
-bb
-bb
-bb
-ar
-bb
-bb
-bb
-ar
-ap
-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
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-oI
-ap
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-Jz
-"}
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/obj/machinery/vending/coffee,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"ab" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-10"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"ac" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"ad" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"ae" = (
+/turf/unsimulated/mineral/virgo3b,
+/area/space)
+"af" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_l"
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry{
+ dir = 1
+ },
+/area/shuttle/supply)
+"ag" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"ah" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 1;
+ name = "Jury Box"
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"ai" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry{
+ dir = 1
+ },
+/area/shuttle/supply)
+"aj" = (
+/obj/structure/sign/warning{
+ name = "\improper STAND AWAY FROM TRACK EDGE"
+ },
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"ak" = (
+/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)
+"al" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"am" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 8;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_emptycourt)
+"an" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"ao" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"ap" = (
+/turf/space,
+/area/space)
+"aq" = (
+/obj/effect/step_trigger/teleporter/random,
+/turf/space,
+/area/space)
+"ar" = (
+/turf/unsimulated/wall,
+/area/space)
+"as" = (
+/obj/structure/window/reinforced,
+/turf/unsimulated/wall,
+/area/space)
+"at" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"au" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet/corners{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"av" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"aw" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"ax" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"ay" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"az" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"aA" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"aB" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"aC" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"aD" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_emptycourt)
+"aE" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"aF" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/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)
+"aG" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"aH" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"aI" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/unsimulated/wall,
+/area/space)
+"aJ" = (
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_desert)
+"aK" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_desert)
+"aL" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/wall,
+/area/space)
+"aM" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"aN" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"aO" = (
+/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)
+"aP" = (
+/obj/effect/landmark/costume,
+/obj/structure/table/rack/holorack,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_theatre)
+"aQ" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_courtroom)
+"aR" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 8;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_basketball)
+"aS" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"aT" = (
+/turf/simulated/floor/holofloor/reinforced,
+/area/holodeck/source_wildlife)
+"aU" = (
+/turf/simulated/floor/holofloor/reinforced,
+/area/holodeck/source_plating)
+"aV" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_emptycourt)
+"aW" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"aX" = (
+/obj/machinery/door/window/holowindoor{
+ dir = 8;
+ name = "Red Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_thunderdomecourt)
+"aY" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"aZ" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"ba" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"bb" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/unsimulated/wall,
+/area/space)
+"bc" = (
+/turf/simulated/shuttle/wall,
+/area/shuttle/supply)
+"bd" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_desert)
+"be" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bf" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bg" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_theatre)
+"bh" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_basketball)
+"bi" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bj" = (
+/obj/effect/landmark{
+ name = "Holocarp Spawn"
+ },
+/turf/simulated/floor/holofloor/reinforced,
+/area/holodeck/source_wildlife)
+"bk" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"bl" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"bm" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"bn" = (
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"bo" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bp" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bq" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"br" = (
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Green Team"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_thunderdomecourt)
+"bs" = (
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bt" = (
+/obj/structure/bed/chair/holochair,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bu" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 1
+ },
+/obj/structure/fitness/boxing_turnbuckle{
+ dir = 8;
+ layer = 3.4
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bv" = (
+/obj/structure/window/reinforced/holowindow{
+ dir = 1
+ },
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bw" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 1
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bx" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 1
+ },
+/obj/structure/fitness/boxing_turnbuckle{
+ dir = 4;
+ layer = 3.4
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"by" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"bz" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"bA" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 8
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bB" = (
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"bC" = (
+/obj/structure/fitness/boxing_ropes{
+ dir = 4
+ },
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bD" = (
+/obj/structure/fitness/boxing_turnbuckle{
+ dir = 8
+ },
+/obj/structure/fitness/boxing_ropes_bottom,
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bE" = (
+/obj/structure/fitness/boxing_ropes_bottom,
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bF" = (
+/obj/structure/fitness/boxing_turnbuckle{
+ dir = 4
+ },
+/obj/structure/fitness/boxing_ropes_bottom,
+/turf/simulated/fitness,
+/area/holodeck/source_boxingcourt)
+"bG" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_theatre)
+"bH" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"bI" = (
+/obj/structure/window/reinforced/holowindow,
+/obj/machinery/door/window/holowindoor{
+ dir = 1;
+ name = "Court Reporter's Box"
+ },
+/obj/structure/bed/chair/holochair,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bJ" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow,
+/obj/structure/window/reinforced/holowindow{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bK" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bL" = (
+/obj/structure/table/woodentable/holotable,
+/obj/structure/window/reinforced/holowindow,
+/obj/structure/window/reinforced/holowindow{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bM" = (
+/obj/structure/window/reinforced/holowindow,
+/obj/machinery/door/window/holowindoor{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "Witness Box"
+ },
+/obj/structure/bed/chair/holochair,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_courtroom)
+"bN" = (
+/obj/effect/landmark/ai_multicam_room,
+/turf/unsimulated/ai_visible,
+/area/ai_multicam_room)
+"bO" = (
+/obj/structure/shuttle/engine/propulsion,
+/obj/effect/shuttle_landmark{
+ base_area = /area/space;
+ base_turf = /turf/space;
+ landmark_tag = "supply_cc";
+ name = "Centcom Supply Depot"
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry{
+ dir = 1
+ },
+/area/shuttle/supply)
+"bP" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_r"
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry{
+ dir = 1
+ },
+/area/shuttle/supply)
+"bQ" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "supply_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/supply)
+"bR" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"bS" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/source_picnicarea)
+"bT" = (
+/turf/simulated/shuttle/wall/alien/hard_corner,
+/area/unknown/dorm3)
+"bU" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"bV" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_theatre)
+"bW" = (
+/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_theatre)
+"bX" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"bY" = (
+/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_theatre)
+"bZ" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"ca" = (
+/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_courtroom)
+"cb" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cc" = (
+/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_courtroom)
+"cd" = (
+/turf/unsimulated/wall,
+/area/ai_multicam_room)
+"ce" = (
+/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b,
+/turf/space/transit/south,
+/area/space)
+"cf" = (
+/turf/space/transit/south,
+/area/space)
+"cg" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_leftnostop"
+ },
+/turf/space/transit/south,
+/area/space)
+"ch" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/east;
+ landmark_tag = "belter_transit";
+ name = "Belter Transit"
+ },
+/turf/space/transit/south,
+/area/space)
+"ci" = (
+/turf/unsimulated/ai_visible,
+/area/ai_multicam_room)
+"cj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/space)
+"ck" = (
+/turf/simulated/shuttle/wall/alien,
+/area/unknown/dorm3)
+"cl" = (
+/obj/machinery/door/airlock/alien/public,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"cm" = (
+/obj/item/toy/chess/pawn_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"cn" = (
+/obj/item/weapon/bedsheet/rddouble,
+/obj/structure/bed/double/padded,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"co" = (
+/obj/structure/prop/alien/computer{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"cp" = (
+/obj/structure/table/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"cq" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"cr" = (
+/turf/simulated/shuttle/wall/alien/blue/hard_corner,
+/area/unknown/dorm5)
+"cs" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "supply_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"ct" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"cu" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"cv" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"cw" = (
+/obj/structure/table/woodentable/holotable,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cx" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cy" = (
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cz" = (
+/obj/structure/table/woodentable/holotable,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cA" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"cB" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"cC" = (
+/turf/simulated/shuttle/wall/alien/blue,
+/area/unknown/dorm5)
+"cD" = (
+/turf/simulated/shuttle/wall/alien/blue/hard_corner,
+/area/unknown/dorm6)
+"cE" = (
+/turf/simulated/shuttle/wall/alien/blue,
+/area/unknown/dorm6)
+"cF" = (
+/obj/machinery/recharge_station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"cG" = (
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"cH" = (
+/obj/structure/toilet,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"cI" = (
+/obj/machinery/shower{
+ pixel_y = 13
+ },
+/obj/structure/curtain/open/shower,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"cJ" = (
+/obj/machinery/recharge_station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"cK" = (
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"cL" = (
+/obj/structure/toilet,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"cM" = (
+/obj/machinery/shower{
+ pixel_y = 13
+ },
+/obj/structure/curtain/open/shower,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"cN" = (
+/obj/machinery/door/airlock/alien/blue/public,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"cO" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1380;
+ id_tag = "supply_shuttle";
+ pixel_x = -25;
+ req_one_access = list(13,31);
+ tag_door = "supply_shuttle_hatch"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"cP" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"cQ" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"cR" = (
+/obj/machinery/door/airlock/alien/blue/public,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"cS" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cT" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cU" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"cV" = (
+/obj/machinery/sleeper/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"cW" = (
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"cX" = (
+/obj/structure/fans,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"cY" = (
+/obj/machinery/smartfridge/survival_pod,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"cZ" = (
+/obj/machinery/sleeper/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"da" = (
+/obj/structure/flora/ausbushes/brflowers,
+/obj/effect/floor_decal/spline/fancy/wood/corner{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/source_picnicarea)
+"db" = (
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"dc" = (
+/obj/structure/fans,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"dd" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"de" = (
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"df" = (
+/obj/machinery/smartfridge/survival_pod,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"dg" = (
+/turf/unsimulated/wall{
+ icon = 'icons/turf/transit_vr.dmi'
+ },
+/area/space)
+"dh" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "supply_shuttle_hatch";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/supply)
+"di" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/turf/simulated/shuttle/floor,
+/area/shuttle/supply)
+"dj" = (
+/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_theatre)
+"dk" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"dl" = (
+/obj/structure/holostool,
+/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_theatre)
+"dm" = (
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"dn" = (
+/obj/structure/table/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"do" = (
+/obj/structure/table/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"dp" = (
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"dq" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06"
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_theatre)
+"dr" = (
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 6
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 10
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_theatre)
+"ds" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/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)
+"dt" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_courtroom)
+"du" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/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)
+"dv" = (
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"dw" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"dx" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_emptycourt)
+"dy" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Unknown";
+ tele_network = "unkfive"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"dz" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/hopdouble,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"dA" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/wall,
+/area/space)
+"dB" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/unsimulated/wall,
+/area/space)
+"dC" = (
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"dD" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch_station";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"dE" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/airless,
+/area/shuttle/supply)
+"dF" = (
+/turf/simulated/floor/holofloor/space,
+/area/holodeck/source_space)
+"dG" = (
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"dH" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_meetinghall)
+"dI" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-06"
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_meetinghall)
+"dJ" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_basketball)
+"dK" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dL" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Unknown";
+ tele_network = "unksix"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"dM" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dN" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dO" = (
+/obj/structure/holohoop,
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dP" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"dQ" = (
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"dR" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_thunderdomecourt)
+"dS" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"dT" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/hopdouble,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"dU" = (
+/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)
+"dV" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/clothing/suit/armor/tdome/red,
+/obj/item/clothing/under/color/red,
+/obj/item/weapon/holo/esword/red,
+/obj/effect/floor_decal/corner/red{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"dW" = (
+/obj/structure/table/holotable,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"dX" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"dY" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"dZ" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"ea" = (
+/obj/structure/prop/alien/computer/hybrid{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"eb" = (
+/obj/structure/prop/alien/dispenser,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"ec" = (
+/obj/effect/landmark{
+ name = "Holocarp Spawn Random"
+ },
+/turf/simulated/floor/holofloor/space,
+/area/holodeck/source_space)
+"ed" = (
+/obj/structure/flora/grass/both,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"ee" = (
+/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)
+"ef" = (
+/obj/effect/floor_decal/carpet,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"eg" = (
+/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)
+"eh" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"ei" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"ej" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"ek" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"el" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"em" = (
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"en" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"eo" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_boxingcourt)
+"ep" = (
+/obj/structure/flora/tree/pine,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"eq" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_meetinghall)
+"er" = (
+/obj/structure/prop/alien/computer/hybrid{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"es" = (
+/obj/item/clothing/glasses/sunglasses,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"et" = (
+/obj/effect/overlay/palmtree_l,
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"eu" = (
+/obj/structure/prop/alien/dispenser,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"ev" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"ew" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"ex" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"ey" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"ez" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"eA" = (
+/obj/structure/table/alien/blue,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm5)
+"eB" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"eC" = (
+/obj/structure/table/alien/blue,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm6)
+"eD" = (
+/obj/effect/floor_decal/sign/small_4,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"eE" = (
+/obj/machinery/telecomms/relay/preset/tether,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"eF" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/unknown/dorm5)
+"eG" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"eH" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"eI" = (
+/obj/structure/prop/alien/power,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm5)
+"eJ" = (
+/obj/structure/flora/tree/dead,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"eK" = (
+/turf/simulated/floor/holofloor/lino,
+/area/holodeck/source_meetinghall)
+"eL" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/source_meetinghall)
+"eM" = (
+/obj/item/weapon/beach_ball,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"eN" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/unknown/dorm6)
+"eO" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"eP" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"eQ" = (
+/obj/structure/prop/alien/power,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm6)
+"eR" = (
+/obj/machinery/telecomms/allinone/ert,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"eS" = (
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"eT" = (
+/obj/structure/flora/grass/green,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"eU" = (
+/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)
+"eV" = (
+/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)
+"eW" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"eX" = (
+/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)
+"eY" = (
+/obj/effect/floor_decal/corner/red/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"eZ" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fa" = (
+/obj/item/weapon/beach_ball/holoball,
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fb" = (
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fc" = (
+/obj/item/weapon/inflatable_duck,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/source_beach)
+"fd" = (
+/obj/structure/window/reinforced/holowindow/disappearing,
+/obj/effect/floor_decal/corner/red/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fe" = (
+/obj/structure/window/reinforced/holowindow/disappearing,
+/obj/effect/floor_decal/corner/red{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"ff" = (
+/obj/structure/window/reinforced/holowindow/disappearing,
+/obj/effect/floor_decal/corner/red/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fg" = (
+/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,
+/turf/space/transit/north,
+/area/space)
+"fn" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fo" = (
+/obj/structure/holostool,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fp" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fq" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fr" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fs" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"ft" = (
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fu" = (
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fv" = (
+/obj/structure/window/reinforced/holowindow/disappearing{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green/full{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fz" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fA" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fB" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fC" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fG" = (
+/obj/structure/flora/grass/brown,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/source_snowfield)
+"fH" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet{
+ dir = 8
+ },
+/area/holodeck/source_meetinghall)
+"fJ" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fK" = (
+/turf/unsimulated/beach/sand{
+ icon_state = "beach"
+ },
+/area/holodeck/source_beach)
+"fO" = (
+/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)
+"fP" = (
+/obj/structure/holostool,
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/source_meetinghall)
+"fQ" = (
+/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)
+"fR" = (
+/turf/simulated/floor/holofloor/beach/water,
+/area/holodeck/source_beach)
+"fS" = (
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fT" = (
+/obj/structure/holohoop{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fU" = (
+/obj/effect/floor_decal/corner/green/full{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_basketball)
+"fV" = (
+/obj/structure/table/holotable,
+/obj/effect/floor_decal/corner/green/full,
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fW" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/head/helmet/thunderdome,
+/obj/item/clothing/suit/armor/tdome/green,
+/obj/item/clothing/under/color/green,
+/obj/item/weapon/holo/esword/green,
+/obj/effect/floor_decal/corner/green{
+ dir = 10
+ },
+/turf/simulated/floor/holofloor/tiled,
+/area/holodeck/source_thunderdomecourt)
+"fX" = (
+/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)
+"fY" = (
+/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)
+"fZ" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/unsimulated/wall,
+/area/space)
+"ga" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/holodorm/source_basic)
+"gb" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/holodorm/source_basic)
+"gc" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/holodorm/source_basic)
+"gd" = (
+/obj/structure/bed/chair/holochair{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/holodorm/source_basic)
+"ge" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/holodorm/source_beach)
+"gf" = (
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/holodorm/source_beach)
+"gg" = (
+/obj/effect/overlay/coconut,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/holodorm/source_beach)
+"gh" = (
+/obj/item/clothing/glasses/sunglasses,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/holodorm/source_beach)
+"gi" = (
+/obj/effect/overlay/palmtree_l,
+/turf/simulated/floor/holofloor/beach/sand,
+/area/holodeck/holodorm/source_beach)
+"gj" = (
+/obj/structure/flora/grass/brown,
+/obj/structure/flora/tree/dead,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/holodorm/source_snow)
+"gk" = (
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/holodorm/source_snow)
+"gl" = (
+/turf/unsimulated/beach/sand{
+ icon_state = "beach"
+ },
+/area/holodeck/holodorm/source_beach)
+"gm" = (
+/obj/effect/landmark{
+ name = "Wolfgirl Spawn"
+ },
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/holodorm/source_snow)
+"gn" = (
+/obj/structure/flora/grass/brown,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/holodorm/source_snow)
+"go" = (
+/obj/structure/flora/grass/green,
+/obj/structure/flora/tree/pine,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/holodorm/source_snow)
+"gq" = (
+/obj/structure/bed/holobed,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/holodorm/source_basic)
+"gr" = (
+/turf/simulated/floor/holofloor/beach/water,
+/area/holodeck/holodorm/source_beach)
+"gs" = (
+/obj/structure/flora/grass/green,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/holodorm/source_snow)
+"gt" = (
+/obj/structure/flora/grass/both,
+/turf/simulated/floor/holofloor/snow,
+/area/holodeck/holodorm/source_snow)
+"gE" = (
+/obj/structure/closet/hydrant{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"gN" = (
+/obj/structure/flora/ausbushes/fullgrass,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/holodorm/source_desert)
+"gO" = (
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/holodorm/source_desert)
+"gP" = (
+/obj/structure/flora/ausbushes/sparsegrass,
+/turf/simulated/floor/holofloor/desert,
+/area/holodeck/holodorm/source_desert)
+"gQ" = (
+/obj/structure/flora/ausbushes/brflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/holodorm/source_garden)
+"gR" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/holodorm/source_garden)
+"gS" = (
+/turf/simulated/floor/holofloor/reinforced,
+/area/holodeck/holodorm/source_off)
+"gU" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/industrial/danger,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"hg" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/effect/landmark{
+ name = "Catgirl Spawn"
+ },
+/turf/simulated/floor/holofloor/grass,
+/area/holodeck/holodorm/source_garden)
+"hx" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/holodorm/source_seating)
+"hy" = (
+/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/holodorm/source_seating)
+"hz" = (
+/obj/structure/bed/chair/holochair,
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hA" = (
+/obj/effect/floor_decal/carpet{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 5
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hB" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove,
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/holodorm/source_boxing)
+"hC" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/holodorm/source_boxing)
+"hD" = (
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/holodorm/source_boxing)
+"hE" = (
+/obj/effect/floor_decal/corner/green{
+ dir = 6
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/holodorm/source_boxing)
+"hF" = (
+/turf/simulated/floor/holofloor/space,
+/area/holodeck/holodorm/source_space)
+"hJ" = (
+/obj/structure/bed/chair/holochair{
+ dir = 4
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 8
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hK" = (
+/obj/structure/table/woodentable/holotable,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hL" = (
+/obj/structure/bed/chair/holochair{
+ dir = 8
+ },
+/obj/effect/floor_decal/carpet{
+ dir = 4
+ },
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hO" = (
+/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/holodorm/source_seating)
+"hP" = (
+/obj/structure/bed/chair/holochair{
+ dir = 1
+ },
+/obj/effect/floor_decal/carpet,
+/turf/simulated/floor/holofloor/carpet,
+/area/holodeck/holodorm/source_seating)
+"hQ" = (
+/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/holodorm/source_seating)
+"hR" = (
+/obj/structure/table/holotable,
+/obj/item/clothing/gloves/boxing/hologlove{
+ icon_state = "boxinggreen";
+ item_state = "boxinggreen"
+ },
+/turf/simulated/floor/holofloor/tiled/dark,
+/area/holodeck/holodorm/source_boxing)
+"ig" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/obj/effect/transit/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"ih" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"ii" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"in" = (
+/obj/effect/step_trigger/lost_in_space/tram,
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"ix" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"iO" = (
+/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)
+"iU" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"jf" = (
+/turf/space/transit/north,
+/area/space)
+"jr" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"jL" = (
+/obj/effect/step_trigger/lost_in_space/tram,
+/turf/simulated/floor/maglev{
+ icon = 'icons/turf/transit_vr.dmi'
+ },
+/area/space)
+"jQ" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/east;
+ landmark_tag = "specops_transit";
+ name = "Specops Transit"
+ },
+/turf/space/transit/west,
+/area/space)
+"kn" = (
+/obj/structure/fake_stairs/north/bottom{
+ _stair_tag = "stairtest"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"kr" = (
+/obj/machinery/telecomms/server/presets/centcomm,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"kw" = (
+/obj/effect/floor_decal/sign/small_5,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"lf" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"li" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/escape)
+"lE" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"mb" = (
+/obj/effect/step_trigger/lost_in_space/tram,
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"mF" = (
+/obj/effect/shuttle_landmark{
+ base_area = null;
+ base_turf = null;
+ docking_controller = null;
+ landmark_tag = "escape_transit";
+ name = "Escape Transit"
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"nj" = (
+/obj/item/toy/chess/rook_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"nn" = (
+/obj/machinery/telecomms/allinone/antag{
+ intercept = 1
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"nB" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"nC" = (
+/obj/structure/table/standard,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = 32
+ },
+/obj/item/toy/nanotrasenballoon,
+/obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"nV" = (
+/obj/item/toy/chess/rook_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"nW" = (
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"oI" = (
+/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b,
+/turf/space/transit/east,
+/area/space)
+"oT" = (
+/obj/item/toy/chess/pawn_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"pb" = (
+/obj/machinery/telecomms/processor/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"pf" = (
+/obj/effect/floor_decal/sign/small_8,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"pk" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"pv" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch_offsite";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"pF" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/east;
+ landmark_tag = "escapepod1_transit";
+ name = "Escapepod 1 Transit"
+ },
+/turf/space/transit/east,
+/area/space)
+"pT" = (
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"pX" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/simulated/terminal)
+"qc" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"qn" = (
+/turf/space/transit/east,
+/area/space)
+"qv" = (
+/obj/effect/floor_decal/sign/small_h,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"qz" = (
+/turf/space,
+/turf/space/internal_edge/bottomright,
+/area/space)
+"qV" = (
+/obj/effect/floor_decal/sign/small_6,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"qY" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"rh" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"ru" = (
+/obj/item/toy/chess/pawn_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"rE" = (
+/obj/machinery/telecomms/bus/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"sb" = (
+/obj/item/toy/chess/knight_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"sl" = (
+/turf/space/internal_edge/top,
+/area/space)
+"sp" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"sx" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/simulated/terminal)
+"sF" = (
+/obj/effect/overmap/bluespace_rift,
+/turf/unsimulated/map,
+/area/overmap)
+"sN" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
+/obj/effect/transit/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"sT" = (
+/obj/structure/closet/hydrant{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"ti" = (
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"tp" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"tu" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"tC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/space)
+"tD" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space/transit/east,
+/area/space)
+"tH" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
+/obj/effect/transit/light{
+ dir = 8
+ },
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"tS" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"uc" = (
+/turf/unsimulated/wall,
+/area/centcom/suppy)
+"ud" = (
+/obj/machinery/status_display/supply_display,
+/turf/unsimulated/wall,
+/area/centcom/suppy)
+"ue" = (
+/obj/structure/closet/crate,
+/turf/unsimulated/floor{
+ dir = 1;
+ icon_state = "vault"
+ },
+/area/centcom/suppy)
+"uf" = (
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/suppy)
+"ug" = (
+/obj/item/weapon/paper{
+ info = "You're not supposed to be here.";
+ name = "unnerving letter"
+ },
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/centcom/suppy)
+"uG" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"uM" = (
+/obj/item/toy/chess/knight_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"vu" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/escape)
+"vz" = (
+/obj/effect/floor_decal/industrial/outline/blue,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"vW" = (
+/obj/effect/floor_decal/sign/small_a,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"wa" = (
+/obj/effect/floor_decal/sign/small_3,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"wd" = (
+/obj/structure/sign/warning/nosmoking_2,
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"wh" = (
+/obj/item/toy/chess/knight_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"wj" = (
+/turf/space/internal_edge/left,
+/area/space)
+"wl" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/evac)
+"wn" = (
+/obj/structure/fake_stairs/south/top{
+ _stair_tag = "stairtest"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"wy" = (
+/turf/unsimulated/wall,
+/area/centcom/control)
+"wZ" = (
+/turf/unsimulated/floor{
+ icon_state = "sandwater"
+ },
+/area/beach)
+"xe" = (
+/obj/machinery/account_database{
+ dir = 1;
+ name = "CentComm Accounts database"
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"xi" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
+ },
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"xl" = (
+/obj/structure/table/standard,
+/obj/random/maintenance/clean,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"xM" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"ya" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ direction = 4;
+ name = "thrower_escapeshuttletop(right)";
+ tiles = 0
+ },
+/turf/simulated/sky/virgo3b/south,
+/area/space)
+"ym" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"yA" = (
+/obj/machinery/telecomms/receiver/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"yK" = (
+/obj/machinery/door/airlock/multi_tile/metal,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"yU" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"zb" = (
+/obj/effect/step_trigger/thrower{
+ direction = 1;
+ name = "thrower_throwup";
+ tiles = 0
+ },
+/turf/space/transit/east,
+/area/space)
+"zv" = (
+/obj/effect/transit/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"zw" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch_offsite";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"zH" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/simulated/terminal)
+"zK" = (
+/obj/machinery/door/blast/regular{
+ dir = 4
+ },
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"Al" = (
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Av" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/floor/maglev{
+ icon = 'icons/turf/transit_vr.dmi'
+ },
+/area/space)
+"Ax" = (
+/turf/unsimulated/beach/coastline{
+ density = 1;
+ opacity = 1
+ },
+/area/beach)
+"Az" = (
+/turf/unsimulated/beach/coastline,
+/area/beach)
+"AD" = (
+/obj/effect/floor_decal/borderfloor/corner,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Bm" = (
+/obj/item/toy/chess/bishop_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"Bs" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "escape_shuttle_hatch_station";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Bw" = (
+/turf/unsimulated/beach/water,
+/area/beach)
+"BD" = (
+/obj/effect/overlay/palmtree_r,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"BG" = (
+/obj/item/toy/chess/king_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"BK" = (
+/turf/space,
+/turf/space/internal_edge/bottomleft,
+/area/space)
+"Cd" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Cn" = (
+/turf/simulated/sky/virgo3b/south,
+/area/space)
+"Cp" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/shuttle_landmark{
+ base_area = /area/centcom/simulated/terminal;
+ base_turf = /turf/simulated/floor/tiled/techfloor/grid;
+ docking_controller = null;
+ landmark_tag = "escape_cc";
+ name = "Escape Centcom"
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/escape)
+"Ct" = (
+/obj/machinery/ntnet_relay,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"Cw" = (
+/obj/machinery/r_n_d/server/centcom,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"Cy" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"CG" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"CJ" = (
+/obj/item/toy/chess/pawn_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"CK" = (
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"Di" = (
+/obj/effect/floor_decal/sign/small_2,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"Dk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/space)
+"Dm" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Dn" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Dw" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/food/snacks/chips,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"DF" = (
+/turf/space,
+/turf/space/internal_edge/topright,
+/area/space)
+"DI" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"DL" = (
+/obj/effect/floor_decal/sign/small_b,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"El" = (
+/turf/space/transit/west,
+/area/space)
+"Eo" = (
+/obj/effect/floor_decal/sign/small_g,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"Et" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"ET" = (
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/simulated/terminal)
+"EX" = (
+/obj/item/toy/chess/bishop_black,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"Fa" = (
+/obj/structure/table/standard,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"Fe" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/escape)
+"Fp" = (
+/turf/simulated/floor/maglev,
+/area/centcom/simulated/terminal)
+"Ft" = (
+/obj/effect/transit/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"FH" = (
+/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)
+"FJ" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"FT" = (
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"FX" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/obj/effect/transit/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"FY" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Ga" = (
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"Gq" = (
+/turf/unsimulated/wall,
+/area/beach)
+"Gs" = (
+/turf/space,
+/turf/space/transit/north,
+/area/space)
+"Gw" = (
+/obj/effect/overlay/palmtree_l,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"GW" = (
+/obj/item/toy/chess/king_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"Hf" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/north;
+ landmark_tag = "ninja_transit";
+ name = "Ninja Transit"
+ },
+/turf/space/transit/north,
+/area/space)
+"Hk" = (
+/obj/effect/floor_decal/sign/small_7,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"Hr" = (
+/obj/item/toy/chess/rook_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"Hy" = (
+/turf/unsimulated/mineral{
+ icon = 'icons/turf/transit_vr.dmi';
+ icon_state = "rock"
+ },
+/area/space)
+"HL" = (
+/obj/effect/floor_decal/sign/small_1,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"HQ" = (
+/obj/machinery/telecomms/broadcaster/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"HW" = (
+/obj/machinery/status_display{
+ pixel_y = -30
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"HX" = (
+/obj/structure/table/standard,
+/obj/structure/closet/walllocker/medical/west,
+/obj/item/weapon/storage/firstaid,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Ic" = (
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Ik" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/obj/item/weapon/reagent_containers/food/drinks/cans/cola,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"In" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/space/transit/north;
+ landmark_tag = "skipjack_transit";
+ name = "Skipjack Transit"
+ },
+/turf/space/transit/north,
+/area/space)
+"Iq" = (
+/obj/machinery/telecomms/hub/preset_cent,
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"IN" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"IR" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/sky/virgo3b/south,
+/area/space)
+"Jc" = (
+/obj/item/toy/chess/bishop_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"Jq" = (
+/obj/structure/sign/warning/docking_area,
+/turf/unsimulated/wall,
+/area/centcom/simulated/terminal)
+"Jw" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Jx" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"Jz" = (
+/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)
+"JI" = (
+/obj/item/toy/chess/rook_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"JL" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space/transit/north,
+/area/space)
+"JR" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "TelelockdownC";
+ name = "Security Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"JW" = (
+/turf/unsimulated/beach/water{
+ density = 1;
+ opacity = 1
+ },
+/area/beach)
+"JZ" = (
+/turf/space/internal_edge/right,
+/area/space)
+"Kj" = (
+/obj/effect/shuttle_landmark/transit{
+ base_area = /area/space;
+ base_turf = /turf/simulated/sky/virgo3b/south;
+ landmark_tag = "tether_backup_transit";
+ name = "Tether Backup Transit"
+ },
+/turf/simulated/sky/virgo3b/south,
+/area/space)
+"Kn" = (
+/obj/effect/floor_decal/sign/small_d,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"KQ" = (
+/obj/effect/floor_decal/sign/small_f,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"Lg" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/steel,
+/area/space)
+"Lz" = (
+/obj/effect/step_trigger/teleporter/planetary_fall/virgo3b,
+/turf/simulated/sky/virgo3b/south,
+/area/space)
+"LD" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Mb" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"Me" = (
+/turf/simulated/floor/smole/desert,
+/area/holodeck/source_smoleworld)
+"Mf" = (
+/obj/effect/step_trigger/lost_in_space/tram,
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"Mi" = (
+/obj/item/toy/chess/bishop_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"Mq" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"ME" = (
+/obj/machinery/computer/rdservercontrol{
+ badmin = 1;
+ dir = 1;
+ name = "Master R&D Server Controller"
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/control)
+"MK" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"ML" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_leftnostop"
+ },
+/turf/space/transit/east,
+/area/space)
+"Nj" = (
+/obj/item/clothing/head/collectable/paper,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"No" = (
+/obj/item/weapon/beach_ball,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"Nq" = (
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"Nr" = (
+/obj/machinery/cryopod/robot/door/gateway,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Nt" = (
+/turf/unsimulated/beach/sand{
+ density = 1;
+ opacity = 1
+ },
+/area/beach)
+"NA" = (
+/obj/structure/closet/hydrant{
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor/corner,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"NW" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/structure/closet/walllocker/medical/east,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Oj" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ direction = 8;
+ name = "thrower_escapeshuttletop(left)";
+ tiles = 0
+ },
+/turf/simulated/sky/virgo3b/south,
+/area/space)
+"Or" = (
+/obj/item/toy/chess/knight_white,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"OY" = (
+/turf/unsimulated/map,
+/area/overmap)
+"Pe" = (
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/grille,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/escape)
+"Pf" = (
+/obj/structure/table/woodentable{
+ dir = 5
+ },
+/obj/structure/flora/pottedplant{
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"Pg" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Pi" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdown";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/space/transit/west,
+/area/space)
+"Pq" = (
+/turf/simulated/floor/maglev{
+ icon = 'icons/turf/transit_vr.dmi'
+ },
+/area/space)
+"Py" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"PM" = (
+/turf/simulated/floor/smole/megablocks,
+/area/holodeck/source_smoleworld)
+"PU" = (
+/obj/effect/floor_decal/transit/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"Qa" = (
+/obj/structure/table/standard,
+/obj/random/soap,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Qs" = (
+/obj/item/toy/chess/queen_black,
+/turf/simulated/floor/holofloor/bmarble,
+/area/holodeck/source_chess)
+"QY" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-21"
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"Rc" = (
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor/grid,
+/area/centcom/simulated/terminal)
+"Rd" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Re" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Rg" = (
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Ri" = (
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Rk" = (
+/obj/structure/bed/chair/shuttle,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Rm" = (
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Ro" = (
+/obj/structure/closet/hydrant{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Rq" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "TelelockdownC";
+ name = "Security Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Rr" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-22"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"Rs" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Ru" = (
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"Rv" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "TelelockdownC";
+ name = "Security Doors";
+ opacity = 0
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Rz" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"RA" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"RC" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"RD" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"RE" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"RF" = (
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"RG" = (
+/obj/structure/table/standard,
+/obj/effect/floor_decal/borderfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"RV" = (
+/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/sky/virgo3b/south,
+/area/space)
+"RY" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Sh" = (
+/obj/effect/step_trigger/thrower{
+ affect_ghosts = 1;
+ name = "thrower_throwdownside";
+ nostop = 1;
+ stopper = 0;
+ tiles = 0
+ },
+/turf/simulated/floor/tiled/techfloor/grid{
+ icon = 'icons/turf/transit_vr.dmi';
+ initial_flooring = null
+ },
+/area/space)
+"Sl" = (
+/obj/structure/sign/nanotrasen,
+/turf/simulated/wall/thull,
+/area/shuttle/escape)
+"Sm" = (
+/turf/simulated/shuttle/wall/alien/blue/hard_corner,
+/area/unknown/dorm4)
+"Sn" = (
+/turf/simulated/shuttle/wall/alien/blue,
+/area/unknown/dorm4)
+"So" = (
+/obj/machinery/recharge_station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"Sp" = (
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"Sq" = (
+/obj/structure/toilet,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"Sr" = (
+/obj/machinery/shower{
+ pixel_y = 13
+ },
+/obj/structure/curtain/open/shower,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"Ss" = (
+/obj/machinery/door/airlock/alien/blue/public,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"Su" = (
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"Sw" = (
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"Sx" = (
+/obj/structure/fans,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"Sy" = (
+/obj/machinery/light,
+/obj/effect/floor_decal/borderfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/escape)
+"Sz" = (
+/obj/machinery/smartfridge/survival_pod,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SA" = (
+/obj/machinery/sleeper/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SB" = (
+/obj/structure/table/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SC" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Unknown";
+ tele_network = "unkfour"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"SD" = (
+/obj/structure/bed/double/padded,
+/obj/item/weapon/bedsheet/hopdouble,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SE" = (
+/obj/structure/prop/alien/computer/hybrid{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SF" = (
+/obj/structure/prop/alien/dispenser,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SG" = (
+/obj/structure/table/standard,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_x = -32
+ },
+/obj/item/clothing/head/beret/nanotrasen,
+/obj/item/clothing/head/soft/nanotrasen,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"SH" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"SK" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SN" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SO" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SP" = (
+/obj/structure/table/alien/blue,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm4)
+"SQ" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/unknown/dorm4)
+"SR" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"SS" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"ST" = (
+/obj/structure/prop/alien/power,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm4)
+"SV" = (
+/obj/effect/floor_decal/steeldecal/steel_decals5{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"SW" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Transfer";
+ tele_network = "centcom"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"SZ" = (
+/obj/machinery/recharge_station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"Ta" = (
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"Tb" = (
+/obj/structure/toilet,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"Tc" = (
+/obj/machinery/shower{
+ pixel_y = 13
+ },
+/obj/structure/curtain/open/shower,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"Tf" = (
+/obj/machinery/cryopod/robot/door/gateway,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Th" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Ti" = (
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Tj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Tk" = (
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Tl" = (
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Tm" = (
+/obj/structure/fans,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Tn" = (
+/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)
+"To" = (
+/obj/machinery/smartfridge/survival_pod,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Tp" = (
+/obj/machinery/sleeper/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Tq" = (
+/obj/structure/table/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Tr" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Unknown";
+ tele_network = "unkthree"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"Ts" = (
+/obj/effect/overlay/coconut,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"Tv" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"Tx" = (
+/obj/structure/prop/alien/dispenser,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Ty" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"Tz" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"TA" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm3)
+"TC" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/unknown/dorm3)
+"TD" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"TE" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"TF" = (
+/obj/structure/bed/chair,
+/obj/effect/landmark{
+ name = "endgame_exit"
+ },
+/turf/unsimulated/beach/sand,
+/area/beach)
+"TG" = (
+/obj/effect/landmark{
+ name = "endgame_exit"
+ },
+/turf/unsimulated/beach/sand,
+/area/beach)
+"TH" = (
+/obj/structure/prop/alien/power,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm3)
+"TI" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/centcom/simulated/terminal)
+"TJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/multi_tile/glass,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"TK" = (
+/turf/simulated/shuttle/wall/alien/hard_corner,
+/area/unknown/dorm2)
+"TM" = (
+/turf/simulated/shuttle/wall/alien,
+/area/unknown/dorm2)
+"TN" = (
+/obj/machinery/recharge_station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"TP" = (
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"TQ" = (
+/obj/structure/toilet,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"TR" = (
+/obj/machinery/shower{
+ pixel_y = 13
+ },
+/obj/structure/curtain/open/shower,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"TS" = (
+/obj/machinery/door/airlock/alien/public,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"TT" = (
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"TU" = (
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"TV" = (
+/obj/structure/fans,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"TW" = (
+/obj/machinery/smartfridge/survival_pod,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"TX" = (
+/obj/machinery/sleeper/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"TY" = (
+/obj/machinery/door/firedoor,
+/turf/unsimulated/floor/steel,
+/area/centcom/simulated/terminal)
+"TZ" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Ua" = (
+/obj/structure/table/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Ub" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Unknown";
+ tele_network = "unktwo"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"Uc" = (
+/obj/item/weapon/bedsheet/rddouble,
+/obj/structure/bed/double/padded,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Ud" = (
+/obj/structure/prop/alien/computer{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Uf" = (
+/obj/structure/prop/alien/dispenser,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Ug" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Uh" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Ui" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Uj" = (
+/obj/structure/table/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm2)
+"Uk" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/unknown/dorm2)
+"Ul" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"Um" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"Uo" = (
+/obj/structure/prop/alien/power,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm2)
+"Up" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Ur" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Us" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Ut" = (
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Uu" = (
+/obj/effect/floor_decal/industrial/warning/dust,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Uv" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/structure/bed/chair,
+/turf/unsimulated/floor/steel,
+/area/centcom/simulated/main_hall)
+"Uw" = (
+/turf/simulated/shuttle/wall/alien/hard_corner,
+/area/unknown/dorm1)
+"Ux" = (
+/turf/simulated/shuttle/wall/alien,
+/area/unknown/dorm1)
+"Uz" = (
+/obj/machinery/recharge_station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UA" = (
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UC" = (
+/obj/structure/toilet,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UD" = (
+/obj/machinery/shower{
+ pixel_y = 13
+ },
+/obj/structure/curtain/open/shower,
+/obj/effect/floor_decal/steeldecal/steel_decals10{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UE" = (
+/obj/effect/floor_decal/industrial/outline,
+/obj/structure/bed/chair,
+/obj/machinery/status_display{
+ pixel_y = 29
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/simulated/main_hall)
+"UF" = (
+/obj/machinery/door/airlock/alien/public,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UG" = (
+/obj/structure/closet/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UH" = (
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UI" = (
+/obj/structure/fans,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UJ" = (
+/obj/machinery/smartfridge/survival_pod,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu13,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu10,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/menu9,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/storage/mre/random,
+/obj/item/weapon/towel/random,
+/obj/item/weapon/towel/random,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UK" = (
+/obj/machinery/sleeper/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UM" = (
+/obj/structure/table/survival_pod,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UN" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Unknown";
+ tele_network = "unkone"
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UP" = (
+/obj/item/weapon/bedsheet/rddouble,
+/obj/structure/bed/double/padded,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UQ" = (
+/obj/structure/prop/alien/computer{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UR" = (
+/obj/structure/prop/alien/dispenser,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"US" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UT" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UU" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UV" = (
+/obj/structure/table/alien,
+/turf/simulated/shuttle/floor/alien,
+/area/unknown/dorm1)
+"UW" = (
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/voidcraft,
+/area/unknown/dorm1)
+"UX" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UY" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"UZ" = (
+/obj/structure/prop/alien/power,
+/turf/simulated/shuttle/floor/alienplating,
+/area/unknown/dorm1)
+"Va" = (
+/obj/effect/floor_decal/rust/steel_decals_rusted2,
+/obj/effect/floor_decal/industrial/warning/dust,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vb" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/bathroom)
+"Vc" = (
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/bathroom)
+"Vd" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/medical)
+"Ve" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/obj/structure/sign/department/medbay,
+/turf/unsimulated/floor{
+ icon_state = "plating";
+ name = "plating"
+ },
+/area/centcom/simulated/medical)
+"Vf" = (
+/obj/machinery/door/airlock{
+ name = "Unit 4"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/bathroom)
+"Vg" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/living)
+"Vh" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"Vi" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vj" = (
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/large_escape_pod2/centcom{
+ base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b
+ })
+"Vk" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/bathroom)
+"Vl" = (
+/obj/structure/sign/warning{
+ name = "\improper STAND AWAY FROM TRACK EDGE"
+ },
+/turf/unsimulated/wall,
+/area/centcom/simulated/living)
+"Vm" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/large_escape_pod2/centcom{
+ base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b
+ })
+"Vn" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vo" = (
+/obj/machinery/door/blast/regular,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vp" = (
+/obj/effect/floor_decal/rust/part_rusted3,
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vq" = (
+/obj/effect/floor_decal/rust/part_rusted3,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vr" = (
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vs" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vt" = (
+/obj/effect/floor_decal/rust/mono_rusted3,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Vu" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/main_hall)
+"Vv" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/unsimulated/floor/steel,
+/area/centcom/simulated/terminal)
+"Vw" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"Vy" = (
+/obj/machinery/door/airlock{
+ name = "Unit 3"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/bathroom)
+"Vz" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/bathroom)
+"VB" = (
+/obj/effect/floor_decal/sign/dock/one,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VC" = (
+/turf/unsimulated/beach/sand,
+/area/beach)
+"VD" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VE" = (
+/obj/effect/shuttle_landmark{
+ base_area = /area/centcom/simulated/evac;
+ base_turf = /turf/unsimulated/floor/steel;
+ docking_controller = null;
+ landmark_tag = "escapepod1_cc";
+ name = "Centcom Recovery Area"
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VF" = (
+/obj/effect/floor_decal/sign/dock/two,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VI" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"VJ" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/multi_tile/glass,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/restaurant)
+"VL" = (
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/restaurant)
+"VM" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/restaurant)
+"VN" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/turf/simulated/floor/tiled/steel,
+/area/shuttle/large_escape_pod2/centcom{
+ base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b
+ })
+"VO" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VP" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VQ" = (
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"VR" = (
+/obj/structure/bed/chair/wood/wings,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"VS" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VU" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VV" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VW" = (
+/turf/space,
+/turf/space/internal_edge/topleft,
+/area/space)
+"VX" = (
+/obj/effect/floor_decal/industrial/warning/dust/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"VY" = (
+/obj/structure/closet/crate/bin,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"VZ" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wb" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/pastatomato,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wc" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/meatballspagetti,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wd" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"We" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/fries,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wf" = (
+/obj/item/toy/chess/queen_white,
+/turf/simulated/floor/holofloor/wmarble,
+/area/holodeck/source_chess)
+"Wh" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Wi" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/bathroom)
+"Wj" = (
+/obj/effect/blocker,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/living)
+"Wk" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/cheeseburger{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/food/snacks/cheeseburger,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wl" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/kitsuneudon,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wm" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/lasagna,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wo" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/hotdog,
+/obj/item/weapon/reagent_containers/food/snacks/hotdog{
+ pixel_x = -5;
+ pixel_y = -3
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wp" = (
+/obj/machinery/cryopod/robot/door/dorms,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Wq" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/obj/machinery/computer/cryopod/dorms{
+ name = "Company Property Retention System";
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Ws" = (
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 8
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals9{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"Wt" = (
+/obj/machinery/porta_turret/crescent{
+ density = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Wu" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Wv" = (
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Wz" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"WA" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/grilledcheese,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"WB" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/simulated/floor/plating,
+/area/centcom/simulated/restaurant)
+"WC" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/turf/simulated/floor/plating,
+/area/centcom/simulated/medical)
+"WD" = (
+/obj/effect/overlay/palmtree_r,
+/obj/effect/overlay/coconut,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"WE" = (
+/obj/effect/wingrille_spawn/reinforced/crescent,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "FrontlockC2";
+ name = "Security Door";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/plating,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"WF" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/meatballsoup,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"WH" = (
+/obj/item/weapon/stool/padded,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"WI" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/roastbeef,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"WJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/northleft{
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "FrontlockC2";
+ name = "Security Door";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"WK" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/brigdoor/northright{
+ req_access = list(63);
+ req_one_access = list(1)
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "FrontlockC2";
+ name = "Security Door";
+ opacity = 0
+ },
+/obj/machinery/computer/skills,
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"WL" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/meatsteak,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"WN" = (
+/obj/structure/bed/chair/wood/wings{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"WO" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/cola,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"WP" = (
+/obj/structure/table/woodentable,
+/obj/machinery/cash_register/civilian,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"WQ" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"WR" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/snacks/toastedsandwich{
+ pixel_y = 10
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"WS" = (
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"WT" = (
+/obj/structure/bed/chair,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"WU" = (
+/obj/structure/table/standard,
+/obj/item/weapon/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/white,
+/area/centcom/simulated/medical)
+"WV" = (
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"WW" = (
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"WZ" = (
+/obj/machinery/vending/coffee,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Xa" = (
+/obj/machinery/vending/sovietsoda,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Xb" = (
+/obj/machinery/vending/snack,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Xc" = (
+/obj/machinery/vending/cola,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Xd" = (
+/obj/machinery/vending/cigarette,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"Xe" = (
+/obj/machinery/smartfridge/drinks,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"Xf" = (
+/obj/machinery/vending/boozeomat,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"Xg" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/bar_soft/full,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"Xh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/chemical_dispenser/bar_alc/full,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"Xi" = (
+/turf/unsimulated/wall,
+/area/centcom/simulated/bar)
+"Xj" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/firstaid/surgery,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Xk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/multi_tile/glass,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/centcom/simulated/medical)
+"Xl" = (
+/turf/unsimulated/map/edge,
+/area/overmap)
+"Xm" = (
+/obj/machinery/door/firedoor,
+/turf/unsimulated/floor/steel{
+ icon_state = "white"
+ },
+/area/centcom/simulated/medical)
+"Xn" = (
+/obj/structure/sign/greencross,
+/turf/unsimulated/wall,
+/area/centcom/simulated/medical)
+"Xp" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/bathroom)
+"Xr" = (
+/obj/structure/bed/chair,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Xs" = (
+/obj/machinery/computer/card{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ frequency = 1475;
+ name = "Station Intercom (Security)";
+ pixel_y = 27
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Xv" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Xw" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Xx" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Xy" = (
+/obj/structure/table/standard,
+/obj/item/stack/nanopaste,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Xz" = (
+/obj/effect/floor_decal/industrial/loading,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XA" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XB" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XC" = (
+/obj/machinery/computer/secure_data{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"XD" = (
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"XE" = (
+/turf/simulated/wall/thull,
+/area/shuttle/escape)
+"XH" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"XJ" = (
+/obj/structure/table/glass,
+/obj/item/device/healthanalyzer/improved,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XK" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data{
+ icon_keyboard = "laptop_key";
+ icon_screen = "medlaptop";
+ icon_state = "laptop";
+ light_color = "#00b000"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XM" = (
+/obj/structure/table/glass{
+ desc = "It's a table, it has some scracthes..they say 'Mlem'."
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XN" = (
+/obj/structure/table/glass,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XO" = (
+/obj/structure/signpost,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"XP" = (
+/obj/machinery/oxygen_pump/anesthetic,
+/turf/unsimulated/wall,
+/area/centcom/simulated/medical)
+"XQ" = (
+/obj/machinery/optable,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XR" = (
+/obj/machinery/computer/operating{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XS" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XU" = (
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"XV" = (
+/obj/machinery/turretid/stun{
+ check_access = 0;
+ check_anomalies = 0;
+ check_records = 0;
+ control_area = "\improper CentCom Security Arrivals";
+ pixel_x = 32;
+ req_access = list(101);
+ req_one_access = list(101)
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"XW" = (
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/borderfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/escape)
+"XX" = (
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"XY" = (
+/obj/structure/closet,
+/turf/unsimulated/beach/sand,
+/area/beach)
+"XZ" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Ya" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yb" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yc" = (
+/obj/structure/table/standard,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yg" = (
+/obj/structure/sign/department/operational,
+/turf/unsimulated/wall,
+/area/centcom/simulated/medical)
+"Yh" = (
+/obj/effect/floor_decal/industrial/loading{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yj" = (
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 9
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yk" = (
+/obj/structure/medical_stand,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yl" = (
+/obj/machinery/door/airlock/security{
+ name = "Security"
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Ym" = (
+/obj/machinery/vending/medical,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yo" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yr" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microwave{
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Ys" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 4;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Yt" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/industrial/warning/dust{
+ dir = 1
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/evac)
+"Yu" = (
+/obj/machinery/camera/network/crescent,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Yv" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_access = list(5)
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yw" = (
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre";
+ req_access = list(45)
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Yx" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"Yy" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"YB" = (
+/obj/structure/table/standard,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 7;
+ pixel_y = 1
+ },
+/obj/item/weapon/tool/wrench,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YC" = (
+/obj/machinery/atmospherics/unary/cryo_cell,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YD" = (
+/obj/machinery/atmospherics/unary/freezer,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YE" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"YF" = (
+/obj/structure/table/glass,
+/obj/item/device/defib_kit/loaded,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YG" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/living)
+"YH" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/pill_bottle/spaceacillin,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YI" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/gun/energy/taser,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"YJ" = (
+/obj/structure/closet/secure_closet/nanotrasen_security,
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/shield/riot,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"YK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YL" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YN" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YO" = (
+/obj/machinery/computer/transhuman/designer{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YP" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YQ" = (
+/obj/structure/table/glass,
+/obj/machinery/chemical_dispenser/full,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YR" = (
+/turf/unsimulated/floor/steel,
+/area/centcom/simulated/main_hall)
+"YT" = (
+/obj/machinery/chem_master,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YU" = (
+/obj/structure/table/glass,
+/obj/machinery/chemical_dispenser/ert,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YV" = (
+/obj/machinery/transhuman/synthprinter,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YX" = (
+/obj/effect/floor_decal/sign/small_e,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+"YY" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"YZ" = (
+/obj/machinery/body_scanconsole,
+/obj/effect/floor_decal/corner_steel_grid{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zb" = (
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zc" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zd" = (
+/obj/machinery/computer/transhuman/resleeving{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Ze" = (
+/obj/machinery/transhuman/resleever,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zf" = (
+/obj/structure/filingcabinet/chestdrawer{
+ name = "Medical Forms"
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zg" = (
+/obj/machinery/clonepod/transhuman/full,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zh" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"Zi" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/steel,
+/area/centcom/simulated/main_hall)
+"Zj" = (
+/obj/structure/table/standard,
+/obj/item/device/healthanalyzer,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zk" = (
+/obj/structure/table/reinforced,
+/obj/item/device/camera,
+/obj/item/weapon/storage/box/ids,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Zl" = (
+/obj/structure/table/glass,
+/obj/item/weapon/backup_implanter{
+ pixel_y = -8
+ },
+/obj/item/weapon/backup_implanter{
+ pixel_y = 8
+ },
+/obj/item/weapon/backup_implanter,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zn" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zp" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/item/weapon/book/manual/security_space_law,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Zq" = (
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zr" = (
+/obj/structure/table/standard,
+/obj/machinery/light,
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zs" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Zt" = (
+/obj/effect/floor_decal/corner_steel_grid/diagonal,
+/obj/effect/floor_decal/corner_steel_grid/diagonal{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/terminal)
+"Zw" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/centcom/simulated/security{
+ name = "\improper CentCom Security Arrivals"
+ })
+"Zx" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zy" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"Zz" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/biomass{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
+/area/centcom/simulated/medical)
+"ZC" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"ZD" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/grenadine,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/centcom/simulated/bar)
+"ZE" = (
+/obj/machinery/light,
+/turf/simulated/floor/wood,
+/area/centcom/simulated/restaurant)
+"ZQ" = (
+/obj/effect/floor_decal/sign/small_c,
+/turf/simulated/floor/holofloor/wood,
+/area/holodeck/source_chess)
+
+(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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+"}
+(2,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(3,1,1) = {"
+ap
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+ap
+Gq
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Ax
+JW
+JW
+Gq
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(4,1,1) = {"
+ap
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+ap
+Gq
+Nt
+VC
+Gw
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(5,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(6,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+XO
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+Ts
+BD
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(7,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+Ts
+VC
+Nj
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+Uw
+Ux
+Uw
+Ux
+Ux
+Ux
+Ux
+Ux
+Ux
+Uw
+Ux
+Ux
+Uw
+ae
+ae
+ae
+ae
+ae
+Sm
+Sn
+Sm
+Sn
+Sn
+Sn
+Sn
+Sn
+Sn
+Sm
+Sn
+Sn
+Sm
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(8,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+BD
+VC
+TG
+TG
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+Ux
+Uz
+Uw
+UK
+UM
+UG
+UQ
+US
+US
+Uw
+UH
+UW
+Ux
+ae
+ae
+ae
+ae
+ae
+Sn
+So
+Sm
+SA
+SB
+Su
+SE
+SK
+SK
+Sm
+Sw
+SQ
+Sn
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(9,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+Ts
+TG
+Fa
+Dw
+TG
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+Ux
+UA
+UF
+UH
+UA
+UN
+UA
+UA
+UH
+UF
+UH
+UX
+Ux
+ae
+ae
+ae
+ae
+ae
+Sn
+Sp
+Ss
+Sw
+Sp
+SC
+Sp
+Sp
+Sw
+Ss
+Sw
+SR
+Sn
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(10,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+XY
+VC
+VC
+VC
+VC
+TG
+Tn
+Ik
+TG
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+Ux
+UC
+Uw
+UI
+UA
+UA
+UA
+UA
+UU
+Uw
+UH
+UY
+Ux
+ae
+ae
+ae
+ae
+ae
+Sn
+Sq
+Sm
+Sx
+Sp
+Sp
+Sp
+Sp
+SO
+Sm
+Sw
+SS
+Sn
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(11,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+IR
+IR
+IR
+IR
+IR
+IR
+IR
+IR
+IR
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+XY
+VC
+VC
+VC
+VC
+VC
+TG
+TG
+VC
+VC
+VC
+FH
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+Ux
+UD
+Ux
+UJ
+UH
+UP
+UR
+UT
+UV
+Ux
+UH
+UZ
+Ux
+ae
+ae
+ae
+ae
+ae
+Sn
+Sr
+Sn
+Sz
+Sw
+SD
+SF
+SN
+SP
+Sn
+Sw
+ST
+Sn
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(12,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+Oj
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+IR
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+XY
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+Uw
+Ux
+Uw
+Ux
+Ux
+Ux
+Ux
+Ux
+Ux
+Uw
+Ux
+Ux
+Uw
+ae
+ae
+ae
+ae
+ae
+Sm
+Sn
+Sm
+Sn
+Sn
+Sn
+Sn
+Sn
+Sn
+Sm
+Sn
+Sn
+Sm
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(13,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+Oj
+Cn
+Cn
+Cn
+Kj
+Cn
+Cn
+Cn
+IR
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+TF
+VC
+wZ
+Az
+Bw
+JW
+Gq
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(14,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+Oj
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+IR
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+BD
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(15,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+ya
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+IR
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+XY
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+TF
+VC
+wZ
+Az
+Bw
+JW
+Gq
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(16,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+ya
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+IR
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+XY
+VC
+VC
+VC
+VC
+VC
+VC
+No
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(17,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+IR
+IR
+IR
+IR
+IR
+IR
+IR
+IR
+IR
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+XY
+VC
+Ts
+Gw
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+aa
+VC
+wZ
+Az
+Bw
+JW
+Gq
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(18,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(19,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Cn
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+TK
+TM
+TK
+TM
+TM
+TM
+TM
+TM
+TM
+TK
+TM
+TM
+TK
+ae
+ae
+ae
+ae
+ae
+cr
+cC
+cr
+cC
+cC
+cC
+cC
+cC
+cC
+cr
+cC
+cC
+cr
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(20,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+Gw
+Ts
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+TM
+TN
+TK
+TX
+Ua
+TT
+Ud
+Ug
+Ug
+TK
+TU
+Uk
+TM
+ae
+ae
+ae
+ae
+ae
+cC
+cF
+cr
+cV
+dn
+dp
+ea
+ev
+ev
+cr
+cW
+eF
+cC
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(21,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+TM
+TP
+TS
+TU
+TP
+Ub
+TP
+TP
+TU
+TS
+TU
+Ul
+TM
+ae
+ae
+ae
+ae
+ae
+cC
+cG
+cN
+cW
+cG
+dy
+cG
+cG
+cW
+cN
+cW
+eG
+cC
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(22,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+VC
+WD
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+VC
+wZ
+Az
+Bw
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+TM
+TQ
+TK
+TV
+TP
+TP
+TP
+TP
+Ui
+TK
+TU
+Um
+TM
+ae
+ae
+ae
+ae
+ae
+cC
+cH
+cr
+cX
+cG
+cG
+cG
+cG
+ez
+cr
+cW
+eH
+cC
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(23,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+Gq
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Nt
+Ax
+JW
+JW
+Gq
+ae
+ae
+ae
+ae
+ae
+TM
+TR
+TM
+TW
+TU
+Uc
+Uf
+Uh
+Uj
+TM
+TU
+Uo
+TM
+ae
+ae
+ae
+ae
+ae
+cC
+cI
+cC
+cY
+cW
+dz
+eb
+ew
+eA
+cC
+cW
+eI
+cC
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(24,1,1) = {"
+ap
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+ap
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+Gq
+ae
+ae
+ae
+ae
+ae
+TK
+TM
+TK
+TM
+TM
+TM
+TM
+TM
+TM
+TK
+TM
+TM
+TK
+ae
+ae
+ae
+ae
+ae
+cr
+cC
+cr
+cC
+cC
+cC
+cC
+cC
+cC
+cr
+cC
+cC
+cr
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(25,1,1) = {"
+ap
+Lz
+RV
+RV
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+Lz
+RV
+Lz
+RV
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(26,1,1) = {"
+ap
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+RV
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(27,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
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(28,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(29,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(30,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(31,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+bT
+ck
+bT
+ck
+ck
+ck
+ck
+ck
+ck
+bT
+ck
+ck
+bT
+ae
+ae
+ae
+ae
+ae
+cD
+cE
+cD
+cE
+cE
+cE
+cE
+cE
+cE
+cD
+cE
+cE
+cD
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(32,1,1) = {"
+Hy
+Hy
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ck
+SZ
+bT
+Tp
+Tq
+Tk
+co
+Ty
+Ty
+bT
+Tl
+TC
+ck
+ae
+ae
+ae
+ae
+ae
+cE
+cJ
+cD
+cZ
+do
+dC
+er
+ex
+ex
+cD
+db
+eN
+cE
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(33,1,1) = {"
+Hy
+Hy
+Mb
+Mb
+zv
+Mb
+Mb
+sN
+IN
+IN
+IN
+tH
+IN
+IN
+IN
+tH
+IN
+IN
+IN
+tH
+sp
+IN
+IN
+tH
+IN
+IN
+IN
+tH
+IN
+IN
+IN
+tH
+Mb
+Mb
+Mb
+zv
+Mb
+Mb
+sN
+Mb
+mb
+sN
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ck
+Ta
+cl
+Tl
+Ta
+Tr
+Ta
+Ta
+Tl
+cl
+Tl
+TD
+ck
+ae
+ae
+ae
+ae
+ae
+cE
+cK
+cR
+db
+cK
+dL
+cK
+cK
+db
+cR
+db
+eO
+cE
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(34,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+Sh
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+mF
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+Sh
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ck
+Tb
+bT
+Tm
+Ta
+Ta
+Ta
+Ta
+TA
+bT
+Tl
+TE
+ck
+ae
+ae
+ae
+ae
+ae
+cE
+cL
+cD
+dc
+cK
+cK
+cK
+cK
+eB
+cD
+db
+eP
+cE
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(35,1,1) = {"
+Hy
+Hy
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Av
+Av
+Av
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Av
+Av
+Av
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+jL
+Pq
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ck
+Tc
+ck
+To
+Tl
+cn
+Tx
+Tz
+cp
+ck
+Tl
+TH
+ck
+ae
+ae
+ae
+ae
+ae
+cE
+cM
+cE
+df
+db
+dT
+eu
+ey
+eC
+cE
+db
+eQ
+cE
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+"}
+(36,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+bT
+ck
+bT
+ck
+ck
+ck
+ck
+ck
+ck
+bT
+ck
+ck
+bT
+ae
+ae
+ae
+ae
+ae
+cD
+cE
+cD
+cE
+cE
+cE
+cE
+cE
+cE
+cD
+cE
+cE
+cD
+ae
+ae
+ae
+ae
+ae
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(37,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(38,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(39,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(40,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(41,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(42,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(43,1,1) = {"
+Hy
+Hy
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Av
+Av
+Av
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Av
+Av
+Av
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+Pq
+jL
+Pq
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+"}
+(44,1,1) = {"
+Hy
+Hy
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+Sh
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Sh
+Sh
+Sh
+Sh
+Sh
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+FT
+Mf
+FT
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(45,1,1) = {"
+Hy
+Hy
+PU
+PU
+Ft
+PU
+PU
+FX
+Py
+Py
+Py
+ig
+Py
+Py
+Py
+ig
+Py
+Py
+Py
+ig
+tu
+Py
+Py
+ig
+Py
+Py
+Py
+ig
+Py
+Py
+Py
+ig
+PU
+PU
+PU
+Ft
+PU
+PU
+FX
+PU
+in
+FX
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+sF
+OY
+OY
+OY
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+"}
+(46,1,1) = {"
+Hy
+Hy
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+dg
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(47,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+"}
+(48,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+"}
+(49,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+"}
+(50,1,1) = {"
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+Hy
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+"}
+(51,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
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(52,1,1) = {"
+ar
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+ar
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+aI
+ar
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(53,1,1) = {"
+as
+nW
+pf
+Hk
+qV
+kw
+eD
+wa
+Di
+HL
+nW
+dB
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(54,1,1) = {"
+as
+nW
+nV
+ru
+CK
+pT
+CK
+pT
+cm
+JI
+vW
+dB
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+"}
+(55,1,1) = {"
+as
+nW
+wh
+oT
+pT
+CK
+pT
+CK
+CJ
+sb
+DL
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(56,1,1) = {"
+as
+nW
+EX
+ru
+CK
+pT
+CK
+pT
+cm
+Jc
+ZQ
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+sF
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(57,1,1) = {"
+as
+nW
+Qs
+oT
+pT
+CK
+pT
+CK
+CJ
+Wf
+Kn
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(58,1,1) = {"
+as
+nW
+BG
+ru
+CK
+pT
+CK
+pT
+cm
+GW
+YX
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+sF
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(59,1,1) = {"
+as
+nW
+Bm
+oT
+pT
+CK
+pT
+CK
+CJ
+Mi
+KQ
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(60,1,1) = {"
+as
+nW
+uM
+ru
+CK
+pT
+CK
+pT
+cm
+Or
+Eo
+dB
+Me
+Me
+PM
+PM
+PM
+PM
+PM
+PM
+Me
+Me
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(61,1,1) = {"
+as
+nW
+Hr
+oT
+pT
+CK
+pT
+CK
+CJ
+nj
+qv
+dB
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(62,1,1) = {"
+as
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+nW
+dB
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+Me
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+sF
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(63,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(64,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aK
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(65,1,1) = {"
+as
+aJ
+aJ
+bd
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+dF
+dF
+ec
+dF
+dF
+dF
+dF
+ec
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(66,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aK
+aJ
+aJ
+bd
+aJ
+aJ
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+bN
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(67,1,1) = {"
+as
+aK
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+ec
+dF
+dF
+dF
+dF
+ec
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(68,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+bd
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+fg
+fg
+fg
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(69,1,1) = {"
+as
+aJ
+aJ
+aJ
+aK
+aJ
+aJ
+bd
+aJ
+aJ
+aJ
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+sF
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(70,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aK
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+dF
+dF
+ec
+dF
+dF
+dF
+dF
+ec
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(71,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(72,1,1) = {"
+as
+aJ
+bd
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+dA
+dF
+ec
+dF
+dF
+dF
+dF
+ec
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(73,1,1) = {"
+as
+aJ
+aJ
+aJ
+aJ
+aJ
+aJ
+aK
+aJ
+aJ
+bd
+dA
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+dF
+fZ
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+OY
+Xl
+OY
+Xl
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(74,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+cd
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+ci
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+Xl
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+Hf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(75,1,1) = {"
+as
+aM
+be
+bf
+be
+be
+be
+be
+bf
+be
+aM
+dA
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+fG
+dG
+dG
+fZ
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+cd
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+Jz
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(76,1,1) = {"
+as
+aN
+bf
+be
+bf
+bf
+bf
+bf
+be
+bf
+aN
+dA
+dG
+ed
+dG
+dG
+dG
+dG
+dG
+dG
+eT
+dG
+fZ
+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
+ap
+ap
+Jz
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(77,1,1) = {"
+as
+aM
+be
+bo
+bU
+bU
+bU
+bU
+da
+be
+aM
+dA
+dG
+dG
+dG
+eJ
+dG
+dG
+dG
+dG
+dG
+dG
+fZ
+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
+ap
+ap
+Jz
+jf
+jf
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(78,1,1) = {"
+as
+aN
+bf
+bp
+bB
+bB
+bB
+bB
+cP
+bf
+aN
+dA
+dG
+dG
+dG
+dG
+eT
+dG
+dG
+dG
+eJ
+dG
+fZ
+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
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(79,1,1) = {"
+as
+aM
+be
+bq
+an
+bS
+bS
+an
+cQ
+be
+aM
+dA
+dG
+dG
+dG
+ep
+dG
+dG
+ed
+dG
+dG
+fG
+fZ
+ae
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Jq
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+xi
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+xi
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+aj
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(80,1,1) = {"
+as
+aM
+bf
+bp
+an
+bS
+bS
+an
+cP
+bf
+aM
+dA
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+fG
+dG
+dG
+fZ
+ae
+Vu
+Ru
+wn
+Cy
+eS
+Vu
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+sx
+sx
+zH
+sx
+sx
+sx
+zH
+sx
+sx
+sx
+sx
+zH
+sx
+zH
+sx
+sx
+sx
+sx
+zH
+sx
+sx
+sx
+zH
+sx
+sx
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(81,1,1) = {"
+as
+aN
+be
+ag
+bB
+bB
+bB
+bB
+at
+be
+aN
+dA
+dG
+ed
+dG
+dG
+dG
+dG
+eJ
+dG
+eT
+dG
+fZ
+ae
+Vu
+Vu
+Vu
+Cy
+gU
+Vu
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+ET
+ET
+ET
+ET
+XE
+XE
+dD
+XE
+Sl
+Bs
+Cp
+li
+Bs
+Sl
+XE
+dD
+XE
+XE
+ET
+ET
+ET
+ET
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(82,1,1) = {"
+as
+aM
+bf
+bB
+bB
+ao
+aA
+bB
+bB
+bf
+aM
+dA
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+dG
+fZ
+ae
+Vu
+Vu
+Vu
+Cy
+eS
+Vu
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+Fp
+Fp
+Fp
+XE
+XE
+XE
+XE
+gE
+yU
+LD
+ix
+yU
+Mq
+ix
+ih
+Mq
+NA
+XE
+XE
+XE
+XE
+Fp
+Fp
+Fp
+Fp
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(83,1,1) = {"
+as
+aN
+be
+bB
+ao
+ax
+aB
+aA
+bB
+bf
+aN
+dA
+dG
+dG
+ep
+dG
+eT
+dG
+dG
+dG
+eJ
+dG
+fZ
+ae
+Vu
+kn
+Ru
+Cy
+eS
+Vu
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+ET
+XE
+Sl
+Al
+HX
+cq
+Re
+Jw
+XW
+FY
+XW
+XW
+FY
+XW
+FJ
+Ic
+Al
+SG
+HW
+XE
+XE
+ET
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(84,1,1) = {"
+as
+aM
+bf
+bB
+at
+bU
+bU
+ag
+bB
+be
+aM
+dA
+dG
+dG
+dG
+dG
+dG
+dG
+ed
+dG
+dG
+fG
+fZ
+ae
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+XE
+XE
+XE
+ti
+Ri
+Ri
+Rg
+Rs
+iU
+RA
+iU
+iU
+RA
+iU
+RG
+qY
+Ri
+Ri
+RY
+Sl
+XE
+XE
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+jQ
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(85,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+Pe
+Pg
+Rd
+Rg
+Rk
+Rk
+Rm
+Tv
+RD
+RA
+RD
+RD
+RA
+RD
+tS
+Rm
+ii
+ii
+qY
+lE
+Pg
+vu
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(86,1,1) = {"
+as
+aO
+bg
+bg
+bG
+bV
+bV
+bV
+bV
+bV
+dq
+dA
+dI
+dH
+dH
+eL
+eL
+eL
+eL
+eL
+eL
+eL
+fZ
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+Pe
+Qa
+Re
+Rm
+vz
+vz
+Rm
+DI
+RA
+RA
+RA
+RA
+RA
+RA
+RF
+Rm
+vz
+vz
+Rm
+Ic
+xl
+vu
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(87,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bV
+bV
+bV
+bV
+bV
+bV
+dA
+dH
+dH
+dH
+eK
+eK
+eK
+eK
+eK
+eK
+eK
+fZ
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+Pe
+RD
+jr
+lf
+Rk
+Rk
+Rm
+CG
+Pg
+RA
+Pg
+Pg
+RA
+Pg
+tp
+Rm
+ii
+ii
+AD
+Cd
+RD
+vu
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Gs
+Gs
+Gs
+fg
+iO
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(88,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bW
+ct
+ct
+ct
+dj
+bV
+dA
+dH
+dH
+dH
+eK
+eV
+fn
+fn
+fn
+fO
+eK
+fZ
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+XE
+XE
+XE
+Et
+rh
+rh
+lf
+Rs
+iU
+RA
+iU
+iU
+RA
+iU
+RG
+AD
+rh
+rh
+Sy
+Sl
+XE
+XE
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+fg
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(89,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bX
+cu
+cu
+cu
+dk
+bV
+dA
+dH
+ee
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+ET
+XE
+Sl
+Al
+nC
+cq
+Re
+qc
+nB
+pk
+nB
+nB
+pk
+nB
+Dn
+Ic
+Al
+NW
+HW
+XE
+XE
+ET
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+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
+iO
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(90,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bX
+cu
+cu
+cu
+dk
+bV
+dA
+dH
+ef
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+Fp
+Fp
+Fp
+XE
+XE
+XE
+XE
+Ro
+Rz
+uG
+RC
+Rz
+Dm
+RC
+RE
+Dm
+sT
+XE
+XE
+XE
+XE
+Fp
+Fp
+Fp
+Fp
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(91,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bX
+cu
+cu
+cu
+dk
+bV
+dA
+dH
+ef
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+ET
+ET
+ET
+ET
+ET
+XE
+XE
+zw
+XE
+Sl
+zw
+Fe
+Fe
+zw
+Sl
+XE
+pv
+XE
+XE
+ET
+ET
+ET
+ET
+ET
+ET
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(92,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bX
+cu
+cu
+cu
+dk
+bV
+dA
+dH
+ef
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+zK
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+Rc
+pX
+Rc
+Rc
+Rc
+pX
+Rc
+Rc
+zK
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(93,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bY
+cv
+cv
+cv
+dl
+bV
+dA
+dH
+eg
+eq
+eK
+eW
+fo
+fo
+fo
+fP
+eK
+fZ
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+ae
+ae
+ae
+ae
+ae
+Vg
+Vg
+Vg
+Vl
+Vh
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Jx
+Zt
+aj
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+aj
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(94,1,1) = {"
+as
+aP
+bg
+bg
+bG
+bV
+bV
+bV
+bV
+bV
+bV
+dA
+dH
+dH
+dH
+eK
+eX
+fp
+fp
+fH
+fQ
+eK
+fZ
+Vu
+Ru
+Ru
+xM
+Ru
+Ru
+Ru
+Ru
+xM
+Ru
+Ru
+Ru
+Vu
+ae
+ae
+ae
+ae
+ae
+Vg
+Nr
+Th
+JR
+Nq
+Nq
+Nq
+Nq
+Nq
+Nq
+Yx
+Nq
+Nq
+Nq
+Nq
+Yx
+Nq
+Nq
+Nq
+Nq
+Nq
+Nq
+dZ
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(95,1,1) = {"
+as
+aP
+bg
+bg
+bH
+bZ
+bZ
+bZ
+bZ
+dm
+dr
+dA
+dH
+dH
+dH
+eK
+eU
+eU
+eK
+eK
+eK
+eK
+fZ
+Vu
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Vu
+ae
+ae
+ae
+ae
+ae
+Vg
+SW
+Ti
+Rq
+Nq
+Nq
+Nq
+Nq
+Nq
+Nq
+wd
+dZ
+TY
+Vv
+dZ
+dZ
+Nq
+Nq
+Nq
+Nq
+Nq
+Nq
+dZ
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(96,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+Vu
+YE
+Ru
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Ru
+Zi
+Vu
+ae
+ae
+ae
+ae
+ae
+Vg
+Tf
+Tj
+Rv
+QY
+Pf
+XH
+SH
+SH
+QY
+TI
+Rr
+SV
+SV
+Rr
+TI
+QY
+SH
+SH
+XH
+Pf
+QY
+dZ
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+Pi
+El
+El
+El
+El
+El
+El
+iO
+"}
+(97,1,1) = {"
+as
+aS
+bi
+ah
+au
+ay
+ay
+ay
+ay
+aE
+aS
+dB
+dM
+eh
+eh
+eh
+eY
+fq
+fz
+fz
+fz
+fS
+fZ
+Vu
+Ru
+Ru
+Vu
+VW
+wj
+wj
+wj
+BK
+Vu
+Ru
+Ru
+Vu
+ae
+ae
+ae
+wy
+wy
+Vg
+Vg
+Vg
+Vg
+TI
+TI
+TI
+TI
+TI
+TI
+dZ
+Ru
+Ru
+Ru
+Ru
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+dZ
+VI
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(98,1,1) = {"
+as
+aS
+bi
+bv
+av
+az
+az
+az
+az
+aF
+aS
+dB
+dN
+ei
+ei
+ei
+eZ
+fr
+ei
+ei
+ei
+fJ
+fZ
+Vu
+Ru
+Ru
+Vu
+sl
+cj
+Dk
+Dk
+Dk
+yK
+Ru
+Ru
+Vu
+ae
+ae
+ae
+wy
+yA
+Ga
+xe
+wl
+TZ
+Vi
+Vi
+Vi
+VJ
+Vi
+VS
+Vu
+YE
+Ru
+Ru
+Wt
+WE
+Xs
+XC
+Zp
+VI
+Yr
+Zw
+YI
+VI
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cf
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(99,1,1) = {"
+as
+aS
+bi
+ak
+aw
+aw
+aw
+aw
+aw
+aw
+aw
+dB
+dM
+eh
+dN
+ei
+eZ
+fr
+ei
+fJ
+fz
+fS
+fZ
+Vu
+Ru
+Ru
+Vu
+sl
+Lg
+tC
+tC
+tC
+ym
+Ru
+Ru
+Vu
+ae
+ae
+ae
+wy
+rE
+Ga
+Iq
+wl
+Up
+Vj
+Vj
+Vj
+Vj
+Vj
+VU
+Vu
+Ru
+Ru
+Ru
+Wv
+WJ
+Xv
+XD
+XD
+VI
+Ys
+XD
+YJ
+VI
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cg
+cf
+cf
+cf
+ce
+ap
+iO
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+El
+iO
+"}
+(100,1,1) = {"
+as
+aS
+bi
+bi
+bI
+ca
+cw
+cS
+dd
+cS
+ds
+dB
+dO
+ei
+dN
+ei
+fa
+fr
+ei
+fJ
+ei
+fT
+fZ
+Vu
+Ru
+Ru
+Vu
+DF
+JZ
+JZ
+JZ
+qz
+Vu
+Ru
+Ru
+Vu
+ae
+ae
+ae
+wy
+HQ
+Ga
+eE
+wl
+Up
+Vj
+Vj
+Vj
+Vj
+Vj
+VU
+Vu
+Ru
+Ru
+Ru
+Wv
+WK
+Xw
+XD
+XD
+VI
+Yu
+XD
+YJ
+VI
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cf
+cf
+cf
+ce
+ap
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+iO
+"}
+(101,1,1) = {"
+as
+aS
+bi
+aS
+bJ
+cb
+cx
+cT
+cy
+cT
+dt
+dB
+dP
+ej
+dN
+ei
+eZ
+fr
+ei
+fJ
+fA
+fU
+fZ
+Vu
+YE
+Ru
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Ru
+Zi
+Vu
+ae
+ae
+ae
+wy
+pb
+Ga
+ME
+wl
+Uu
+Vj
+Vj
+Vm
+Vj
+Vj
+XU
+Vu
+Ru
+Ru
+Ru
+Wt
+WE
+Xx
+Zk
+XV
+Yl
+Zs
+Yy
+XD
+VI
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ch
+cg
+cf
+cf
+cf
+ce
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+"}
+(102,1,1) = {"
+as
+aS
+bi
+bt
+bK
+cb
+cy
+cy
+cy
+cT
+dt
+dB
+dN
+ei
+ei
+ei
+eZ
+fr
+ei
+ei
+ei
+fJ
+fZ
+Vu
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Ru
+Vu
+ae
+ae
+ae
+wy
+kr
+Ga
+Cw
+wl
+Up
+Vj
+Vj
+Vm
+Vj
+Vj
+VU
+Vu
+Ru
+Ru
+Zi
+VI
+VI
+VI
+VI
+VI
+VI
+VI
+VI
+Yl
+VI
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cf
+cf
+cf
+ce
+ap
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+"}
+(103,1,1) = {"
+as
+aS
+bi
+aS
+bL
+cb
+cx
+cT
+cy
+cT
+dt
+dB
+dP
+ej
+ej
+ej
+fb
+fs
+fA
+fA
+fA
+fU
+fZ
+Vu
+Ru
+Ru
+MK
+Ru
+Ru
+Ru
+Ru
+MK
+Ru
+Ru
+Ru
+Vu
+ae
+ae
+ae
+wy
+nn
+Ga
+eR
+wl
+Ur
+Vm
+Vj
+Vj
+Vj
+Vj
+VU
+Vu
+Ru
+Ru
+Ru
+VM
+VQ
+WN
+VZ
+VQ
+VQ
+WH
+ZD
+WW
+Xe
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cg
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(104,1,1) = {"
+as
+aS
+bi
+bi
+bM
+cc
+cz
+cU
+de
+cU
+du
+dB
+aG
+aG
+aR
+aG
+aG
+aG
+aG
+bh
+aG
+aG
+fZ
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+Vu
+ae
+ae
+ae
+wy
+wy
+Ct
+wy
+wl
+Up
+Vj
+Vj
+Vj
+Vj
+Vj
+VU
+TJ
+Ru
+Ru
+Ru
+WB
+VR
+Wb
+Wl
+Wz
+VQ
+WH
+WO
+WW
+Xf
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cg
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(105,1,1) = {"
+as
+ab
+ad
+al
+al
+al
+al
+al
+aC
+al
+ab
+dB
+dK
+dK
+dJ
+dK
+dK
+dK
+dK
+dJ
+dK
+dK
+fZ
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+ae
+ae
+ae
+ae
+wy
+wy
+wy
+wl
+Up
+Vj
+Vj
+Vj
+Vj
+Vj
+VU
+Vw
+Ru
+Ru
+Ru
+VK
+VR
+Wc
+Wm
+Wz
+VQ
+WH
+WP
+WW
+Xg
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(106,1,1) = {"
+as
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+aQ
+dB
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+dJ
+fZ
+aq
+uc
+uc
+uc
+uc
+uc
+uc
+uc
+uc
+uc
+uc
+uc
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Vj
+Vj
+Vj
+Vj
+Vj
+VU
+Vu
+YE
+Ru
+Ru
+VL
+VQ
+Wd
+Wd
+VQ
+VQ
+WH
+WQ
+WW
+Xh
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(107,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aq
+uc
+ue
+ue
+uf
+ue
+ue
+ue
+uf
+ue
+ue
+uc
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Vj
+Vm
+Vj
+VN
+Vj
+VU
+Vu
+Ru
+Ru
+Ru
+WB
+VQ
+VQ
+VQ
+VQ
+VQ
+WH
+WR
+WW
+Zh
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(108,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+uc
+uf
+uf
+uf
+uf
+ug
+uf
+uf
+uf
+uf
+uc
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Uu
+Vj
+Vj
+Vj
+Vj
+Vj
+Yt
+Vu
+Ru
+Ru
+Ru
+WB
+VQ
+VZ
+VZ
+VQ
+VQ
+WH
+WV
+WW
+WW
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(109,1,1) = {"
+as
+aT
+bj
+aT
+aT
+aT
+aT
+aT
+aT
+bj
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+uc
+ue
+ue
+uf
+ue
+ue
+ue
+uf
+ue
+ue
+uc
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Vj
+Vj
+Vj
+Vm
+Vj
+VU
+Vu
+Ru
+Ru
+Ru
+WB
+VR
+We
+Wo
+Wz
+VQ
+VQ
+VQ
+ZE
+VM
+Xi
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(110,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+ek
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+ud
+uf
+uf
+uf
+uf
+uf
+uf
+uf
+uf
+uf
+ud
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Us
+Vn
+Vj
+Vj
+Vm
+VO
+VP
+Vu
+Ru
+Ru
+Zi
+WB
+VR
+Wk
+Wu
+Wz
+VQ
+VQ
+VQ
+WZ
+VM
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(111,1,1) = {"
+as
+aT
+aT
+aT
+bj
+aT
+aT
+bj
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+bc
+bc
+bc
+bQ
+cs
+bc
+cs
+dh
+bc
+bc
+bc
+aq
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Ut
+Us
+Vs
+VB
+Vs
+VP
+Ut
+Vu
+Ru
+Ru
+Ru
+VK
+VQ
+Wd
+Wd
+VQ
+VZ
+VZ
+VQ
+Xa
+VM
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(112,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+eM
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+bc
+bn
+by
+bR
+bn
+cO
+bn
+di
+by
+bc
+bc
+af
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+wl
+Vo
+Vo
+Vo
+Vo
+Vo
+wl
+Vu
+Ru
+Ru
+Ru
+VL
+VQ
+VQ
+VQ
+VR
+WA
+WI
+Wz
+Xb
+VM
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(113,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+bc
+bn
+bn
+bR
+bn
+bn
+bn
+di
+bn
+bn
+dE
+ai
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+TZ
+Vi
+Vi
+Vi
+Vi
+Vi
+VX
+Vu
+Ru
+Ru
+Ru
+WB
+VQ
+VQ
+VQ
+VR
+WF
+WL
+Wz
+Xc
+VM
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+cf
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(114,1,1) = {"
+as
+aT
+aT
+aT
+bj
+aT
+aT
+bj
+aT
+aT
+aT
+dB
+dQ
+dQ
+es
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+bc
+bn
+bn
+bR
+bn
+bn
+bn
+di
+bn
+bn
+dE
+bO
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Va
+Vp
+Ut
+Ut
+Ut
+Ut
+VU
+Vu
+YE
+Ru
+Ru
+VM
+VY
+ZC
+VQ
+VQ
+Wd
+Wd
+ZC
+Xd
+VM
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(115,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+et
+dQ
+fc
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+bc
+bn
+bn
+bn
+bn
+bn
+bn
+bn
+bn
+bn
+dE
+ai
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Vq
+Ut
+Vr
+Vr
+Ut
+VU
+Vu
+Ru
+Ru
+Ru
+VM
+VM
+VM
+VM
+VM
+VM
+VM
+VM
+VM
+VM
+VM
+ae
+ae
+ae
+ae
+ae
+ae
+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
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(116,1,1) = {"
+as
+aT
+bj
+aT
+aT
+aT
+aT
+aT
+aT
+bj
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+bc
+bn
+bz
+bn
+bn
+bn
+bn
+bn
+bz
+bc
+bc
+bP
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Uu
+Ut
+Vt
+Ut
+Ut
+Ut
+XU
+Vu
+Ru
+Ru
+Ru
+Vd
+WS
+WS
+Zl
+XX
+Ym
+Vd
+YB
+YK
+YP
+Vd
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(117,1,1) = {"
+as
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+aT
+dB
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+dQ
+fK
+fR
+fR
+fZ
+aq
+bc
+bc
+bc
+bc
+bc
+bc
+bc
+bc
+bc
+bc
+bc
+ap
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Ut
+Ut
+Ut
+Ut
+VD
+VU
+Vu
+Ru
+Ru
+Ru
+WC
+WT
+WS
+XJ
+XZ
+WS
+Vd
+YC
+YL
+YP
+Vd
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(118,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Ut
+Vr
+Ut
+Ut
+Ut
+Wh
+Vu
+Ru
+Ru
+Zi
+Ve
+WS
+WS
+XK
+Ya
+WS
+Vd
+YD
+YM
+XN
+Vd
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(119,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dU
+el
+el
+el
+fd
+ft
+fB
+fB
+fB
+fV
+fZ
+aI
+aI
+aI
+ar
+aI
+aI
+aI
+ar
+aI
+aI
+aI
+ar
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Ut
+Ut
+Ut
+Ut
+Ut
+VU
+TJ
+Ru
+Ru
+Ru
+Xk
+WS
+WS
+XM
+XZ
+WS
+Vd
+YC
+YN
+YQ
+Vd
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(120,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+dB
+ga
+ga
+ga
+dB
+gN
+gO
+gO
+dB
+hx
+hx
+hx
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Vr
+Ut
+Ut
+Ut
+Ut
+VU
+Vw
+Ru
+Ru
+Ru
+Xm
+WS
+WS
+XN
+Yb
+Zq
+Vd
+Zx
+XZ
+YT
+Vd
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(121,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+dB
+gb
+ga
+gq
+dB
+gO
+gO
+gP
+dB
+hy
+hJ
+hO
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Ut
+Ut
+VD
+Ut
+Vr
+VV
+Vu
+Ru
+Ru
+Ru
+Xn
+WS
+WS
+WS
+WS
+WS
+Vd
+XN
+WS
+YU
+Vd
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+ML
+ML
+ML
+ML
+ML
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(122,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+dB
+gc
+ga
+gc
+dB
+gO
+gO
+gO
+dB
+hz
+hK
+hP
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Ut
+Ut
+Ut
+Ut
+Ut
+VU
+Vu
+YE
+Ru
+Ru
+WC
+WT
+WS
+WS
+WS
+WS
+Vd
+Vd
+Yw
+Vd
+Vd
+Vd
+Vd
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(123,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+dB
+gd
+ga
+ga
+dB
+gO
+gN
+gO
+dB
+hz
+hK
+hP
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Uu
+Ut
+Vr
+Ut
+Ut
+Ut
+XU
+Vu
+Ru
+Ru
+Ru
+WC
+WT
+WS
+WS
+WS
+WS
+Vd
+Ym
+WS
+WS
+WS
+WS
+Zf
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(124,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dV
+em
+em
+em
+fe
+fu
+em
+em
+em
+fW
+dB
+gc
+ga
+gq
+dB
+gO
+gO
+gO
+dB
+hA
+hL
+hQ
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Up
+Ut
+Ut
+Ut
+Ut
+VD
+VU
+Vu
+Ru
+Ru
+Ru
+WC
+WT
+WS
+WS
+WS
+WS
+Yv
+WS
+WS
+WS
+YY
+WS
+WS
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(125,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dW
+en
+en
+en
+ff
+fv
+fC
+fC
+fC
+fX
+dB
+gc
+ga
+gc
+dB
+gP
+gO
+gO
+dB
+hx
+hx
+hx
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Us
+Vn
+Ut
+VE
+Ut
+VO
+VP
+Vu
+Ru
+Ru
+Ru
+Vd
+WS
+WS
+Zn
+WS
+WS
+WS
+WS
+WS
+WS
+YZ
+WS
+Zq
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(126,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+aH
+aH
+aX
+aH
+aH
+aH
+aH
+br
+aH
+aH
+fZ
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+ar
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+Ut
+Us
+Vs
+VF
+Vs
+VP
+Ut
+Vu
+Ru
+Ru
+Zi
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+YF
+WS
+WS
+WS
+WS
+WS
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(127,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dS
+dS
+dR
+dS
+dS
+dS
+dS
+dR
+dS
+dS
+dB
+ge
+gl
+gr
+dB
+gQ
+gR
+gQ
+dB
+hB
+hD
+hD
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+wl
+wl
+Vo
+Vo
+Vo
+Vo
+Vo
+wl
+Vu
+Ru
+Ru
+Ru
+Vd
+WU
+Xy
+XP
+Yc
+Yc
+Vd
+Zy
+WS
+WS
+WS
+WS
+WS
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(128,1,1) = {"
+as
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+aU
+dB
+dR
+dR
+dR
+dR
+dR
+dR
+dR
+dR
+dR
+dR
+dB
+gf
+gl
+gr
+dB
+gR
+gQ
+gR
+dB
+hC
+hC
+hC
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+Vk
+Vk
+Vk
+Vk
+Vk
+Vk
+Vk
+Vk
+Uv
+Ru
+Ru
+Ru
+Vd
+Xj
+Xz
+XQ
+Yh
+Yc
+Vd
+YH
+WS
+WS
+Zb
+WS
+WS
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(129,1,1) = {"
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+aL
+as
+gg
+gl
+gr
+dB
+gQ
+hg
+gQ
+dB
+hD
+hD
+hD
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+Vk
+Vc
+Vz
+Vc
+Vc
+Vz
+Vc
+Wi
+YR
+Ru
+Ru
+Ru
+Vd
+Zj
+XA
+XR
+Yj
+Zr
+Yg
+WS
+WS
+WS
+Zc
+WS
+WS
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+In
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(130,1,1) = {"
+as
+aY
+bk
+bk
+bk
+bk
+cA
+cA
+cA
+cA
+dv
+dB
+dX
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dB
+gh
+gl
+gr
+dB
+gR
+gQ
+gR
+dB
+hD
+hD
+hD
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+Vk
+Vc
+Vc
+Vc
+Vc
+Vc
+Vc
+Vk
+UE
+Ru
+Ru
+Ru
+Vd
+Xr
+XB
+YW
+YW
+YW
+Yw
+WS
+WS
+WS
+WS
+WS
+Zq
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(131,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dX
+dY
+dY
+eo
+eo
+eo
+eo
+dY
+dY
+dY
+dB
+gi
+gl
+gr
+dB
+gQ
+gR
+gQ
+dB
+hE
+hE
+hE
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+Vk
+Vf
+Vk
+Vy
+Vk
+Vy
+Vg
+Vg
+Vg
+Wq
+Ws
+Ws
+Vg
+Vg
+Vg
+WS
+WS
+WS
+Vd
+WS
+WS
+WS
+WS
+WS
+WS
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(132,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dB
+gf
+gl
+gr
+dB
+gR
+gQ
+gR
+dB
+hD
+hD
+hR
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+Vk
+Vb
+Vk
+Xp
+Vk
+Xp
+Vg
+Wj
+Wp
+Ti
+YG
+Ti
+Wp
+Wj
+Vg
+XS
+Yk
+Yo
+Vd
+Zz
+YO
+YV
+Zd
+Ze
+Zg
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+JL
+jf
+jf
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(133,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dY
+dY
+dY
+bu
+bA
+bA
+bD
+dY
+eo
+dY
+fZ
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+ar
+aL
+aL
+aL
+ar
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+Vk
+Vk
+Vk
+Vk
+Vk
+Vk
+Vg
+Vg
+Vg
+Wp
+Vg
+Wp
+Vg
+Vg
+Vg
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+Vd
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+zb
+qn
+pF
+qn
+tD
+ML
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+JL
+JL
+JL
+JL
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(134,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dY
+eo
+dY
+bw
+bs
+bs
+bE
+dY
+eo
+dY
+dB
+gj
+gk
+gs
+dB
+gS
+gS
+gS
+dB
+hF
+hF
+hF
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Vg
+Wj
+Vg
+Wj
+Vg
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+ML
+zb
+zb
+tD
+tD
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(135,1,1) = {"
+as
+aZ
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+bl
+dw
+dB
+dY
+eo
+dY
+bw
+bs
+bs
+bE
+dY
+eo
+dY
+dB
+gk
+gm
+gk
+dB
+gS
+gS
+gS
+dB
+hF
+hF
+hF
+fZ
+ap
+ap
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+Vg
+Vg
+Vg
+Vg
+Vg
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ae
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(136,1,1) = {"
+as
+ba
+bm
+bm
+bm
+bm
+cB
+cB
+cB
+cB
+dx
+dB
+dY
+eo
+dY
+bx
+bC
+bC
+bF
+dY
+dY
+dY
+dB
+gk
+gn
+gk
+dB
+gS
+gS
+gS
+dB
+hF
+hF
+hF
+fZ
+ap
+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
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(137,1,1) = {"
+as
+ac
+ac
+am
+ac
+ac
+ac
+ac
+aD
+ac
+ac
+dB
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dB
+gk
+go
+gk
+dB
+gS
+gS
+gS
+dB
+hF
+hF
+hF
+fZ
+ap
+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
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(138,1,1) = {"
+as
+aW
+aW
+aV
+aW
+aW
+aW
+aW
+aV
+aW
+aW
+dB
+dY
+dY
+dY
+eo
+eo
+eo
+eo
+dY
+dY
+fY
+dB
+gk
+gk
+gk
+dB
+gS
+gS
+gS
+dB
+hF
+hF
+hF
+fZ
+ap
+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
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(139,1,1) = {"
+as
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+aV
+dB
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+dY
+fY
+dB
+gk
+gk
+gt
+dB
+gS
+gS
+gS
+dB
+hF
+hF
+hF
+fZ
+ap
+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
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+qn
+oI
+ap
+Jz
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+jf
+Jz
+"}
+(140,1,1) = {"
+ar
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+ar
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+bb
+ar
+bb
+bb
+bb
+ar
+bb
+bb
+bb
+ar
+bb
+bb
+bb
+ar
+ap
+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
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+oI
+ap
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+Jz
+"}
diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm
index 673c59a11c8..d30ec6a4ac6 100644
--- a/maps/tether/tether-03-surface3.dmm
+++ b/maps/tether/tether-03-surface3.dmm
@@ -27194,10 +27194,10 @@
},
/area/hallway/lower/third_south)
"aUq" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/simulated/floor/reinforced,
-/turf/simulated/shuttle/plating/carry,
-/area/shuttle/tether)
+/obj/effect/floor_decal/rust/part_rusted1,
+/obj/machinery/atmospherics/binary/pump,
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"aUr" = (
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -27246,12 +27246,16 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
"aUx" = (
-/obj/machinery/atmospherics/unary/engine{
- dir = 1
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/simulated/floor/reinforced,
-/turf/simulated/shuttle/plating/carry,
-/area/shuttle/tourbus/engines)
+/obj/structure/bed/chair/bay/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"aUy" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/door/airlock/glass_command{
@@ -27322,6 +27326,15 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/triage)
+"aUE" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 8
+ },
+/obj/structure/closet/emergsuit_wall{
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"aUF" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/lime/border,
@@ -27396,6 +27409,22 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/public_garden_three)
+"aUN" = (
+/obj/structure/bed/chair/bay/chair{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ name = "south bump";
+ pixel_y = -28;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/eris/white/orangecorner,
+/area/shuttle/tourbus/cockpit)
"aUO" = (
/obj/effect/floor_decal/techfloor{
dir = 6
@@ -27420,6 +27449,13 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/chemistry)
+"aUQ" = (
+/obj/structure/handrail{
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/tourbus/general)
"aUR" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -27687,6 +27723,15 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/lobby)
+"aVm" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"aVn" = (
/obj/structure/bed/chair{
dir = 1
@@ -27907,6 +27952,21 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"aVF" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ dir = 8;
+ frequency = 1380;
+ id_tag = "tourbus_docker";
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/bed/chair/bay/chair{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"aVG" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -27945,6 +28005,10 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/upperhall)
+"aVJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
+/turf/simulated/wall/shull,
+/area/shuttle/tourbus/general)
"aVK" = (
/obj/effect/floor_decal/corner/lightgrey{
dir = 10
@@ -27967,6 +28031,18 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
+"aVM" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/door/window/southleft{
+ dir = 1;
+ req_one_access = list(19,43,67)
+ },
+/turf/simulated/floor/tiled/eris/dark/bluecorner,
+/area/shuttle/tourbus/general)
"aVN" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
@@ -28096,6 +28172,22 @@
},
/turf/simulated/wall,
/area/tether/surfacebase/security/upperhall)
+"aWc" = (
+/obj/machinery/light/small,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 9
+ },
+/obj/machinery/door/window/southright{
+ dir = 1;
+ req_one_access = list(19,43,67)
+ },
+/turf/simulated/floor/tiled/eris/dark/bluecorner,
+/area/shuttle/tourbus/general)
"aWd" = (
/obj/effect/landmark/start{
name = "Medical Doctor"
@@ -28477,6 +28569,39 @@
},
/turf/simulated/floor/tiled/white,
/area/tether/surfacebase/medical/storage)
+"aWK" = (
+/obj/machinery/power/smes/buildable{
+ charge = 500000
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/eris/dark/bluecorner,
+/area/shuttle/tourbus/general)
+"aWL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 4
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/bed/chair/bay/chair{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/turf/simulated/floor/tiled/eris/dark/golden,
+/area/shuttle/tourbus/general)
"aWM" = (
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/grass,
@@ -28508,6 +28633,20 @@
/obj/machinery/light,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
+"aWP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "tourbus_windows";
+ name = "Shuttle Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/tiled/steel_dirty,
+/area/shuttle/tourbus/general)
"aWQ" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -28581,6 +28720,14 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/processing)
+"aWX" = (
+/obj/machinery/shipsensors{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating/eris/under,
+/area/shuttle/tourbus/general)
"aWY" = (
/obj/structure/bed/chair{
dir = 1
@@ -28600,6 +28747,17 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
+"aXa" = (
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(19,43,67)
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/eris/techmaint_panels,
+/area/shuttle/tourbus/general)
"aXb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -29062,6 +29220,11 @@
/obj/item/weapon/implantcase/chem,
/turf/simulated/floor/plating,
/area/rnd/research_storage)
+"aXI" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/floor/reinforced,
+/turf/simulated/shuttle/plating/carry,
+/area/shuttle/tether)
"aXJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -29109,6 +29272,13 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
+"aXN" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/turf/simulated/shuttle/plating/carry,
+/area/shuttle/tourbus/general)
"aXP" = (
/obj/structure/disposalpipe/up{
dir = 8
@@ -37953,31 +38123,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/plating,
/area/tether/surfacebase/security/hos)
-"dGZ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/eris/dark/golden,
-/area/shuttle/tourbus/general)
-"dJm" = (
-/obj/machinery/door/airlock/glass{
- req_one_access = list(19,43,67)
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/eris/techmaint_panels,
-/area/shuttle/tourbus/cockpit)
"dKj" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor/corner{
@@ -38349,26 +38494,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"fru" = (
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- dir = 8;
- frequency = 1380;
- id_tag = "tourbus_docker";
- pixel_x = 28
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 4
- },
-/obj/structure/bed/chair/bay/chair{
- dir = 8
- },
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable,
-/turf/simulated/floor/tiled/eris/dark/golden,
-/area/shuttle/tourbus/general)
"fxh" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -38461,24 +38586,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"fYr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 4
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/structure/bed/chair/bay/chair{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/eris/dark/golden,
-/area/shuttle/tourbus/engines)
"gae" = (
/obj/structure/bed/chair{
dir = 4
@@ -38850,20 +38957,6 @@
/obj/machinery/door/firedoor,
/turf/simulated/floor/tiled/techfloor,
/area/tether/surfacebase/shuttle_pad)
-"hCB" = (
-/obj/structure/cable/orange{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/bed/chair/bay/chair{
- dir = 8
- },
-/obj/structure/cable{
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/eris/dark/golden,
-/area/shuttle/tourbus/general)
"hEt" = (
/obj/structure/bed/chair{
dir = 8
@@ -39017,20 +39110,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/crew_quarters/panic_shelter)
-"iqb" = (
-/obj/structure/bed/chair/bay/chair{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/closet/emergsuit_wall{
- pixel_x = 32
- },
-/turf/simulated/floor/tiled/eris/dark/golden,
-/area/shuttle/tourbus/general)
"isl" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -39699,18 +39778,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/rnd/research/researchdivision)
-"kBF" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/outline/red,
-/obj/machinery/portable_atmospherics/canister/phoron,
-/obj/machinery/door/window/southleft{
- dir = 1;
- req_one_access = list(19,43,67)
- },
-/turf/simulated/floor/tiled/eris/dark/bluecorner,
-/area/shuttle/tourbus/engines)
"kCW" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/effect/floor_decal/spline/plain{
@@ -39996,21 +40063,6 @@
},
/turf/simulated/floor/tiled,
/area/tether/surfacebase/security/upperhall)
-"lCq" = (
-/obj/structure/handrail{
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/simulated/floor/plating/eris/under,
-/area/shuttle/tourbus/cockpit)
-"lFc" = (
-/obj/effect/floor_decal/rust/part_rusted1,
-/obj/machinery/atmospherics/binary/pump,
-/obj/structure/cable{
- icon_state = "2-4"
- },
-/turf/simulated/floor/tiled/eris/dark/golden,
-/area/shuttle/tourbus/general)
"lFG" = (
/obj/structure/table/woodentable,
/obj/item/device/flashlight/lamp/green{
@@ -40728,20 +40780,6 @@
/obj/effect/floor_decal/spline/plain,
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/iaa/officeb)
-"oLR" = (
-/obj/structure/bed/chair/bay/chair{
- dir = 1
- },
-/obj/machinery/power/apc{
- name = "south bump";
- pixel_y = -28
- },
-/obj/structure/cable{
- d2 = 4;
- icon_state = "0-4"
- },
-/turf/simulated/floor/tiled/eris/white/orangecorner,
-/area/shuttle/tourbus/cockpit)
"oMh" = (
/obj/machinery/power/apc{
dir = 8;
@@ -41175,20 +41213,6 @@
},
/turf/simulated/floor/wood,
/area/tether/surfacebase/security/hos)
-"qom" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "tourbus_windows";
- name = "Shuttle Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/tiled/steel_dirty,
-/area/shuttle/tourbus/engines)
"qoL" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
@@ -41223,9 +41247,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/lower/third_south)
-"qwm" = (
-/turf/simulated/wall/shull,
-/area/shuttle/tourbus/engines)
"qze" = (
/obj/structure/disposalpipe/segment,
/obj/effect/floor_decal/borderfloor{
@@ -41341,10 +41362,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/wood,
/area/tether/surfacebase/security/hos)
-"qWU" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow,
-/turf/simulated/wall/shull,
-/area/shuttle/tourbus/engines)
"qXD" = (
/obj/structure/bed/chair/comfy/black,
/obj/machinery/button/windowtint{
@@ -41739,22 +41756,6 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/surfacebase/shuttle_pad)
-"sGV" = (
-/obj/machinery/light/small,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 9
- },
-/obj/machinery/door/window/southright{
- dir = 1;
- req_one_access = list(19,43,67)
- },
-/turf/simulated/floor/tiled/eris/dark/bluecorner,
-/area/shuttle/tourbus/engines)
"sJv" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -42050,19 +42051,6 @@
},
/turf/simulated/floor/tiled/dark,
/area/tether/surfacebase/security/iaa/officeb)
-"tLv" = (
-/obj/machinery/power/smes/buildable{
- charge = 500000
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/floor/tiled/eris/dark/bluecorner,
-/area/shuttle/tourbus/engines)
"tPE" = (
/obj/structure/table/reinforced,
/obj/item/weapon/book/manual/security_space_law,
@@ -43252,14 +43240,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/surface_three_hall)
-"xXf" = (
-/obj/machinery/shipsensors{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/obj/machinery/light/small,
-/turf/simulated/floor/plating/eris/under,
-/area/shuttle/tourbus/cockpit)
"xXZ" = (
/obj/structure/railing,
/turf/simulated/open,
@@ -54366,17 +54346,17 @@ aJn
aKa
aKU
aKU
-lCq
-jvK
-jvK
-jvK
+aUQ
+jHw
+jHw
+jHw
bkN
jHw
jML
jHw
jpB
-qWU
-aUx
+aVJ
+aXN
aKU
aOI
aPb
@@ -54511,14 +54491,14 @@ aKU
jvK
jvK
kdx
-jvK
+jHw
cnN
mDf
eiO
cnZ
-fYr
-qwm
-qwm
+aWL
+jHw
+jHw
aKU
aOI
aPb
@@ -54652,15 +54632,15 @@ aKU
aKU
ddn
eCG
-oLR
-jvK
+aUN
+jHw
oPm
kmK
xOa
dVW
kun
-kBF
-qom
+aVM
+aWP
aKU
avs
aKj
@@ -54795,14 +54775,14 @@ aKU
ddn
pNk
vrU
-dJm
+aXa
kiw
kcC
eGv
-lFc
-dGZ
-sGV
-qom
+aUq
+aVm
+aWc
+aWP
aKU
aOI
aPb
@@ -54937,14 +54917,14 @@ aKU
ddn
pwF
hlF
-jvK
+jHw
uhm
gUL
rbR
-hCB
+aUx
wQf
-tLv
-qom
+aWK
+aWP
aKU
aOI
aPb
@@ -55079,14 +55059,14 @@ aKU
jvK
jvK
ivq
-jvK
+jHw
rzV
fcg
tcW
-iqb
-fru
-qwm
-qwm
+aUE
+aVF
+jHw
+jHw
aKU
aOK
aKj
@@ -55218,17 +55198,17 @@ aJn
aKa
aKU
aKU
-xXf
-jvK
-jvK
-jvK
+aWX
+jHw
+jHw
+jHw
wyi
jHw
caw
jHw
gHh
-qWU
-aUx
+aVJ
+aXN
aKU
aOI
aKj
@@ -57213,7 +57193,7 @@ aNk
uSA
aNJ
aNP
-aUq
+aXI
aKU
abg
aOk
@@ -57355,7 +57335,7 @@ aNl
aNl
aNK
aNP
-aUq
+aXI
aKU
abg
aOk
@@ -57497,7 +57477,7 @@ aNm
aNl
aNK
aNP
-aUq
+aXI
aKU
abg
aOk
diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm
index 9dd406d57a7..3e3f6256213 100644
--- a/maps/tether/tether-07-station3.dmm
+++ b/maps/tether/tether-07-station3.dmm
@@ -454,11 +454,16 @@
/turf/simulated/floor,
/area/maintenance/station/ai)
"aaR" = (
-/obj/machinery/atmospherics/unary/engine{
+/obj/machinery/light/small{
dir = 1
},
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry,
+/obj/machinery/portable_atmospherics/canister/phoron,
+/obj/machinery/atmospherics/portables_connector/fuel{
+ dir = 4;
+ icon_state = "map_connector-fuel"
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/techfloor,
/area/shuttle/excursion/general)
"aaS" = (
/obj/structure/catwalk,
@@ -522,19 +527,8 @@
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration/pilot_office)
"aaY" = (
-/obj/effect/floor_decal/industrial/warning/cee{
- dir = 1
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "shuttle blast";
- name = "Shuttle Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
+/turf/simulated/wall/rshull,
+/area/shuttle/excursion/cargo)
"aaZ" = (
/obj/structure/railing{
dir = 4
@@ -2283,13 +2277,14 @@
/turf/simulated/floor,
/area/maintenance/cargo)
"aet" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_l"
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1;
+ icon_state = "map-fuel"
},
-/turf/simulated/floor/tiled/asteroid_steel/airless,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/mining_outpost/shuttle)
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/excursion/general)
"aeu" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 8
@@ -2344,23 +2339,38 @@
/turf/simulated/floor/tiled/white,
/area/security/security_bathroom)
"aex" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
-/turf/simulated/floor/tiled/asteroid_steel/airless,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/mining_outpost/shuttle)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/excursion/general)
"aey" = (
/turf/simulated/floor/carpet,
/area/security/breakroom)
"aez" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8;
- icon_state = "propulsion_r"
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6;
+ icon_state = "intact-fuel"
},
-/turf/simulated/floor/tiled/asteroid_steel/airless,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/mining_outpost/shuttle)
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/general)
"aeA" = (
/obj/effect/floor_decal/corner/red{
dir = 10;
@@ -2469,6 +2479,45 @@
},
/turf/simulated/floor/wood,
/area/security/breakroom)
+"aeG" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1;
+ icon_state = "map-fuel"
+ },
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/general)
+"aeH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10;
+ icon_state = "intact-fuel"
+ },
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/general)
+"aeI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "shuttle blast";
+ name = "Shuttle Blast Doors";
+ opacity = 0
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
"aeJ" = (
/turf/simulated/floor/wood,
/area/security/breakroom)
@@ -2490,6 +2539,27 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/security_lockerroom)
+"aeL" = (
+/obj/structure/extinguisher_cabinet{
+ dir = 8;
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/structure/cable/cyan{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/table/steel,
+/obj/machinery/cell_charger,
+/obj/random/powercell,
+/obj/item/stack/material/tritium{
+ amount = 15
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/excursion/general)
"aeM" = (
/obj/structure/railing{
dir = 4
@@ -2576,6 +2646,12 @@
/obj/effect/floor_decal/corner/lightgrey/border,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"aeS" = (
+/obj/machinery/light/spot{
+ pixel_y = 32
+ },
+/turf/simulated/wall/rshull,
+/area/shuttle/excursion/cargo)
"aeT" = (
/turf/simulated/wall,
/area/security/security_equiptment_storage)
@@ -2624,12 +2700,46 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
+"aeX" = (
+/obj/structure/cable/cyan{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -28;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/securiship/cockpit)
"aeY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/turf/simulated/floor/wood,
/area/security/breakroom)
+"aeZ" = (
+/obj/structure/window/reinforced{
+ dir = 8;
+ health = 1e+006
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 24;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/obj/structure/cable/cyan{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/aux,
+/turf/simulated/floor/tiled/eris/steel/gray_perforated,
+/area/shuttle/securiship/general)
"afa" = (
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -2725,12 +2835,86 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
+"afg" = (
+/obj/structure/cable/cyan{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/cyan{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ alarms_hidden = 1;
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 28;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
+/area/shuttle/securiship/engines)
"afh" = (
-/obj/machinery/light/spot{
- pixel_y = 32
+/obj/effect/floor_decal/industrial/warning/cee{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 4;
+ icon_state = "pdoor0";
+ id = "shuttle blast";
+ name = "Shuttle Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
+"afi" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/brown,
+/obj/structure/curtain/open/bed,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/excursion/cargo)
+"afj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/simulated/wall/rshull,
-/area/shuttle/excursion/general)
+/area/shuttle/excursion/cargo)
+"afk" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
+"afl" = (
+/obj/machinery/power/apc{
+ cell_type = /obj/item/weapon/cell/super;
+ dir = 8;
+ name = "west bump";
+ pixel_x = -30;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 5;
+ icon_state = "intact"
+ },
+/obj/structure/cable{
+ icon_state = "0-4"
+ },
+/obj/structure/cable{
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
+ dir = 10
+ },
+/obj/item/weapon/tank/phoron,
+/turf/simulated/floor/tiled/eris/dark/techfloor,
+/area/shuttle/medivac/engines)
"afm" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -2750,6 +2934,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled,
/area/security/hallway)
+"afn" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "shuttle_inbound"
+ },
+/obj/structure/plasticflaps,
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
"afo" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 1
@@ -2784,6 +2976,49 @@
},
/turf/simulated/floor,
/area/maintenance/station/sec_upper)
+"afr" = (
+/obj/machinery/power/apc{
+ alarms_hidden = 1;
+ dir = 2;
+ name = "south bump";
+ pixel_y = -28;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/obj/structure/bed/chair/shuttle{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/simulated/floor/tiled/eris/white,
+/area/shuttle/medivac/general)
+"afs" = (
+/obj/machinery/shipsensors{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8;
+ icon_state = "warning"
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
+"aft" = (
+/obj/structure/handrail,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/structure/closet/emergsuit_wall{
+ pixel_y = 32
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/excursion/cargo)
"afu" = (
/obj/structure/cable/green{
d1 = 4;
@@ -2815,9 +3050,42 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/security_processing)
+"afx" = (
+/obj/structure/handrail{
+ dir = 1
+ },
+/obj/machinery/alarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/excursion/cargo)
"afy" = (
/turf/simulated/wall/r_wall,
/area/ai)
+"afz" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
+"afA" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "shuttle_inbound"
+ },
+/obj/effect/floor_decal/industrial/warning/full,
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
"afB" = (
/obj/structure/cable/green{
d1 = 4;
@@ -2856,6 +3124,15 @@
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
/area/security/hallway)
+"afE" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list(67)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/excursion/cargo)
"afF" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -2893,6 +3170,12 @@
/obj/structure/curtain/open/shower/security,
/turf/simulated/floor/tiled,
/area/security/security_bathroom)
+"afH" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cargo)
"afI" = (
/obj/effect/floor_decal/borderfloorblack{
dir = 4
@@ -2908,6 +3191,20 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/evidence_storage)
+"afJ" = (
+/obj/structure/cable/cyan{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list()
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/excursion/cargo)
"afK" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -2937,6 +3234,23 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/dark,
/area/security/evidence_storage)
+"afM" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ density = 0;
+ dir = 1;
+ icon_state = "pdoor0";
+ id = "shuttle blast";
+ name = "Shuttle Blast Doors";
+ opacity = 0
+ },
+/turf/simulated/floor/plating,
+/area/shuttle/excursion/cockpit)
"afN" = (
/obj/machinery/door/firedoor/glass,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -2948,6 +3262,13 @@
},
/turf/simulated/floor/tiled/dark,
/area/security/evidence_storage)
+"afO" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/hatch{
+ req_one_access = list(67)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/excursion/general)
"afP" = (
/turf/simulated/wall/r_wall,
/area/ai_core_foyer)
@@ -2994,12 +3315,22 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
+"afT" = (
+/turf/simulated/wall/rshull,
+/area/shuttle/excursion/cockpit)
"afU" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
/turf/simulated/floor/bluegrid,
/area/ai)
+"afV" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 1
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/excursion/general)
"afW" = (
/obj/effect/floor_decal/borderfloorblack,
/obj/effect/floor_decal/borderfloorblack/corner2{
@@ -3081,6 +3412,50 @@
/obj/structure/railing,
/turf/simulated/open,
/area/security/brig)
+"agc" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_l"
+ },
+/turf/simulated/floor/tiled/asteroid_steel/airless,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/mining_outpost/shuttle)
+"agd" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/asteroid_steel/airless,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/mining_outpost/shuttle)
+"age" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ alarms_hidden = 1;
+ dir = 1;
+ name = "north bump";
+ pixel_x = 0;
+ pixel_y = 28;
+ req_access = list();
+ req_one_access = list(11,67)
+ },
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/obj/structure/cable{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/eris/steel/cyancorner,
+/area/shuttle/medivac/cockpit)
+"agf" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r"
+ },
+/turf/simulated/floor/tiled/asteroid_steel/airless,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/mining_outpost/shuttle)
"agg" = (
/turf/simulated/floor/airless,
/area/space)
@@ -3781,15 +4156,6 @@
},
/turf/simulated/floor,
/area/maintenance/station/ai)
-"aiK" = (
-/obj/machinery/disposal/deliveryChute{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"aiQ" = (
/obj/effect/floor_decal/borderfloor,
/obj/effect/floor_decal/corner/red/border,
@@ -18607,14 +18973,6 @@
},
/turf/simulated/floor,
/area/tether/exploration)
-"aQL" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "shuttle_inbound"
- },
-/obj/structure/plasticflaps,
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"aQN" = (
/obj/machinery/light/small{
dir = 1
@@ -18683,19 +19041,6 @@
},
/turf/simulated/floor/tiled,
/area/security/hallway)
-"aQX" = (
-/obj/machinery/shipsensors{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 8;
- icon_state = "warning"
- },
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"aQY" = (
/obj/structure/railing{
dir = 8
@@ -19037,24 +19382,6 @@
},
/turf/simulated/floor/tiled,
/area/maintenance/station/sec_upper)
-"aSb" = (
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/handrail{
- dir = 4
- },
-/obj/structure/closet/emergsuit_wall{
- pixel_y = 32
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24;
- pixel_y = 0
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/excursion/general)
"aSd" = (
/obj/structure/railing,
/obj/structure/railing{
@@ -19124,15 +19451,6 @@
/obj/machinery/light,
/turf/simulated/open,
/area/tether/exploration)
-"aSq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 6;
- icon_state = "intact-fuel"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/excursion/general)
"aSr" = (
/obj/structure/railing,
/obj/structure/table/rack{
@@ -20476,20 +20794,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/excursion/cockpit)
-"aWp" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 6
- },
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/excursion/general)
"aWq" = (
/obj/effect/floor_decal/industrial/warning/corner{
dir = 1;
@@ -22069,14 +22373,6 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor,
/area/shuttle/medivac/engines)
-"cQa" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
- dir = 1;
- icon_state = "map-fuel"
- },
-/obj/structure/shuttle/engine/heater,
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"cTI" = (
/obj/machinery/door/airlock/glass_external,
/obj/effect/map_helper/airlock/door/ext_door,
@@ -22442,46 +22738,6 @@
/obj/structure/bed/chair/bay/chair,
/turf/simulated/floor/tiled/eris/dark/violetcorener,
/area/shuttle/securiship/general)
-"eQX" = (
-/obj/structure/cable/cyan{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "shuttle blast";
- name = "Shuttle Blast Doors";
- opacity = 0
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/hatch{
- req_one_access = list()
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/excursion/general)
-"eVj" = (
-/obj/structure/cable/cyan{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable/cyan{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- alarms_hidden = 1;
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
-/area/shuttle/securiship/engines)
"eWf" = (
/obj/machinery/door/firedoor/glass/hidden/steel{
dir = 2
@@ -22549,12 +22805,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"feb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/wall/rshull,
-/area/shuttle/excursion/general)
"fkB" = (
/obj/machinery/door/airlock/glass_external,
/obj/machinery/airlock_sensor/airlock_exterior/shuttle{
@@ -22683,13 +22933,6 @@
/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/eris/dark/techfloor,
/area/shuttle/medivac/engines)
-"geP" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/hatch{
- req_one_access = list(67)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/excursion/cockpit)
"gfw" = (
/obj/structure/cable{
d1 = 4;
@@ -23200,14 +23443,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled,
/area/quartermaster/storage)
-"iJT" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 6;
- icon_state = "intact-fuel"
- },
-/obj/structure/shuttle/engine/heater,
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"iOI" = (
/obj/structure/cable{
d1 = 4;
@@ -23234,12 +23469,6 @@
/obj/machinery/suit_cycler/pilot,
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/excursion/general)
-"iQS" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/brown,
-/obj/structure/curtain/open/bed,
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/excursion/general)
"iUO" = (
/obj/structure/barricade,
/turf/simulated/floor,
@@ -23639,12 +23868,6 @@
},
/turf/simulated/floor/tiled/eris/steel/cyancorner,
/area/shuttle/medivac/cockpit)
-"lfJ" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/cockpit)
"lnp" = (
/obj/machinery/door/airlock/glass_external,
/obj/structure/cable/green{
@@ -24048,15 +24271,6 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/securiship/engines)
-"nwM" = (
-/obj/structure/disposaloutlet{
- dir = 4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"nzo" = (
/obj/machinery/power/terminal{
dir = 1;
@@ -24095,23 +24309,6 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor,
/area/shuttle/medivac/engines)
-"nVr" = (
-/obj/structure/window/reinforced{
- dir = 8;
- health = 1e+006
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "east bump";
- pixel_x = 24
- },
-/obj/structure/cable/cyan{
- d2 = 2;
- icon_state = "0-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/aux,
-/turf/simulated/floor/tiled/eris/steel/gray_perforated,
-/area/shuttle/securiship/general)
"nYv" = (
/obj/machinery/door/window/brigdoor/westleft{
req_access = newlist();
@@ -24191,25 +24388,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"opP" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/power/apc{
- alarms_hidden = 1;
- dir = 1;
- name = "north bump";
- pixel_x = 0;
- pixel_y = 28
- },
-/obj/structure/table/glass,
-/obj/machinery/recharger,
-/obj/structure/cable{
- d2 = 2;
- icon_state = "0-2"
- },
-/turf/simulated/floor/tiled/eris/steel/cyancorner,
-/area/shuttle/medivac/cockpit)
"oqg" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
dir = 8
@@ -24544,23 +24722,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/excursion/general)
-"qxW" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "shuttle blast";
- name = "Shuttle Blast Doors";
- opacity = 0
- },
-/obj/machinery/door/firedoor/glass,
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"qEn" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/structure/handrail{
@@ -24624,20 +24785,6 @@
},
/turf/simulated/floor/tiled/eris/techmaint_panels,
/area/shuttle/medivac/engines)
-"qPS" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 4;
- icon_state = "pdoor0";
- id = "shuttle blast";
- name = "Shuttle Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"qTB" = (
/obj/effect/floor_decal/industrial/outline/yellow,
/obj/machinery/power/apc{
@@ -24711,29 +24858,6 @@
/obj/effect/decal/cleanable/blood/gibs,
/turf/simulated/floor/plating,
/area/maintenance/station/cargo)
-"rAB" = (
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -30
- },
-/obj/machinery/atmospherics/pipe/simple/hidden{
- dir = 5;
- icon_state = "intact"
- },
-/obj/structure/cable{
- icon_state = "0-4"
- },
-/obj/structure/cable{
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/yellow{
- dir = 10
- },
-/obj/item/weapon/tank/phoron,
-/turf/simulated/floor/tiled/eris/dark/techfloor,
-/area/shuttle/medivac/engines)
"rBj" = (
/obj/structure/grille,
/obj/structure/window/reinforced{
@@ -24869,14 +24993,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/excursion/general)
-"rUl" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 10;
- icon_state = "intact-fuel"
- },
-/obj/structure/shuttle/engine/heater,
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"scI" = (
/obj/machinery/alarm{
dir = 1;
@@ -24896,20 +25012,6 @@
},
/turf/simulated/floor/tiled/monotile,
/area/tether/exploration)
-"sdI" = (
-/obj/machinery/power/apc{
- alarms_hidden = 1;
- dir = 2;
- name = "south bump";
- pixel_y = -28;
- req_access = list(67)
- },
-/obj/structure/bed/chair/shuttle{
- dir = 4
- },
-/obj/structure/cable,
-/turf/simulated/floor/tiled/eris/white,
-/area/shuttle/medivac/general)
"shd" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
/turf/simulated/floor/tiled/techmaint,
@@ -25100,21 +25202,6 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"uqh" = (
-/obj/structure/handrail,
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
-/obj/structure/closet/emergsuit_wall{
- pixel_y = 32
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/excursion/general)
"urb" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/atmospherics/portables_connector{
@@ -25123,19 +25210,6 @@
/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/eris/dark/techfloor,
/area/shuttle/medivac/engines)
-"usk" = (
-/obj/structure/cable/cyan{
- d2 = 4;
- icon_state = "0-4"
- },
-/obj/machinery/power/apc{
- cell_type = /obj/item/weapon/cell/super;
- dir = 8;
- name = "west bump";
- pixel_x = -28
- },
-/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
-/area/shuttle/securiship/cockpit)
"utX" = (
/obj/machinery/conveyor_switch/oneway{
id = "shuttle_outbound"
@@ -25276,27 +25350,6 @@
"vqZ" = (
/turf/simulated/wall/rshull,
/area/shuttle/securiship/cockpit)
-"vre" = (
-/obj/structure/extinguisher_cabinet{
- dir = 8;
- pixel_x = 30
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/structure/cable/cyan{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/table/steel,
-/obj/machinery/cell_charger,
-/obj/random/powercell,
-/obj/item/stack/material/tritium{
- amount = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/excursion/general)
"vux" = (
/obj/structure/cable/green{
dir = 1;
@@ -25468,23 +25521,6 @@
},
/turf/simulated/floor/tiled/eris/dark/techfloor_grid,
/area/shuttle/securiship/engines)
-"wJy" = (
-/obj/structure/handrail{
- dir = 1
- },
-/obj/machinery/alarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/excursion/general)
"wMg" = (
/obj/machinery/light,
/obj/structure/cable/green{
@@ -25558,15 +25594,6 @@
/obj/machinery/atmospherics/pipe/simple/hidden/aux,
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/excursion/general)
-"wUW" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/airlock/hatch{
- req_one_access = list(67)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/excursion/general)
"wWn" = (
/obj/structure/cable/cyan{
d1 = 1;
@@ -25704,13 +25731,6 @@
},
/turf/simulated/floor/tiled,
/area/hallway/station/upper)
-"xAb" = (
-/obj/machinery/conveyor_switch/oneway{
- id = "shuttle_inbound"
- },
-/obj/effect/floor_decal/industrial/warning/full,
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"xBW" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -25752,23 +25772,6 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/wall,
/area/quartermaster/office)
-"ydg" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/reinforced/full,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/door/blast/regular{
- density = 0;
- dir = 1;
- icon_state = "pdoor0";
- id = "shuttle blast";
- name = "Shuttle Blast Doors";
- opacity = 0
- },
-/turf/simulated/floor/plating,
-/area/shuttle/excursion/general)
"ydG" = (
/obj/machinery/atmospherics/binary/pump/fuel{
dir = 8
@@ -28741,7 +28744,7 @@ aaa
vqZ
vqZ
lyg
-usk
+aeX
iXe
uZd
oPK
@@ -28890,7 +28893,7 @@ eLO
lHY
wcg
xqB
-eVj
+afg
ciI
plY
xny
@@ -29167,7 +29170,7 @@ aaa
isz
nvd
khf
-nVr
+aeZ
ccy
jna
nYO
@@ -35741,7 +35744,7 @@ avs
aYc
hIb
pgk
-rAB
+afl
cUg
iEF
gdk
@@ -36535,10 +36538,10 @@ acK
acK
acK
adj
-ydg
-ydg
-ydg
-adj
+afM
+afM
+afM
+afT
acK
acK
ams
@@ -36596,7 +36599,7 @@ gvu
nfB
lxr
wss
-sdI
+afr
aYa
aYk
avs
@@ -36668,9 +36671,9 @@ akS
acE
acK
acK
+afh
+afs
aaY
-aQX
-adj
adj
eBO
adj
@@ -36680,7 +36683,7 @@ adj
kCz
aZy
aWG
-adj
+afT
adj
acK
ams
@@ -36810,21 +36813,21 @@ abX
acE
acK
acK
-adj
-adj
-adj
-aSb
+aaY
+aaY
+aaY
+aaR
oNI
iPK
rFo
-aWp
+aex
jsf
aWn
aUJ
aXb
-adj
-iJT
-aaR
+afT
+aez
+afV
ams
aXq
abe
@@ -36951,11 +36954,11 @@ abe
abX
acE
acK
-afh
-adj
-uqh
-wUW
-aSq
+aeS
+aaY
+aft
+afE
+aet
oqg
cgm
bDD
@@ -36964,9 +36967,9 @@ adj
iCh
wRt
eug
-adj
-cQa
-aaR
+afT
+aeG
+afV
ams
aXq
abe
@@ -37093,19 +37096,19 @@ abe
abX
acE
acK
-qxW
-iQS
-wJy
-adj
+aeI
+afi
+afx
+aaY
aVi
hTW
adj
akx
adj
adj
-lfJ
-geP
-lfJ
+wOI
+afO
+wOI
aiX
aZD
acK
@@ -37160,7 +37163,7 @@ aab
aab
aXy
aXy
-opP
+age
bfa
nYv
bYH
@@ -37234,11 +37237,11 @@ aaa
abe
abX
acE
-adj
-adj
-adj
-adj
-adj
+aaY
+aaY
+aaY
+aaY
+aaY
adj
adj
adj
@@ -37376,11 +37379,11 @@ aaa
abe
acs
acF
-qxW
+aeI
qEn
oYj
qTB
-qPS
+afH
iWG
aWL
hpj
@@ -37518,11 +37521,11 @@ aaa
abe
abY
acE
-qxW
+aeI
hBg
fQo
lSD
-eQX
+afJ
reu
wWn
wSA
@@ -37660,11 +37663,11 @@ aaa
abe
acA
acG
-qxW
+aeI
doD
vpU
utX
-qPS
+afH
aUf
aXD
isN
@@ -37802,11 +37805,11 @@ aaa
abe
abX
acE
-adj
-adj
+aaY
+aaY
abL
aRZ
-adj
+aaY
aUl
adj
adj
@@ -37945,10 +37948,10 @@ abe
abX
acE
acK
-adj
+aaY
bFX
cow
-adj
+aaY
mnk
kVs
elB
@@ -38087,10 +38090,10 @@ abe
abX
acE
acK
-afh
-feb
-feb
-adj
+aeS
+afj
+afj
+aaY
aUR
dhW
xeA
@@ -38101,8 +38104,8 @@ gsT
ikk
efQ
wPF
-cQa
-aaR
+aeG
+afV
ams
aSx
krj
@@ -38230,11 +38233,11 @@ abX
acE
acK
acK
-aiK
-nwM
-adj
+afk
+afz
+aaY
aVQ
-vre
+aeL
jcr
nzo
ijU
@@ -38243,8 +38246,8 @@ dhq
iEV
tEV
xiw
-rUl
-aaR
+aeH
+afV
ams
eAm
abe
@@ -38372,9 +38375,9 @@ akS
acE
acK
acK
-aQL
-xAb
-adj
+afn
+afA
+aaY
adj
adj
adj
@@ -40281,11 +40284,11 @@ avt
avt
adD
aZS
-aet
-aex
-aex
-aex
-aez
+agc
+agd
+agd
+agd
+agf
baB
adD
avt
diff --git a/maps/tether/tether_areas.dm b/maps/tether/tether_areas.dm
index 370af2539b2..d44b9348379 100644
--- a/maps/tether/tether_areas.dm
+++ b/maps/tether/tether_areas.dm
@@ -106,7 +106,7 @@
icon_state = "vacant_site"
/area/centcom/simulated
- dynamic_lighting = 1
+ dynamic_lighting = 0
/area/centcom/simulated/terminal
name = "\improper Docking Terminal"
@@ -1386,9 +1386,6 @@
/area/shuttle/tourbus/cockpit
name = "\improper Tour Bus Cockpit"
-/area/shuttle/tourbus/engines
- name = "\improper Tour Bus Engines"
-
/area/shuttle/medivac
requires_power = 1
icon_state = "shuttle2"
@@ -1553,6 +1550,12 @@ area/shuttle/mining_outpost/shuttle
/area/unknown/dorm4
name = "Unknown Dorm 4"
+/area/unknown/dorm5
+ name = "Unknown Dorm 5"
+
+/area/unknown/dorm6
+ name = "Unknown Dorm 6"
+
// ERT/Deathsquad Shuttle
/area/shuttle/specialops/centcom
name = "Special Operations Shuttle - Centcom"
diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm
index f239e96f20d..83e82e5e2a2 100644
--- a/maps/tether/tether_defines.dm
+++ b/maps/tether/tether_defines.dm
@@ -15,16 +15,13 @@
#define Z_LEVEL_OFFMAP2 14
#define Z_LEVEL_ROGUEMINE_1 15
#define Z_LEVEL_ROGUEMINE_2 16
-#define Z_LEVEL_ROGUEMINE_3 17
-#define Z_LEVEL_ROGUEMINE_4 18
-#define Z_LEVEL_BEACH 19
-#define Z_LEVEL_BEACH_CAVE 20
-#define Z_LEVEL_AEROSTAT 21
-#define Z_LEVEL_AEROSTAT_SURFACE 22
-#define Z_LEVEL_DEBRISFIELD 23
-#define Z_LEVEL_GUTTERSITE 24
-#define Z_LEVEL_FUELDEPOT 25
-#define Z_LEVEL_GATEWAY 26
+#define Z_LEVEL_BEACH 17
+#define Z_LEVEL_BEACH_CAVE 18
+#define Z_LEVEL_AEROSTAT 19
+#define Z_LEVEL_AEROSTAT_SURFACE 20
+#define Z_LEVEL_DEBRISFIELD 21
+#define Z_LEVEL_FUELDEPOT 22
+#define Z_LEVEL_GATEWAY 23
//Camera networks
#define NETWORK_TETHER "Tether"
@@ -53,8 +50,8 @@
use_overmap = TRUE
overmap_z = Z_LEVEL_MISC
- overmap_size = 35
- overmap_event_areas = 34
+ overmap_size = 50
+ overmap_event_areas = 44
usable_email_tlds = list("virgo.nt")
zlevel_datum_type = /datum/map_z_level/tether
@@ -193,9 +190,7 @@
belter_docked_z = list(Z_LEVEL_SPACE_HIGH)
belter_transit_z = list(Z_LEVEL_MISC)
belter_belt_z = list(Z_LEVEL_ROGUEMINE_1,
- Z_LEVEL_ROGUEMINE_2,
- Z_LEVEL_ROGUEMINE_3,
- Z_LEVEL_ROGUEMINE_4)
+ Z_LEVEL_ROGUEMINE_2)
//TFF 16/4/20 - mining outpost shuttle defines
mining_station_z = list(Z_LEVEL_SPACE_HIGH)
diff --git a/maps/tether/tether_shuttles.dm b/maps/tether/tether_shuttles.dm
index 8f459766c7a..6ec0c4bc628 100644
--- a/maps/tether/tether_shuttles.dm
+++ b/maps/tether/tether_shuttles.dm
@@ -201,7 +201,7 @@
/obj/effect/overmap/visitable/ship/landable/excursion
name = "Excursion Shuttle"
desc = "The traditional Excursion Shuttle. NT Approved!"
- vessel_mass = 10000
+ vessel_mass = 8000
vessel_size = SHIP_SIZE_SMALL
shuttle = "Excursion Shuttle"
@@ -218,7 +218,7 @@
warmup_time = 0
current_location = "tourbus_dock"
docking_controller_tag = "tourbus_docker"
- shuttle_area = list(/area/shuttle/tourbus/cockpit, /area/shuttle/tourbus/general, /area/shuttle/tourbus/engines)
+ shuttle_area = list(/area/shuttle/tourbus/cockpit, /area/shuttle/tourbus/general)
fuel_consumption = 1
move_direction = NORTH
@@ -244,14 +244,14 @@
current_location = "tether_medivac_dock"
docking_controller_tag = "medivac_docker"
shuttle_area = list(/area/shuttle/medivac/cockpit, /area/shuttle/medivac/general, /area/shuttle/medivac/engines)
- fuel_consumption = 1
+ fuel_consumption = 2
move_direction = EAST
// The 'ship' of the excursion shuttle
/obj/effect/overmap/visitable/ship/landable/medivac
name = "Medivac Shuttle"
desc = "A medical evacuation shuttle."
- vessel_mass = 3000
+ vessel_mass = 4000
vessel_size = SHIP_SIZE_SMALL
shuttle = "Medivac Shuttle"
fore_dir = EAST
@@ -269,14 +269,14 @@
current_location = "tether_securiship_dock"
docking_controller_tag = "securiship_docker"
shuttle_area = list(/area/shuttle/securiship/cockpit, /area/shuttle/securiship/general, /area/shuttle/securiship/engines)
- fuel_consumption = 1
+ fuel_consumption = 2
move_direction = NORTH
// The 'ship' of the excursion shuttle
/obj/effect/overmap/visitable/ship/landable/securiship
name = "Securiship Shuttle"
desc = "A security transport ship."
- vessel_mass = 3000
+ vessel_mass = 4000
vessel_size = SHIP_SIZE_SMALL
shuttle = "Securiship Shuttle"
fore_dir = EAST
diff --git a/maps/tether/tether_telecomms.dm b/maps/tether/tether_telecomms.dm
index 5f7cd195994..ac43e2d4533 100644
--- a/maps/tether/tether_telecomms.dm
+++ b/maps/tether/tether_telecomms.dm
@@ -5,12 +5,8 @@
// Telecomms doesn't know about connected z-levels, so we need relays even for the other surface levels.
/obj/machinery/telecomms/relay/preset/tether
id = "Tether Relay"
- listening_level = Z_LEVEL_SURFACE_LOW
autolinkers = list("tether_relay")
-/obj/machinery/telecomms/relay/preset/centcom/tether
- listening_level = Z_LEVEL_SURFACE_LOW
-
// #### Hub ####
/obj/machinery/telecomms/hub/preset/tether
id = "Hub"
diff --git a/vorestation.dme b/vorestation.dme
index dff787d94b0..9585fc3b010 100644
--- a/vorestation.dme
+++ b/vorestation.dme
@@ -2663,6 +2663,7 @@
#include "code\modules\mob\living\carbon\human\species\station\station_special_abilities_vr.dm"
#include "code\modules\mob\living\carbon\human\species\station\station_special_vr.dm"
#include "code\modules\mob\living\carbon\human\species\station\station_vr.dm"
+#include "code\modules\mob\living\carbon\human\species\station\teshari.dm"
#include "code\modules\mob\living\carbon\human\species\station\xenochimera_hud_vr.dm"
#include "code\modules\mob\living\carbon\human\species\station\xenochimera_trait_vr.dm"
#include "code\modules\mob\living\carbon\human\species\station\protean_vr\protean_blob.dm"
@@ -2674,7 +2675,6 @@
#include "code\modules\mob\living\carbon\human\species\station\traits_vr\trait.dm"
#include "code\modules\mob\living\carbon\human\species\station\traits_vr\weaver_objs.dm"
#include "code\modules\mob\living\carbon\human\species\station\traits_vr\weaver_recipies.dm"
-#include "code\modules\mob\living\carbon\human\species\station\teshari.dm"
#include "code\modules\mob\living\carbon\human\species\virtual_reality\avatar.dm"
#include "code\modules\mob\living\carbon\human\species\virtual_reality\opaque_form.dm"
#include "code\modules\mob\living\carbon\human\species\xenomorphs\alien_powers.dm"